/* Global Styles */
:root {
    --primary-color: #8B4513; /* Saddle Brown - like chocolate */
    --secondary-color: #D2691E; /* Chocolate - warm brown */
    --accent-color: #FFB6C1; /* Light Pink - like frosting */
    --cream-color: #FFF8E7; /* Cream - background */
    --dark-brown: #5D3A1A;
    --gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--cream-color);
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1488477304112-4944851de03d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--cream-color), transparent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-order {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(210, 105, 30, 0.3);
    color: white;
}

/* Category Badges */
.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 1;
    backdrop-filter: blur(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease infinite;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(210, 105, 30, 0.3);
    color: white;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    background: #f8f9fa;
    min-height: 100vh;
}

.admin-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-brown);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2c1810 0%, #3d2a1c 100%);
    color: #f8f1e5;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    margin-top: 5rem;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #2c1810, transparent);
}

.footer-top {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(248, 241, 229, 0.1);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.brand-script {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.brand-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #d4af37;
    display: block;
    margin-top: 0.25rem;
}

.footer-desc {
    color: #b8a99a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 241, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f1e5;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-btn.whatsapp:hover { background: #25D366; }
.social-btn.facebook:hover { background: #1877f2; }
.social-btn.instagram:hover { 
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}
.social-btn.tiktok:hover { background: #000; }

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8a99a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    color: #b8a99a;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-contact-list li i {
    color: #d4af37;
    width: 20px;
    font-size: 1.1rem;
}

.footer-contact-list li a {
    color: #b8a99a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #d4af37;
}

.footer-cta {
    margin-top: 1.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #b8a99a;
}

.footer-bottom-links a {
    color: #b8a99a;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

.separator {
    color: #b8a99a;
    opacity: 0.5;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #2c1810;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 100px;
}

.back-to-top:hover {
    background: #2c1810;
    color: #d4af37;
    transform: translateY(-5px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        margin-top: 1.5rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top.show {
        bottom: 80px;
    }
}



/* Page Hero */
.page-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: -76px;
    padding-top: 76px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9) 0%, rgba(61, 42, 28, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.hero-breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: #d4af37;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content h1 em {
    font-family: 'Dancing Script', cursive;
    color: #d4af37;
    font-style: normal;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Shop Controls */
.shop-controls {
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input-wrap {
    position: relative;
    flex: 1;
}

.search-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b8a99a;
}

.search-input {
    padding-left: 2.5rem;
    height: 50px;
    border: 2px solid #f0e9e0;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
}

.search-input:focus {
    border-color: #d4af37;
    box-shadow: none;
}

.btn-primary-custom {
    background: #d4af37;
    color: #2c1810;
    border: none;
    padding: 0.5rem 2rem;
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #c4a032;
    color: #2c1810;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Categories Section */
.categories-section {
    margin-bottom: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.categories-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-chip {
    padding: 0.75rem 1.5rem;
    background: #f8f1e5;
    border-radius: 50px;
    color: #2c1810;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
}

.category-chip i {
    color: #d4af37;
}

.category-chip:hover {
    background: #e8d9c8;
    transform: translateY(-2px);
}

.category-chip.active {
    background: #d4af37;
    color: #2c1810;
    border-color: #2c1810;
}

.category-chip.active i {
    color: #2c1810;
}

.category-chip.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.coming-soon {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    color: #b8a99a;
}

/* Results Info */
.results-info {
    margin-bottom: 2rem;
}

.results-count {
    font-family: 'DM Sans', sans-serif;
    color: #2c1810;
    font-size: 1rem;
}

.category-highlight, .search-highlight {
    color: #d4af37;
    font-weight: 600;
}

.sort-dropdown {
    width: 200px;
    margin-left: auto;
}

.sort-dropdown select {
    border: 2px solid #f0e9e0;
    border-radius: 10px;
    padding: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: #d4af37;
    color: #2c1810;
}

.product-badge.featured {
    background: #2c1810;
    color: #d4af37;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: #fff;
    color: #2c1810;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #b8a99a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-category i {
    color: #d4af37;
    font-size: 0.8rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 0.75rem;
}

.product-description {
    color: #b8a99a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
}

.currency {
    font-size: 0.85rem;
    color: #b8a99a;
    margin-right: 0.25rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.btn-order-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-order-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.05);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f1e5;
    border-radius: 20px;
}

.empty-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #b8a99a;
    margin-bottom: 2rem;
}

/* Load More Button */
.btn-load-more {
    background: transparent;
    color: #2c1810;
    border: 2px solid #d4af37;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .btn-primary-custom {
        width: 100%;
    }
    
    .category-chips {
        justify-content: center;
    }
    
    .sort-dropdown {
        width: 100%;
        margin-top: 1rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-order-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Page Header */
/* Shop Hero Section */
.shop-hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1488477304112-4944851de03d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
  
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .breadcrumb {
    background: transparent;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-content .breadcrumb-item {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.hero-content .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-content .breadcrumb-item a:hover {
    color: #ffd700;
}

.hero-content .breadcrumb-item.active {
    color: #ffd700;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero {
        min-height: 300px;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .shop-hero {
        min-height: 250px;
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0d6efd;
}

.breadcrumb-item.active {
    color: #0d6efd;
}

/* Search Form */
.search-form-simple {
    margin-bottom: 30px;
}

.search-form-simple .input-group {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-form-simple .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
}

.search-form-simple .btn {
    padding: 12px 25px;
    border: none;
}

.search-form-simple .btn-primary {
    background: #0d6efd;
}

.search-form-simple .btn-outline-secondary {
    background: white;
    color: #6c757d;
}

/* Category Tabs */
.category-tabs-wrapper {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.category-tabs {
    gap: 10px;
    flex-wrap: wrap;
}

.category-tabs .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.category-tabs .nav-link:hover {
    background: #f8f9fa;
}

.category-tabs .nav-link.active {
    background: #0d6efd;
    color: white;
}

.category-tabs .nav-link .badge {
    background: rgba(255,255,255,0.2);
    color: white;
    margin-left: 8px;
    font-weight: normal;
}

.category-tabs .nav-link:not(.active) .badge {
    background: #e9ecef;
    color: #495057;
}

/* Results Count */
.results-count {
    color: #6c757d;
    margin: 0;
}

/* Product Cards (Simplified) */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 110, 253, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d6efd;
}

.btn-whatsapp-sm {
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp-sm:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

/* Empty State */
.empty-state {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 60px 20px;
}

.empty-state i {
    color: #dee2e6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
        margin-top: 66px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .category-tabs .nav-item {
        flex: 0 0 auto;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-whatsapp-sm {
        width: 100%;
        text-align: center;
    }
}


/* Enhanced Product Card Styles */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-view-btn i {
    font-size: 1rem;
    color: #0d6efd;
    transition: color 0.3s ease;
}

.quick-view-btn:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(0) scale(1.05);
}

.quick-view-btn:hover i {
    color: white;
}

.product-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 110, 253, 0.95);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.product-info {
    padding: 20px;
    background: white;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d6efd;
}

.btn-whatsapp-sm {
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-whatsapp-sm:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Modal Enhancements */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    padding: 1.2rem 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-body h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-body .text-primary {
    color: #0d6efd !important;
    font-weight: 700;
}

/* Animation for modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .quick-view-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-body .row {
        flex-direction: column;
    }
    
    .modal-body .col-md-6:first-child {
        margin-bottom: 1.5rem;
    }
}


/* ----------- MARQUEE ----------- */
.marquee-section {
    background: var(--gold);
    padding: 0.875rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.marquee-track .dot { color: rgba(255,255,255,0.6); }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


/* ----------- animating those icons ----------- */
.hero-floating-tag {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--brown);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
    color: #000;
}

.tag-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.tag-2 { top: 30%; right: -30px; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}