/* Agrostori Main Stylesheet */

:root {
    --primary-gold: #AA771C; /* Luxury Antique Gold */
    --accent-gold: #BF953F; /* Metallic Gold */
    --dark-gold: #8E5D10; /* Rich Honey Bronze */
    --light-gold: #FFF8E7; /* Soft Champagne/Cream */
    --charcoal: #1E1C1A; /* Warm Organic Charcoal */
    --charcoal-light: #3C3A37; /* Soft Charcoal */
    --muted-gray: #7C7874; /* Earth Muted Gray */
    --bg-gray: #FCFAF6; /* Warm Alabaster Cream */
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --honey-drip-start: #FFFFFF;
    --honey-drip-start-banner: #1E1C1A; /* Banner dark background */
}

[data-bs-theme="dark"] {
    --white: #0B0E14; /* Luxury Obsidian Black */
    --bg-gray: #131722; /* Deep Carbon Navy */
    --charcoal: #FAF8F5; /* Cream/White accents */
    --charcoal-light: #E5E4E2; /* Platinum gray for text */
    --muted-gray: #9E9993; /* Warm Gray */
    --light-gold: #2D1A04; /* Very deep glowing amber base */
    --dark-gold: #BF953F; /* Swapped to metallic gold */
    --honey-drip-start: #0B0E14;
    --honey-drip-start-banner: #0B0E14;
}

/* Custom Honey Cursor Styling */
html, body {
    cursor: url('../images/honey-cursor.png') 16 16, auto;
}
a, button, select, input[type="submit"], input[type="button"], .btn, .nav-link, [role="button"], .carousel-control-prev, .carousel-control-next {
    cursor: url('../images/honey-cursor.png') 16 16, pointer;
}

/* Base resets & typography */
html {
    background-color: var(--bg-gray);
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal-light);
    background-color: transparent !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Text helpers */
.accent-gold {
    color: var(--primary-gold);
}

.text-dark-gold {
    color: var(--dark-gold) !important;
}

.text-gray-400 {
    color: #9CA3AF !important;
}

.text-gray-500 {
    color: #6B7280 !important;
}

.bg-charcoal {
    background-color: var(--charcoal) !important;
}

.bg-charcoal-light {
    background-color: var(--charcoal-light) !important;
}

.bg-amber-50 {
    background-color: #FFFBEB !important;
}

/* Interactive elements */
a.hover-gold:hover {
    color: var(--accent-gold) !important;
    transition: var(--transition);
}

/* Header & Nav */
.site-header {
    z-index: 1030;
    min-height: 72px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    background-color: var(--white, #ffffff);
}

.site-header--sticky {
    position: sticky;
    top: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-header--static {
    position: relative;
}

@media (min-width: 992px) {
    .site-header {
        max-height: 88px;
    }
}

.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    max-width: 1320px;
}

.navbar {
    transition: var(--transition);
}

.navbar-brand,
.site-brand {
    display: inline-flex;
    align-items: center;
    max-width: min(220px, 52vw);
    margin-right: 0;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
}

.site-brand__mark,
.site-brand__fallback {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    line-height: 0;
}

.site-brand__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

.site-brand--footer {
    max-width: min(240px, 100%);
}

.site-brand--footer .site-brand__logo {
    max-width: 180px;
    max-height: 42px;
}

.site-brand--navbar .site-brand__logo {
    max-width: min(200px, 100%);
    max-height: 48px;
}

.site-brand__preview {
    line-height: 0;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.brand-icon svg {
    width: 32px;
    height: 32px;
}

.navbar-brand .brand-text,
.site-brand .brand-text {
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: -0.025em;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-link {
    color: var(--charcoal-light);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px !important;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Custom Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold:hover, .btn-gold:focus {
    background-color: var(--dark-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    background-color: transparent;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

/* Hero Section */
.hero-slider {
    position: relative;
    background-color: var(--charcoal);
    overflow: hidden;
}

.hero-slide {
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.5) 100%);
    z-index: -1;
}

/* Section styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--muted-gray);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Product Cards */
.product-card {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 24px rgba(217, 119, 6, 0.08) !important;
    border-color: rgba(217, 119, 6, 0.15);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: var(--bg-gray);
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Trust Factors Section (Why Choose Us) */
.trust-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.trust-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transform: translateY(-4px);
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--light-gold);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

/* Certifications Showcase */
.cert-logo-card {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.cert-logo-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 16px rgba(217, 119, 6, 0.05);
}

/* Detail Page Gallery */
.main-gallery-img {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-gray);
    aspect-ratio: 4/3;
    border: 1px solid rgba(0,0,0,0.05);
}

.main-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-gallery-img img:hover {
    transform: scale(1.05);
}

.gallery-thumbnail {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background-color: var(--bg-gray);
}

.gallery-thumbnail.active, .gallery-thumbnail:hover {
    border-color: var(--primary-gold);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Spec sheet table styling */
.table-specs th {
    font-family: 'Outfit', sans-serif;
    color: var(--muted-gray);
    font-weight: 600;
    width: 35%;
}

.table-specs td {
    color: var(--charcoal-light);
    font-weight: 500;
}

/* Category pills */
.category-pill {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--bg-gray);
    color: var(--charcoal-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.category-pill:hover, .category-pill.active {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

/* Header Navbar Override */
.navbar {
    background-color: var(--white) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] html {
    background-color: #0b0f19 !important; /* Slightly darker than card colors for premium depth */
}
[data-bs-theme="dark"] body {
    background-color: transparent !important;
}

[data-bs-theme="dark"] .navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .site-header {
    background-color: rgba(17, 24, 39, 0.92) !important;
}

[data-bs-theme="dark"] .bg-white {
    background-color: var(--white) !important;
}

[data-bs-theme="dark"] .bg-light {
    background-color: var(--bg-gray) !important;
}

[data-bs-theme="dark"] .bg-amber-50 {
    background-color: #2D2214 !important; /* Warm dark brown/amber */
    border-color: #451A03 !important;
}

[data-bs-theme="dark"] .text-dark {
    color: var(--charcoal-light) !important;
}

[data-bs-theme="dark"] .brand-text {
    color: #F9FAFB !important;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select,
[data-bs-theme="dark"] .input-group-text {
    background-color: #1F2937 !important;
    border-color: #374151 !important;
    color: #F3F4F6 !important;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25) !important;
}

[data-bs-theme="dark"] .product-card,
[data-bs-theme="dark"] .trust-card,
[data-bs-theme="dark"] .cert-logo-card {
    background-color: var(--white) !important;
    border-color: #374151 !important;
}

[data-bs-theme="dark"] .product-card:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 16px 24px rgba(245, 158, 11, 0.15) !important;
}

[data-bs-theme="dark"] .table-specs {
    background-color: var(--bg-gray) !important;
}

[data-bs-theme="dark"] .modal-content {
    background-color: var(--white) !important;
    border: 1px solid #374151 !important;
    color: var(--charcoal-light) !important;
}

[data-bs-theme="dark"] .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
}

/* Modern State of the Art Styles */

/* Subtle Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes slow-zoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.12); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Glassmorphism elements */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

/* Hero Section Enhancements */
.hero-slider {
    position: relative;
    background-color: var(--charcoal);
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Zoom effect on Hero background */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slow-zoom 20s ease-in-out infinite alternate;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.5) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

/* Section Header Styling */
.section-header-modern {
    margin-bottom: 60px;
}

.section-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Trust cards glowing */
.trust-card-modern {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(217, 119, 6, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.04), transparent 60%);
    pointer-events: none;
}

.trust-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.06) !important;
    border-color: var(--primary-gold);
}

.trust-icon-wrapper-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-gold) 0%, #FFFBEB 100%);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(217, 119, 6, 0.08);
    transition: var(--transition);
}

.trust-card-modern:hover .trust-icon-wrapper-modern {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

/* Dark mode specific for trust icons */
[data-bs-theme="dark"] .trust-icon-wrapper-modern {
    background: linear-gradient(135deg, #451A03 0%, #2D2214 100%);
}

[data-bs-theme="dark"] .trust-card-modern {
    background-color: var(--white) !important;
    border-color: #374151 !important;
}

[data-bs-theme="dark"] .trust-card-modern:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15) !important;
}

/* Certifications Showcase */
.cert-card-modern {
    background-color: var(--white);
    border: 1px solid rgba(217, 119, 6, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cert-card-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.cert-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(217, 119, 6, 0.05);
    border-color: rgba(217, 119, 6, 0.2);
}

.cert-card-modern:hover::after {
    transform: scaleX(1);
}

[data-bs-theme="dark"] .cert-card-modern {
    background-color: var(--white) !important;
    border-color: #374151 !important;
}

[data-bs-theme="dark"] .cert-card-modern:hover {
    border-color: var(--accent-gold) !important;
}

/* Countries Modern List */
.country-badge-modern {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 18px 24px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.country-badge-modern:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.08);
}

[data-bs-theme="dark"] .country-badge-modern {
    background-color: var(--white) !important;
    border-color: #374151 !important;
}

[data-bs-theme="dark"] .country-badge-modern:hover {
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

/* Call to Action Premium Gradient */
.cta-premium {
    position: relative;
    background: linear-gradient(135deg, rgba(243, 239, 230, 0.45) 0%, rgba(250, 248, 242, 0.45) 100%) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 100px 0;
    transition: var(--transition);
}

.cta-premium h2 {
    color: var(--charcoal) !important;
}

.cta-premium p,
.cta-premium .lead {
    color: #5C5854 !important;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-premium::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Dark Mode CTA Overrides */
[data-bs-theme="dark"] .cta-premium {
    background: linear-gradient(135deg, rgba(10, 13, 20, 0.45) 0%, rgba(19, 23, 34, 0.45) 100%) !important;
    border-color: rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .cta-premium h2 {
    color: #FFFFFF !important;
}

[data-bs-theme="dark"] .cta-premium p,
[data-bs-theme="dark"] .cta-premium .lead {
    color: #9CA3AF !important;
}

[data-bs-theme="dark"] .cta-premium::before {
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
}

[data-bs-theme="dark"] .cta-premium::after {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Premium Buttons */
.btn-premium-gold {
    background: linear-gradient(135deg, #AA771C 0%, #B38728 50%, #BF953F 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 42px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(170, 119, 28, 0.3) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium-gold:hover {
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #AA771C 100%) !important;
    color: #3e2723 !important; /* Elegant dark chocolate color on gold hover */
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(170, 119, 28, 0.45) !important;
}

.btn-premium-outline {
    border: 2px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium-outline:hover {
    background: linear-gradient(135deg, #AA771C 0%, #B38728 50%, #BF953F 100%) !important;
    color: #FFFFFF !important;
    border-color: transparent !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(170, 119, 28, 0.25) !important;
}

/* Modern Card Layout with subtle gold styling */
.product-card-modern {
    background-color: var(--white);
    border: 1px solid rgba(170, 119, 28, 0.15) !important;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(170, 119, 28, 0.45) !important;
    box-shadow: 0 20px 40px rgba(170, 119, 28, 0.12) !important;
}

[data-bs-theme="dark"] .product-card-modern {
    background-color: var(--white) !important;
    border-color: #374151 !important;
}

[data-bs-theme="dark"] .product-card-modern:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 20px 40px rgba(191, 149, 63, 0.2) !important;
}

/* Luxury gold badge styling */
.badge-gold-foil {
    background: linear-gradient(135deg, rgba(170, 119, 28, 0.08) 0%, rgba(251, 245, 183, 0.15) 100%);
    border: 1px solid rgba(170, 119, 28, 0.25) !important;
    color: #AA771C !important;
    font-weight: 700;
}

[data-bs-theme="dark"] .badge-gold-foil {
    background: linear-gradient(135deg, rgba(191, 149, 63, 0.15) 0%, rgba(25, 20, 10, 0.2) 100%);
    border-color: rgba(191, 149, 63, 0.4) !important;
    color: #FCF6BA !important;
}

/* Premium Page Header Banner */
.page-header-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    z-index: 5;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 28, 26, 0.88) 0%, rgba(30, 28, 26, 0.65) 100%) !important;
    z-index: 2;
}

.page-header-banner .container {
    position: relative;
    z-index: 3;
}

.page-header-banner h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #FFFFFF !important;
}

.page-header-banner .breadcrumb-item, 
.page-header-banner .breadcrumb-item a {
    color: #E5E4E2 !important;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.page-header-banner .breadcrumb-item a:hover {
    color: var(--accent-gold) !important;
}

.page-header-banner .breadcrumb-item.active {
    color: var(--accent-gold) !important;
}

.page-header-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Premium Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(170, 119, 28, 0.15) !important;
    border: 1px solid rgba(170, 119, 28, 0.4) !important;
    border-radius: 50% !important;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, #AA771C 0%, #BF953F 100%) !important;
    border-color: transparent !important;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Premium Lightbox Modal Overrides */
#lightboxModal {
    backdrop-filter: blur(15px);
    background-color: rgba(11, 14, 20, 0.85);
}

#lightboxModal .modal-dialog {
    max-width: 850px;
}

.max-vh-75 {
    max-height: 70vh;
    object-fit: contain;
    border: 2px solid rgba(191, 149, 63, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-img-container {
    position: relative;
    max-width: 100%;
}

/* Lightbox Premium Buttons */
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 14, 20, 0.6) !important;
    border: 1px solid rgba(191, 149, 63, 0.3) !important;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1055;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-btn:hover {
    background: linear-gradient(135deg, #BF953F 0%, #B38728 100%) !important;
    border-color: transparent !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.6);
}

.lightbox-btn-prev {
    left: -28px;
}

.lightbox-btn-next {
    right: -28px;
}

/* Close Button Overrides */
#lightboxModal .btn-close-white {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#lightboxModal .btn-close-white:hover {
    opacity: 1;
    background-color: var(--accent-gold);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.5);
}

/* Lightbox Caption */
.lightbox-caption {
    background: rgba(11, 14, 20, 0.7);
    border: 1px solid rgba(191, 149, 63, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.text-gold-foil {
    background: linear-gradient(90deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .lightbox-btn-prev {
        left: 15px;
    }
    .lightbox-btn-next {
        right: 15px;
    }
}
/* Premium Responsive Footer Styles */
.site-footer {
    background-color: rgba(243, 239, 230, 0.45) !important; /* Premium Translucent Warm Alabaster Light */
    color: var(--charcoal-light) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.site-footer h5,
.site-footer h6 {
    color: var(--charcoal) !important;
}

.site-footer p,
.site-footer span,
.site-footer .text-gray-400 {
    color: #5C5854 !important; /* Soft earthy gray for light mode */
}

.site-footer a {
    color: #5C5854 !important;
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--primary-gold) !important;
}

.site-footer hr,
.site-footer .border-secondary {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.site-footer .text-gray-500,
.site-footer .text-gray-500 a {
    color: var(--muted-gray) !important;
}

/* Dark Mode Footer Overrides */
[data-bs-theme="dark"] .site-footer {
    background-color: rgba(10, 13, 20, 0.45) !important; /* Premium Translucent Midnight Obsidian */
    color: #9CA3AF !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .site-footer h5,
[data-bs-theme="dark"] .site-footer h6 {
    color: #FFFFFF !important;
}

[data-bs-theme="dark"] .site-footer p,
[data-bs-theme="dark"] .site-footer span,
[data-bs-theme="dark"] .site-footer .text-gray-400 {
    color: #9CA3AF !important;
}

[data-bs-theme="dark"] .site-footer a {
    color: #9CA3AF !important;
}

[data-bs-theme="dark"] .site-footer a:hover {
    color: var(--accent-gold) !important;
}

[data-bs-theme="dark"] .site-footer hr,
[data-bs-theme="dark"] .site-footer .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .site-footer .text-gray-500,
[data-bs-theme="dark"] .site-footer .text-gray-500 a {
    color: #6B7280 !important;
}

/* Honey Dripping & Droplet Background Animations */
.honey-section-relative {
    position: relative;
    z-index: 1;
}

.honey-drips-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: visible;
    line-height: 0;
    pointer-events: none;
    z-index: 2; /* Sits just above background, behind foreground items */
}

.honey-drips-wrapper svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Floating Honey Droplets Background */
.honey-droplets-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1; /* Behind everything */
}

/* Translucent/Transparent section backgrounds to let background droplets show through */
section, .section-padding, section.bg-light, section.bg-white,
[data-bs-theme="dark"] section, [data-bs-theme="dark"] .section-padding, [data-bs-theme="dark"] section.bg-light, [data-bs-theme="dark"] section.bg-white {
    background-color: transparent !important;
}

.card, .product-card-modern, .trust-card-modern, .cert-card-modern, .site-footer, .cta-premium, main {
    position: relative;
    z-index: 2;
}

.honey-droplet {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating Honey Droplets Background Wrapper */
.honey-droplets-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1; /* Behind content cards */
}

/* 1. Floating Background Droplet Styles */
.honey-droplet-float-1 {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 5%;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: float-droplet-1 20s infinite ease-in-out alternate;
}

.honey-droplet-float-2 {
    width: 140px;
    height: 140px;
    bottom: 25%;
    right: 3%;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: float-droplet-2 26s infinite ease-in-out alternate;
}

.honey-droplet-float-3 {
    width: 80px;
    height: 80px;
    top: 45%;
    right: 10%;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: float-droplet-3 18s infinite ease-in-out alternate;
}

.honey-droplet-float-4 {
    width: 110px;
    height: 110px;
    bottom: 12%;
    left: 8%;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: float-droplet-4 22s infinite ease-in-out alternate;
}

/* 2. Dripping Top Bar Droplet Styles */
.honey-droplet-drip {
    transform: scale(0);
    opacity: 0;
}

.honey-droplet-drip-1 {
    width: 24px;
    height: 24px;
    top: 5px;
    left: 2.77vw;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: honey-drip-fall 35s infinite ease-in;
    animation-delay: 12s;
}

.honey-droplet-drip-2 {
    width: 30px;
    height: 30px;
    top: 12px;
    left: 8.33vw;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: honey-drip-fall 30s infinite ease-in;
    animation-delay: 1s;
}

.honey-droplet-drip-3 {
    width: 26px;
    height: 26px;
    top: 8px;
    left: 13.88vw;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: honey-drip-fall 32s infinite ease-in;
    animation-delay: 18s;
}

.honey-droplet-drip-4 {
    width: 36px;
    height: 36px;
    top: 10px;
    left: 19.44vw;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: honey-drip-fall 38s infinite ease-in;
    animation-delay: 5s;
}

.honey-droplet-drip-5 {
    width: 28px;
    height: 28px;
    top: 10px;
    left: 30.55vw;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: honey-drip-fall 34s infinite ease-in;
    animation-delay: 15s;
}

.honey-droplet-drip-6 {
    width: 44px;
    height: 44px;
    top: 12px;
    left: 36.11vw;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: honey-drip-fall 28s infinite ease-in;
    animation-delay: 3s;
}

.honey-droplet-drip-7 {
    width: 32px;
    height: 32px;
    top: 10px;
    left: 47.22vw;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: honey-drip-fall 33s infinite ease-in;
    animation-delay: 8s;
}

.honey-droplet-drip-8 {
    width: 28px;
    height: 28px;
    top: 10px;
    left: 58.33vw;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: honey-drip-fall 36s infinite ease-in;
    animation-delay: 22s;
}

.honey-droplet-drip-9 {
    width: 40px;
    height: 40px;
    top: 12px;
    left: 63.88vw;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: honey-drip-fall 31s infinite ease-in;
    animation-delay: 2s;
}

.honey-droplet-drip-10 {
    width: 36px;
    height: 36px;
    top: 10px;
    left: 75.00vw;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: honey-drip-fall 40s infinite ease-in;
    animation-delay: 11s;
}

.honey-droplet-drip-11 {
    width: 44px;
    height: 44px;
    top: 12px;
    left: 86.11vw;
    background-image: url('../images/honey-drop-photo-2.png');
    animation: honey-drip-fall 29s infinite ease-in;
    animation-delay: 6s;
}

.honey-droplet-drip-12 {
    width: 28px;
    height: 28px;
    top: 8px;
    left: 97.22vw;
    background-image: url('../images/honey-drop-photo-1.png');
    animation: honey-drip-fall 37s infinite ease-in;
    animation-delay: 9s;
}

/* Animations definition */
@keyframes float-droplet-1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(25px, -45px) rotate(8deg) scale(1.05);
    }
    100% {
        transform: translate(-15px, -90px) rotate(-6deg) scale(0.95);
    }
}

@keyframes float-droplet-2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 50px) rotate(-10deg) scale(0.93);
    }
    100% {
        transform: translate(25px, 100px) rotate(12deg) scale(1.06);
    }
}

@keyframes float-droplet-3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -35px) scale(1.08);
    }
    100% {
        transform: translate(-15px, 35px) scale(0.95);
    }
}

@keyframes float-droplet-4 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-25px, -55px) rotate(5deg) scale(0.96);
    }
    100% {
        transform: translate(30px, -25px) rotate(-8deg) scale(1.04);
    }
}

@keyframes honey-drip-fall {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(0) scale(0.3);
        opacity: 0.8;
    }
    24% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    27% {
        transform: translateY(3px) scaleY(1.35) scaleX(0.75);
        opacity: 1;
    }
    51% {
        transform: translateY(92vh) scaleY(1.1) scaleX(0.9);
        opacity: 1;
    }
    54% {
        transform: translateY(100vh) scaleY(1) scaleX(1);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* For Dark Theme support */
[data-bs-theme="dark"] .honey-droplet {
    mix-blend-mode: normal;
    filter: brightness(0.85) contrast(1.1) drop-shadow(2px 6px 16px rgba(0, 0, 0, 0.55));
}

/* Dashboard Stat Card Hover Animations */
.dashboard-stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.dashboard-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

/* Premium Mobile Navigation Menu Card Styling */
@media (max-width: 991.98px) {
    .site-brand--navbar {
        max-width: min(180px, 62vw);
    }

    .site-brand--navbar .site-brand__logo {
        max-width: 160px;
        max-height: 40px;
    }

    .navbar-collapse {
        background-color: var(--bs-body-bg, #ffffff);
        padding: 1.25rem 1rem;
        border-radius: 0 0 1rem 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        margin-top: 0.5rem;
    }
}

/* Premium Dropdown Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(170, 119, 28, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(120, 53, 4, 0.1) !important;
    z-index: 1060 !important; /* Float above the dripping honey overlay (z-index 1020) */
    padding: 0.75rem 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

[data-bs-theme="dark"] .dropdown-menu {
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.dropdown-item {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: var(--charcoal) !important;
    padding: 0.6rem 1.25rem !important;
    transition: all 0.2s ease !important;
}

[data-bs-theme="dark"] .dropdown-item {
    color: #E5E7EB !important;
}

.dropdown-item:hover {
    background-color: rgba(170, 119, 28, 0.08) !important;
    color: var(--primary-gold) !important;
    transform: translateX(4px);
}

[data-bs-theme="dark"] .dropdown-item:hover {
    background-color: rgba(191, 149, 63, 0.12) !important;
    color: var(--accent-gold) !important;
}

.dropdown-divider {
    border-top: 1px solid rgba(170, 119, 28, 0.1) !important;
}

[data-bs-theme="dark"] .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Enable desktop hover activation for dropdown menus */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        margin-top: 0 !important;
    }
}

/* Mobile responsive dripping honey scaling */
@media (max-width: 767.98px) {
    .header-honey-drip-svg, .honey-drip-svg {
        width: 285% !important;
    }
}

