/* Premium Theme Styles - Extracted from Views */

/* === Mobile Product Grid Optimization === */
@media (max-width: 768px) {

    /* Force 2-column grid for product listings */
    .row.row-cols-1.row-cols-md-3.g-4,
    .row.g-4 {
        /* Targeting common Bootstrap/grid classes used for products */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px !important;
        /* Tighter gap for mobile */
    }

    /* Reset col widths inside this grid to full width of the grid cell */
    .row.row-cols-1.row-cols-md-3.g-4>*,
    .row.g-4>* {
        width: 100% !important;
        margin-top: 0 !important;
        /* Fix bootstrap margin issues in grid */
    }

    /* Compact Product Card */
    .product-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .product-card .card-body {
        padding: 10px !important;
    }

    .product-card h5.card-title {
        font-size: 0.9rem !important;
        margin-bottom: 4px;
        line-height: 1.3;
        /* Limit to 2 lines */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.6em;
        /* roughly 2 lines */
    }

    .product-card .price-tag {
        font-size: 1rem !important;
    }

    .product-card .btn {
        padding: 6px 12px !important;
        font-size: 0.8rem;
    }

    /* Hide less important elements in card on mobile if needed */
    .product-card .text-muted {
        font-size: 0.75rem;
    }

    /* Ensure images cover effectively */
    .bg-image {
        height: 160px !important;
        /* Fixed height for consistency */
    }

    .bg-image img {
        height: 100% !important;
        object-fit: cover;
    }

    /* Adjust quick action buttons overlaid on image */
    .hover-overlay .mask .d-flex {
        gap: 6px;
    }

    .hover-overlay .btn-light {
        width: 32px;
        height: 32px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

:root {
    /* Premium Color Palette */
    --emerald-dark: #01411C;
    --emerald-base: #0A6638;
    --emerald-light: #1B9D6B;
    --gold-dark: #B8860B;
    --gold-base: #D4AF37;
    --gold-light: #F0D175;

    /* Modern Backgrounds */
    --bg-body: #FAFDFA;
    --bg-glass: rgba(255, 255, 255, 0.9);
    --bg-card: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #FAFDFA 0%, #F5F9F5 100%);

    /* Text Colors */
    --text-primary: #1A1F2C;
    --text-secondary: #4A5568;
    --text-muted: #718096;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --glow-emerald: 0 0 30px rgba(10, 102, 56, 0.15);
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.15);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-gradient);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(10, 102, 56, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* === Premium Top Banner === */
.top-banner-premium {
    background: linear-gradient(90deg, var(--emerald-dark), var(--emerald-base), var(--emerald-light));
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

.marquee-container-premium {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    padding-right: 40px;
}

.marquee-container-premium:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.promo-item-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-badge-premium {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gold-base), var(--gold-dark));
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    white-space: nowrap;
}

/* === Premium Header === */
.main-header-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(10, 102, 56, 0.05);
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.logo-container-premium {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-box-premium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md), var(--glow-emerald);
    transition: var(--transition);
}

.logo-box-premium:hover {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text-premium {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-base));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.7;
}

/* === Premium Search === */
.search-wrapper-premium {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-input-premium {
    width: 100%;
    padding: 12px 52px 12px 24px;
    background: #f8fafc;
    border: 1px solid rgba(10, 102, 56, 0.08);
    border-radius: 14px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-input-premium:focus {
    outline: none;
    background: white;
    border-color: var(--emerald-base);
    box-shadow: 0 0 0 4px rgba(10, 102, 56, 0.05);
}

.search-btn-premium {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--emerald-base), var(--emerald-light));
    border: none;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.search-btn-premium:hover {
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald-base));
    transform: translateY(-50%) rotate(10deg);
}

/* === Premium Header Icons === */
.header-icons-premium {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-wrapper-premium {
    position: relative;
    padding: 10px;
    border-radius: 14px;
    background: transparent;
    border: 1px solid rgba(10, 102, 56, 0.05);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.icon-wrapper-premium i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.icon-wrapper-premium:hover {
    background: rgba(10, 102, 56, 0.05);
    color: var(--emerald-base);
    transform: translateY(-2px);
    border-color: rgba(10, 102, 56, 0.1);
}

.icon-wrapper-premium:hover i {
    opacity: 1;
}

.icon-badge-premium {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
}

/* === Premium Navigation === */
.main-nav-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(10, 102, 56, 0.08);
    padding: 2px 0;
    position: relative;
    z-index: 1020;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-link-premium {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 14px 22px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 4px 2px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    opacity: 0.85;
}

.nav-link-premium:hover {
    color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.03);
    opacity: 1;
}

.nav-link-premium.active {
    color: var(--emerald-base);
    font-weight: 700;
    opacity: 1;
    background: rgba(10, 102, 56, 0.08);
}

.nav-link-premium.active::after {
    display: none;
}

.nav-link-premium i {
    opacity: 0.7;
}

.nav-link-premium:hover i,
.nav-link-premium.active i {
    opacity: 1;
}

.dropdown-menu-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    margin-top: 8px;
    min-width: 280px;
}

.dropdown-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: var(--transition);
}

.dropdown-item-premium:hover {
    background: rgba(10, 102, 56, 0.05);
    transform: translateX(5px);
}

.dropdown-icon-premium {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-base);
    font-size: 1.1rem;
}

.dropdown-text-premium {
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* === Premium Promo Badges === */
.promo-badges-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-badge-premium-small {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.promo-badge-premium-small.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.3);
}

.promo-badge-premium-small.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.2));
    color: #db2777;
    border-color: rgba(219, 39, 119, 0.3);
}

.promo-badge-premium-small:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* === Mobile Navigation === */
.mobile-nav-premium {
    background: rgba(255, 255, 255, 0.95);
    /* Slightly more opaque */
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(10, 102, 56, 0.1);
    padding: 8px 0 20px 0;
    /* Extra bottom padding for safe area */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-nav-item-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    /* Softer inactive color */
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    /* Softer radius */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 60px;
    /* Ensure tap target size */
}

/* Active State */
.mobile-nav-item-premium.active {
    color: var(--emerald-base);
    background: rgba(10, 102, 56, 0.08);
    transform: translateY(-2px);
}

.mobile-nav-item-premium.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: var(--emerald-base);
    border-radius: 50%;
}

.mobile-nav-item-premium:hover {
    color: var(--emerald-base);
}

.mobile-nav-icon {
    font-size: 1.25rem;
    /* Larger icons */
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.mobile-nav-item-premium.active .mobile-nav-icon {
    transform: scale(1.1);
}

.mobile-nav-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.mobile-badge-premium {
    position: absolute;
    top: 4px;
    right: 8px;
    /* Adjusted position */
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 10px;
    /* Pill shape */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(220, 38, 38, 0.3);
}

/* === Premium Alert === */
.alert-premium {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 102, 56, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 16px 20px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.alert-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--emerald-base), var(--gold-base));
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .search-wrapper-premium {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .main-header-premium {
        padding: 12px 0;
    }

    .logo-title {
        font-size: 1.5rem;
    }

    .logo-box-premium {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .search-wrapper-premium {
        display: none;
    }

    .promo-badges-premium {
        display: none;
    }

    .main-nav-premium {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-banner-premium {
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .promo-badge-premium {
        display: none;
        /* Hide badge on mobile to save space */
    }

    .marquee-container-premium {
        gap: 20px;
        padding-right: 0;
    }

    /* Mobile Header Optimization */
    .logo-container-premium {
        gap: 8px;
    }

    .logo-box-premium {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .logo-box-premium img {
        width: 40px !important;
        height: 40px !important;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-tagline {
        display: none;
        /* Hide tagline on mobile */
    }

    /* Hide desktop-only icons */
    .icon-wrapper-premium[title="Wishlist"],
    .icon-wrapper-premium[title="Profile"],
    .icon-wrapper-premium[title="Login"] {
        display: none;
    }

    /* Keep Search Toggle and Mobile Menu */
    .header-icons-premium {
        gap: 4px;
    }
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gradient);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--emerald-base), var(--gold-base));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--emerald-light), var(--gold-light));
}

/* === Utility Classes === */
.text-gradient {
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Footer Styles */
.footer-premium {
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2C 100%);
    color: #E2E8F0;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    /* Safe space for bottom nav on mobile */
}

@media (min-width: 992px) {
    .footer-premium {
        padding-bottom: 0;
    }
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(10, 102, 56, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Top Footer */
.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand-col {
    max-width: 400px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    padding: 12px;
}

.footer-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(10, 102, 56, 0.3);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--emerald-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-tagline {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin: 4px 0 0;
    font-weight: 500;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94A3B8;
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    text-decoration: none;
    display: block;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-base), var(--gold-base));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: 'â€º';
    color: var(--emerald-base);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link:hover::before {
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-desc {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    display: flex;
    margin-bottom: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--emerald-base);
    box-shadow: 0 0 0 3px rgba(10, 102, 56, 0.2);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, var(--emerald-base), var(--emerald-light));
    border: none;
    border-radius: 10px;
    color: white;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald-base));
    transform: scale(1.05);
}

.newsletter-note {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-base);
}

.contact-label {
    font-size: 0.8rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

/* Middle Footer */
.footer-middle {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-middle-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-label {
    font-size: 0.9rem;
    color: #94A3B8;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.badge-desc {
    font-size: 0.8rem;
    color: #94A3B8;
}

/* Bottom Footer */
.footer-bottom {
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.9rem;
    color: #94A3B8;
}

.copyright p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

.divider {
    color: rgba(148, 163, 184, 0.3);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(10, 102, 56, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 102, 56, 0.4);
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-middle-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Glass Morphism Hero */
.hero-glass-section {
    position: relative;
    padding: 0;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at top right, var(--emerald-base), var(--emerald-dark));
}

.hero-background-elements {
    display: none;
}

.circle,
.square {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-base), transparent);
    filter: blur(60px);
    opacity: 0.3;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 20s infinite linear;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 20%;
    animation: float 15s infinite linear reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: -50px;
    animation: float 25s infinite linear;
}

.square-1,
.square-2 {
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-base), transparent);
}

.square-1 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 5%;
    animation: float 18s infinite linear reverse;
}

.square-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation: float 22s infinite linear;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }

    50% {
        transform: translate(0, 40px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title-glass {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-align: left;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-base), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-glass {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
}

.btn-glass-primary {
    background: linear-gradient(135deg, var(--emerald-base), var(--emerald-light));
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glass-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-glass-primary:hover::before {
    left: 100%;
}

.btn-glass-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(10, 102, 56, 0.3);
}

.btn-glass-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-base);
    transform: translateY(-3px);
}

.stats-glass {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-base);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual-glass {
    position: relative;
    height: 100%;
    width: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 2;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-main-card {
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    width: 480px;
    height: 600px;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--emerald-base), var(--gold-base), var(--emerald-base));
    border-radius: 24px;
    filter: blur(20px);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.card-content {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-content:hover .hero-product-img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold-base), var(--gold-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald-base);
}

/* 3D Feature Cards */
.features-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Dark Premium Section */
.bg-dark-premium {
    background: linear-gradient(135deg, #051910 0%, #012b1d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-dark-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05), transparent 40%);
    pointer-events: none;
}

.bg-dark-premium .section-title {
    color: white;
}

.bg-dark-premium .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.feature-3d-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-3d-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.feature-3d-card:hover::before {
    transform: scaleX(1);
}

.feature-3d-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.feature-3d-card:hover .icon-background {
    transform: rotate(225deg);
    background: linear-gradient(135deg, var(--gold-base), var(--gold-dark));
    border-color: var(--gold-base);
}

.feature-icon-wrapper i {
    position: relative;
    font-size: 2rem;
    color: var(--gold-base);
    transition: all 0.4s ease;
}

.feature-3d-card:hover .feature-icon-wrapper i {
    color: #051910;
}

.feature-3d-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.feature-3d-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-base);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 50px;
    background: transparent;
}

.feature-3d-card:hover .feature-cta {
    background: rgba(10, 102, 56, 0.1);
    padding-left: 20px;
}

/* Category Showcase */
.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-showcase-card {
    position: relative;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    transition: all 0.4s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.category-showcase-card:hover .category-bg {
    transform: scale(1.1);
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.category-showcase-card:hover .category-content {
    transform: translateY(0);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.category-count {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.category-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.category-showcase-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    padding-bottom: 50px;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card-hover {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background: white;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: visible;
    /* Allow badge overlap if needed, or keeping it hidden works too */
    overflow: hidden;
}

.product-card-hover:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card-hover:hover .product-image {
    transform: scale(1.1);
}

.product-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.badge-featured {
    background: linear-gradient(135deg, var(--gold-base), var(--gold-dark));
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-card-hover:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--text-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-quick-view:hover {
    background: var(--emerald-base);
    color: white;
}

.product-card-hover:hover .btn-quick-view {
    transform: translateY(0);
}

.product-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-hover:hover .product-actions {
    transform: translateX(0);
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--emerald-base);
    color: white;
}

.product-details {
    padding: 25px;
    text-align: left;
}

.product-category {
    color: var(--gold-base);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--emerald-base);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--emerald-base);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    /* Corrected from text-muted to a var or hex */
    color: #94a3b8;
    font-size: 0.9rem;
}

.btn-add-cart-hover {
    width: 100%;
    padding: 12px;
    background: #f1f5f9;
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-cart-hover:hover {
    background: var(--emerald-base);
    color: white;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-hover:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--emerald-base);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--emerald-base);
    color: white;
}

.product-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.badge-featured {
    background: linear-gradient(135deg, var(--gold-base), var(--gold-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-hover:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--emerald-base);
    color: white;
    transform: scale(1.1);
}

.product-details {
    padding: 24px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gold-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--emerald-base);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--emerald-base);
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    color: var(--gold-base);
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-add-cart-hover {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--emerald-base);
    border-radius: 12px;
    color: var(--emerald-base);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart-hover:hover {
    background: var(--emerald-base);
    color: white;
    transform: translateY(-2px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--emerald-base);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-nav:hover {
    background: var(--emerald-base);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

/* Masonry Grid */
.products-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card-masonry {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card-masonry:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.product-image-masonry {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-image-masonry img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-masonry:hover .product-image-masonry img {
    transform: scale(1.1);
}

.product-badge-masonry {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.badge-new {
    background: linear-gradient(135deg, var(--emerald-base), var(--emerald-light));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-overlay-masonry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-masonry:hover .product-overlay-masonry {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 15px;
}

.btn-quick-view-masonry,
.btn-wishlist-masonry,
.btn-cart-masonry {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--emerald-base);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-view-masonry:hover,
.btn-wishlist-masonry:hover,
.btn-cart-masonry:hover {
    background: var(--emerald-base);
    color: white;
    transform: scale(1.1);
}

.product-info-masonry {
    padding: 24px;
}

.product-category-masonry {
    font-size: 0.8rem;
    color: var(--gold-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-title-masonry {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-title-masonry a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-masonry a:hover {
    color: var(--emerald-base);
}

.product-price-masonry {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current-masonry {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--emerald-base);
}

.price-old-masonry {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-base);
}

.service-icon-glow {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 102, 56, 0.2), rgba(212, 175, 55, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.service-card-glass:hover .service-icon-glow {
    background: linear-gradient(135deg, var(--emerald-base), var(--gold-base));
    color: white;
    transform: rotateY(360deg);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.service-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-card-glass:hover .service-link {
    gap: 12px;
    color: var(--gold-base);
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.service-card-glass:hover .service-hover-effect {
    left: 100%;
}

/* Parallax CTA */
.parallax-cta {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-base));
    transform: scale(1.1);
    transition: transform 0.1s linear;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.parallax-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 50px;
}

.parallax-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--emerald-base);
    line-height: 1;
    margin-bottom: 2px;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.meta-item i {
    color: var(--gold-base);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--emerald-base);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald-base);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
    color: var(--emerald-dark);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Background Gradients */
.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1f2c 0%, #2d3748 100%);
    color: white;
}

.bg-light-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-base);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.text-white {
    color: white !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald-base);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-text:hover {
    gap: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-visual-glass {
        height: 500px;
    }

    .hero-main-card {
        width: 380px;
        height: 480px;
    }
}

@media (max-width: 992px) {
    .hero-glass-section {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-visual-glass {
        margin-top: 60px;
        height: 300px;
    }

    .hero-main-card {
        width: 200px;
        height: 300px;
    }

    .floating-card {
        transform: scale(0.8);
    }

    .stats-glass {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .stat-divider {
        display: none;
    }

    .product-card-hover {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero-title-glass {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-desc-glass {
        font-size: 1.1rem;
    }

    .floating-card {
        display: none;
    }

    .hero-main-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }

    .products-carousel {
        gap: 20px;
    }

    .product-card-hover {
        flex: 0 0 calc(100% - 10px);
    }

    .carousel-nav {
        display: none;
    }

    .parallax-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}