/* 
 * Weblium "Honey Production" Inspired Design System for Madube
 * Rounded organic curves, warm cream parchment, and honey-gold accents
 */

/* --- 1. Typography & Theme Tokens --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Spicy+Rice&display=swap');

:root {
    /* Color Palette */
    --color-accent: #f5a623;
    --color-accent-hover: #e09612;
    --color-light-canvas: #fdfbf7;      /* Warm off-white parchment */
    --color-dark-canvas: #212736;       /* Deep warm dark slate */
    --color-card-bg: #ffffff;
    --color-card-dark: #2a3142;
    --color-text-dark: #212736;
    --color-text-light: #f3f4f6;
    --color-muted-light: #9ca3af;
    --color-muted-dark: #646e82;
    --color-border: rgba(33, 39, 54, 0.08);
    --color-border-dark: rgba(255, 255, 255, 0.08);

    /* Fonts */
    --font-family: 'Nunito', sans-serif;
}

/* --- 2. Global Reset & Body Defaults --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-family);
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-text-dark);
    background-color: var(--color-light-canvas);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- 3. Clean Specific Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: inherit;
}

p {
    margin-bottom: 1.25rem;
    color: inherit;
    opacity: 0.9;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* --- 4. Responsive Containers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- 5. Clean Section Rhythm --- */
section {
    padding: 6rem 0;
    width: 100%;
    position: relative;
}

.section-light {
    background-color: var(--color-light-canvas);
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-dark-canvas);
    color: var(--color-text-light);
}

.section-dark .muted-text {
    color: var(--color-muted-light);
}

.section-light .muted-text {
    color: var(--color-muted-dark);
}

.section-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-family: 'Spicy Rice', cursive !important;
    font-size: 3.5rem;
    font-weight: normal;
    color: #8a351a !important;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.text-center {
    text-align: center;
}

/* --- 6. Premium Weblium-style Navigation Header --- */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(253, 251, 247, 0.9);
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Header Action Button */
.header-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 1.5rem;
    background-color: var(--color-accent);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
    opacity: 1;
}

/* --- 7. Constrained Elegant Hero Banner --- */
.hero-section {
    padding: 0 !important;
    height: auto !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 0 0 18px 18px; /* Top corners flat, bottom corners rounded */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Controls */
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.35);
}

/* --- 8. Services ("What We Do") Weblium Cards Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 1rem;
}

.service-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.section-dark .service-card {
    background-color: var(--color-card-dark);
    border-color: var(--color-border-dark);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(33, 39, 54, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    width: fit-content;
}

.service-link::after {
    content: " →";
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.service-link:hover::after {
    transform: translateX(3px);
}

/* --- 9. Premium Product Showcase Store Grid --- */
.store-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.product-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px; /* Highly organic rounded curves */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 380px;
}

.section-dark .product-card {
    background-color: var(--color-card-dark);
    border-color: var(--color-border-dark);
}

.product-card:hover {
    transform: translateY(-2px);
}

/* Nested card slider carousel */
.card-slider-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: rgba(33, 39, 54, 0.01);
}

.card-slider-wrapper {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.card-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.card-slide-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-slide-item img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(33, 39, 54, 0.12)); /* Beautiful drop-shadow */
}

.card-slider-prev, .card-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.card-slider-prev { left: 0.75rem; }
.card-slider-next { right: 0.75rem; }

.card-slider-prev:hover, .card-slider-next:hover {
    background-color: #ffffff;
    color: var(--color-accent);
}

.card-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.card-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(120, 113, 108, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-slider-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}

/* Card details styling */
.card-body {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.card-meta {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted-dark);
    margin-bottom: 1.25rem;
}

.section-dark .card-meta {
    color: var(--color-muted-light);
}

.product-description-box {
    background-color: #faf8f5;
    border: 1px solid rgba(138, 53, 26, 0.06);
    border-radius: 18px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 15px;
    color: var(--color-muted-dark);
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.section-dark .card-price-row {
    border-color: var(--color-border-dark);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

/* Quantity controls & Pill CTA */
.card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-pill {
    display: flex;
    align-items: center;
    border: 1px solid rgba(33, 39, 54, 0.12);
    border-radius: 9999px;
    height: 42px;
    overflow: hidden;
    background-color: rgba(33, 39, 54, 0.02);
}

.section-dark .quantity-pill {
    border-color: var(--color-border-dark);
    background-color: rgba(255,255,255,0.02);
}

.qty-pill-btn {
    width: 36px;
    height: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qty-pill-btn:hover {
    background-color: rgba(33, 39, 54, 0.06);
}

.qty-pill-input {
    width: 32px;
    height: 100%;
    border: none;
    background: none;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: inherit;
    outline: none;
}

.btn-pill-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 1.75rem;
    background-color: var(--color-accent);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pill-cta:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
}

.btn-pill-cta:active {
    transform: scale(0.98);
}

/* --- 10. Why Choose Us Section --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.why-us-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.why-us-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(246, 142, 86, 0.08);
    color: #f68e56;
    border-radius: 50%;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    background-color: #f68e56;
    color: #ffffff;
    transform: scale(1.06);
}

.why-us-icon-svg {
    width: 100%;
    height: 100%;
}

.why-us-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.why-us-desc {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

#ulasan {
    background-color: #ffb132 !important;
    color: var(--color-text-dark) !important;
    background-image: url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg);
    background-position: left -110px top 40px, right -30px top 170px, left 20% bottom -122px;
    background-size: 340px auto, 340px auto, 340px auto;
    background-repeat: no-repeat;
}



#ulasan .section-subtitle {
    color: var(--color-text-dark) !important;
    opacity: 0.8 !important;
}

#ulasan .section-badge {
    color: var(--color-text-dark) !important;
    opacity: 0.8 !important;
}

.testimonials-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem; /* Clean distance between cards */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: center;
    width: max-content;
}

.testimonial-bubble {
    flex: 0 0 520px; /* Precise fixed card width for desktop */
    width: 520px;
    border: 2px solid rgba(245, 166, 35, 0.15);
    border-radius: 32px 12px 32px 32px; /* Organic dripping honey design */
    background: linear-gradient(135deg, #ffffff 0%, #fffef0 100%);
    color: var(--color-text-dark);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    text-align: left; /* Rata kiri */
    
    /* FADED STATE for non-active items */
    opacity: 0.25;
    transform: scale(0.88);
    filter: blur(2px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 12px rgba(139, 92, 26, 0.03);
}

/* ACTIVE STATE for centered item */
.testimonial-bubble.active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    border-color: rgba(245, 166, 35, 0.65);
}

.testimonial-bubble::before {
    display: none; /* Hide old honey pot emoji */
}

/* Premium backdrop SVG positioned absolutely inside the bubble HTML */
.testi-backdrop-svg {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 140px;
    height: 140px;
    opacity: 0.2;
    color: var(--color-accent);
    pointer-events: none;
    transform: rotate(15deg);
    transition: transform 0.6s ease;
    z-index: 1;
}

.testimonial-bubble:hover .testi-backdrop-svg {
    transform: scale(1.15) rotate(25deg);
}

.testimonial-bubble.active:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.85);
    box-shadow: 0 24px 50px rgba(139, 92, 26, 0.25);
}

.testi-stars {
    color: var(--color-accent);
    font-size: 16px;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
    text-align: left; /* Rata kiri */
}

.testi-quote {
    font-size: 15.5px;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

.testi-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    border-top: 1px solid rgba(245, 166, 35, 0.15);
    padding-top: 1rem;
    z-index: 2;
}

.testi-name {
    font-weight: 800;
    font-size: 15.5px;
    color: #4e3629; /* Weblium elegant chocolate brown */
}

.testi-loc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 0.2rem;
}

/* Beautiful modern Testimonials controls styling (Honeycomb Hexagonal Cell Shape) */
.testi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #4e3629;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Flat top hexagon */
    filter: drop-shadow(0 4px 10px rgba(78, 54, 41, 0.15));
}

.testi-nav-btn:hover {
    background: #4e3629;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 6px 15px rgba(78, 54, 41, 0.3));
}

.testi-prev {
    left: 20px;
}

.testi-next {
    right: 20px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(78, 54, 41, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testi-dot.active {
    background: #4e3629;
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .testimonial-bubble {
        flex: 0 0 310px; /* Smaller card width on mobile */
        width: 310px;
        padding: 1.75rem;
    }
    
    .testi-nav-btn {
        display: none;
    }
}

/* --- 12. Footer --- */
.footer-wrap {
    padding: 5rem 0;
    text-align: center;
    background-color: #6e2a15;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border-dark);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: inline-block;
    margin-bottom: 1.75rem;
}

.footer-badge-link, .footer-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-badge-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-badge-circle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    list-style: none;
    font-weight: 700;
    font-size: 15px;
}

.footer-copy-text {
    font-size: 13px;
    opacity: 0.45;
}

/* --- 13. Responsive Breakpoints --- */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .store-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-bubble {
        flex: 0 0 85vw;
    }

    .why-us-split {
        flex-direction: column !important;
        text-align: center !important;
        gap: 3.5rem !important;
    }

    .why-us-content-side {
        text-align: center !important;
    }

    .why-us-feature-row {
        text-align: left !important;
    }
}

@media (max-width: 767px) {
    .benefit-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .benefit-image-wrapper {
        flex: 0 0 130px !important;
        width: 130px !important;
        height: 130px !important;
        border-radius: 20px !important;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.15rem;
    }

    .nav-menu {
        display: flex;
        gap: 0;
    }
    .nav-menu li:not(:last-child) {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-price-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .card-actions {
        width: 100%;
        justify-content: space-between;
    }

    .btn-pill-cta {
        flex-grow: 1;
    }
}

/* --- 14. Split-Column FAQ Section (Weblium Style) --- */
.faq-section {
    background-color: var(--color-light-canvas);
    border-top: 1px solid var(--color-border);
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.faq-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-bg-product-decor {
    position: absolute;
    width: 115%;
    max-width: 580px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    transform: translate(-3%, -2%);
}

.faq-illustration {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Floating bee animation decoration */
.faq-floating-bee {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 50px;
    height: auto;
    animation: floatBee 6s ease-in-out infinite;
    opacity: 0.85;
    pointer-events: none;
}

@keyframes floatBee {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.faq-badge {
    display: inline-block;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.faq-title-wrap {
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #4e3629; /* Elegant Weblium deep chocolate brown */
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin-top: 0.75rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(78, 54, 41, 0.1);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 700;
    color: #4e3629;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease;
}

.faq-trigger:hover {
    color: var(--color-accent-hover);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #4e3629;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Rotates the + to make a close x icon */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    opacity: 1;
}

.faq-answer {
    padding-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Media query adaptations */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-title {
        font-size: 2.25rem;
    }
    
    .faq-illustration {
        max-width: 400px;
    }
}

/* --- 15. Dripping Honey Divider (Dinding Pemisah) --- */
.honey-drip-divider {
    width: 100%;
    height: 100px;
    background: url('../static/drip-divider.webp') repeat-x top center;
    background-size: auto 100px;
    background-color: var(--color-light-canvas);
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    z-index: 10;
}

#why-us {
    padding-bottom: 5rem !important;
}

#ulasan {
    padding-top: 3rem !important;
}

@media (max-width: 767px) {
    .honey-drip-divider {
        height: 60px;
        background-size: auto 60px;
    }
    #ulasan {
        padding-top: 2rem !important;
    }
}

/* --- 16. Premium Product Detail Modal --- */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 39, 54, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 32px;
    box-shadow: 0 25px 60px -15px rgba(33, 39, 54, 0.25);
    z-index: 10;
    overflow-y: auto;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(33, 39, 54, 0.05);
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(33, 39, 54, 0.1);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem;
}

/* Left side: Image Gallery */
.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-main-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #faf8f5;
    border: 1px solid rgba(33, 39, 54, 0.04);
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 0.75rem;
}

.modal-thumb-item {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #faf8f5;
    transition: all 0.2s ease;
}

.modal-thumb-item.active,
.modal-thumb-item:hover {
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.modal-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 0rem; /* Ensures space at the end so text is never covered by sticky footer */
}

.modal-honey-type {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: 'Spicy Rice', cursive;
    font-size: 2rem;
    color: #8a351a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.modal-meta {
    font-size: 15px;
    color: var(--color-muted-dark);
    margin-bottom: 1.5rem;
}

.modal-desc-box {
    margin-bottom: 1.5rem;
}

.modal-section-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.modal-desc-box p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-muted-dark);
    white-space: pre-line;
}

.modal-qty-section {
    margin-bottom: 1.5rem;
}

.modal-qty-section .quantity-pill {
    display: inline-flex;
    margin-top: 0.25rem;
}

/* Payment Badges */
.modal-payment-section {
    margin-bottom: 2rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(33, 39, 54, 0.08);
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    color: var(--color-text-dark);
}

.payment-badge:hover {
    border-color: var(--color-accent);
}

.payment-badge.active {
    border-color: var(--color-accent);
    background-color: rgba(245, 166, 35, 0.06);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.08);
}

.modal-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(33, 39, 54, 0.06);
    padding-top: 1.5rem;
    margin-top: auto;
    position: sticky;
    bottom: -3rem;
    background: #ffffff;
    padding-bottom: 4.5rem;
    z-index: 10;
}

.modal-price-wrap {
    display: flex;
    flex-direction: column;
}

.modal-price-label {
    font-size: 12px;
    color: var(--color-muted-dark);
    text-transform: uppercase;
}

.modal-price-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #8a351a;
}

.btn-pill-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 1.75rem;
    border-radius: 9999px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #8a351a;
    background: transparent;
    color: #8a351a;
}

.btn-pill-secondary:hover {
    background: rgba(138, 53, 38, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .product-modal {
        padding: 0 !important;
    }
    .modal-content {
        border-radius: 0 !important;
        max-height: 100vh !important;
        height: 100vh !important;
        width: 100vw !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .modal-grid {
        grid-template-columns: 1fr !important;
        padding: 1.5rem 1.5rem 0 1.5rem !important;
        gap: 1.5rem !important;
    }
    .modal-close {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        color: #212736 !important;
        z-index: 110 !important;
    }
    .modal-footer-row {
        position: sticky !important;
        bottom: 0 !important;
        left: 0 !important;
        width: calc(100% + 3rem) !important;
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
        margin-top: 2rem !important;
        background: #ffffff !important;
        border-top: 1px solid rgba(33, 39, 54, 0.08) !important;
        padding: 1rem 1.5rem !important;
        box-shadow: 0 -8px 24px rgba(33, 39, 54, 0.12) !important;
        z-index: 100 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem !important;
        text-align: left !important;
    }
    .modal-price-wrap {
        align-items: flex-start !important;
    }
    .modal-footer-row .btn-pill-cta {
        margin: 0 !important;
        flex: 1 !important;
        height: 48px !important;
    }
}

/* --- Premium services-split-grid layout --- */
.services-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    align-items: center;
}

.services-left-visual {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.services-sand-card {
    position: absolute;
    top: 16%;
    left: 8%;
    width: 84%;
    height: 70%;
    background-color: #ffb132;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.decor-svg {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.decor-flower {
    top: 0;
    left: -5%;
    width: 130px;
    height: 130px;
    animation: rotateSlow 40s linear infinite;
}

.decor-bee {
    bottom: -3%;
    right: 7%;
    width: 40px;
    height: 40px;
    opacity: 0.85;
    animation: floatBee 6s ease-in-out infinite;
}

.offset-images-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 480px;
    z-index: 3;
}

.offset-img-box {
    position: absolute;
    width: 190px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(138, 53, 26, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.offset-img-box:hover {
    transform: scale(1.03) translateY(-5px);
    z-index: 5;
}

.img-high-left {
    top: 0;
    left: 9%;
}

.img-low-right {
    bottom: 0;
    right: 9%;
}

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

.services-right-content {
    z-index: 3;
    text-align: left;
}

.features-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.hexagon-badge {
    position: relative;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: #ffffff;
    stroke: #f68e56;
    stroke-width: 4;
}

.feature-icon-svg {
    position: relative;
    width: 22px;
    height: 22px;
    color: #f68e56;
    z-index: 2;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #8a351a;
    margin-bottom: 0.25rem;
}

.feature-desc {
    color: var(--color-muted-dark);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatBee {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

/* --- Subtle Background Watermark Decorations (Small Scattered Floating) --- */
.decor-sm {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 38px;
    height: 38px;
    transition: transform 0.4s ease;
}

.decor-pos-1 { top: 8%; right: 170px; width: 70px; height: 70px; animation: floatBeeSlow 10s ease-in-out infinite; }
.decor-pos-2 { top: 45%; right: 5%; animation: floatBee 7s ease-in-out infinite; }
.decor-pos-3 { bottom: 10%; left: 8%; animation: floatBeeAlt 9s ease-in-out infinite; }

.decor-pos-4 { top: 12%; right: 7%; animation: floatBee 8s ease-in-out infinite; }
.decor-pos-5 {
    top: 80px;
    left: 180px;
    width: 70px;
    height: 70px;
    scale: -1 1;
    animation: floatBeeSlow 12s ease-in-out infinite;
}
.decor-pos-6 { bottom: 12%; right: 8%; animation: floatBeeAlt 6s ease-in-out infinite; }

.decor-pos-7 { top: 60px; right: 18%; animation: floatBeeSlow 11s ease-in-out infinite; }
.decor-pos-8 { top: 590px; left: 5%; animation: floatBee 9s ease-in-out infinite; z-index: 3; }
#store .container, #why-us .container, #faq .container, #benefit .container, #ulasan .container {
    position: relative;
    z-index: 2;
}

/* --- Scattered Botanical Flower Stems --- */
.flower-stem-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 280px;
    height: 280px;
    opacity: 1;
    filter: drop-shadow(0 15px 35px rgba(138, 53, 26, 0.04));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: rotate(var(--rotate-angle, 0deg));
    animation: floatFlower 15s ease-in-out infinite;
}

/* Individual random placements & angles using CSS Custom Properties to prevent animation resets */
.stem-pos-1 { --rotate-angle: -35deg; bottom: -80px; left: -80px; }
.stem-pos-2 { --rotate-angle: -45deg; top: 20px; right: -80px; }
.stem-pos-3 { --rotate-angle: 75deg; bottom: 380px; left: -80px; }
.stem-pos-4 { --rotate-angle: 5deg; bottom: -100px; left: -40px; }
.stem-pos-5 { --rotate-angle: -65deg; top: -80px; right: -80px; }
.stem-pos-6 { --rotate-angle: -65deg; bottom: -60px; right: -60px; }

/* Responsive adjustments for large stems to avoid mobile horizontal scroll */
@media (max-width: 767px) {
    .flower-stem-decor {
        width: 180px;
        height: 180px;
        opacity: 1;
    }
}

/* Hover/Fly Keyframes */
@keyframes floatBeeAlt {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-8px) translateX(6px) rotate(-3deg); }
}

@keyframes floatBeeSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

@keyframes floatFlower {
    0%, 100% { transform: translateY(0) rotate(var(--rotate-angle, 0deg)); }
    50% { transform: translateY(-8px) rotate(calc(var(--rotate-angle, 0deg) + 2deg)); }
}

/* Responsive Override (Placed at the bottom for correct cascading priority) */
@media (max-width: 991px) {
    .services-split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .services-sand-card {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background-color: #f3ece1;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        z-index: 1;
    }
    .services-left-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 1rem 0;
    }
    
    .offset-images-wrap {
        height: 480px;
    }
    .decor-pos-1 {
        top: 2%;
        right: 170px;
        width: 70px;
        height: 70px;
        animation: floatBeeSlow 10s ease-in-out infinite;
    }
    .decor-pos-5 {
        top: 10px;
        left: 240px;
        width: 70px;
        height: 70px;
        scale: -1 1;
        animation: floatBeeSlow 12s ease-in-out infinite;
    }
    .decor-pos-8 {
        top: 590px;
        left: 5%;
        animation: floatBee 9s ease-in-out infinite;
    }
    .stem-pos-1 { --rotate-angle: 55deg; bottom: 76%; left: -7%; }
    .stem-pos-2 { --rotate-angle: -45deg; top: 2%; right: -6%; }
    .stem-pos-3 { --rotate-angle: 75deg; bottom: 86%; left: -4%; }
    .stem-pos-4 { --rotate-angle: 5deg; bottom: -15%; left: 2%; }
    .stem-pos-5 { --rotate-angle: -65deg; top: 8%; right: -6%; }
    .stem-pos-6 { --rotate-angle: -65deg; bottom: -8%; right: -5%; }
    #ulasan {
        background-color: #ffb132 !important;
        color: var(--color-text-dark) !important;
        background-image: url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg);
        background-position: left -110px top 40px, right -30px top 170px, left 20% bottom -122px;
        background-size: 250px auto, 250px auto, 250px auto;
        background-repeat: no-repeat;
}
    
}

@media (max-width: 767px) {
    .hero-slider {
        height: auto !important;
        aspect-ratio: 4 / 5 !important;
    }
    .offset-images-wrap {
        height: 430px;
    }
    .offset-img-box {
        width: 184px;
        height: 280px;
        border-radius: 20px;
    }
    .decor-flower {
        width: 145px;
        height: 145px;
        left: -6%;
        top: -24%;
    }
    .services-sand-card {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background-color: #f3ece1;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        z-index: 1;
    }
    .decor-bee {
        bottom: -16%;
        right: 7%;
        width: 40px;
        height: 40px;
        opacity: 0.85;
        animation: floatBee 6s ease-in-out infinite;
    }
    .decor-pos-1 {
        top: 1%;
        right: 110px;
        width: 70px;
        height: 70px;
        animation: floatBeeSlow 10s ease-in-out infinite;
    }
    .decor-pos-8 {
        top: 440px;
        left: 5%;
        animation: floatBee 9s ease-in-out infinite;
    }
    .decor-pos-5 {
        top: -10px;
        left: 150px;
        width: 70px;
        height: 70px;
        scale: -1 1;
        animation: floatBeeSlow 12s ease-in-out infinite;
    }
    .stem-pos-1 { --rotate-angle: 55deg; bottom: 76%; left: -7%; }
    .stem-pos-2 { --rotate-angle: -45deg; top: 2%; right: -6%; }
    .stem-pos-3 { --rotate-angle: 75deg; bottom: 90%; left: -4%; }
    .stem-pos-4 { --rotate-angle: 5deg; bottom: -15%; left: 2%; }
    .stem-pos-5 { --rotate-angle: -65deg; top: 10%; right: -6%; }
    .stem-pos-6 { --rotate-angle: -65deg; bottom: -8%; right: -5%; }
    
    #ulasan {
        background-color: #ffb132 !important;
        color: var(--color-text-dark) !important;
        background-image: url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg);
        background-position: left -80px top 120px, right -30px top 240px, left 20% bottom -122px;
        background-size: 190px auto, 190px auto, 190px auto;
        background-repeat: no-repeat;
    }
}

@media (max-width: 480px) {
    .offset-img-box {
        width: 140px;
        height: 210px;
        border-radius: 16px;
    }
    .decor-flower {
        width: 145px;
        height: 145px;
        left: -6%;
        top: -24%;
    }
    .offset-images-wrap {
        height: 300px;
    }
    .decor-pos-1 {
        top: 0%;
        right: 60px;
        width: 70px;
        height: 70px;
        animation: floatBeeSlow 10s ease-in-out infinite;
    }
    .decor-pos-2 {
        top: 45%;
        right: 5%;
        animation: floatBee 7s ease-in-out infinite;
        z-index: 3;
    }
    .decor-pos-5 {
        top: -10px;
        left: 160px;
        width: 70px;
        height: 70px;
        scale: -1 1;
        animation: floatBeeSlow 12s ease-in-out infinite;
        z-index: 3;
    }
    .decor-pos-8 {
        top: 440px;
        left: 5%;
        animation: floatBee 9s ease-in-out infinite;
    }
    .decor-pos-7 {
    top: 40px;
    right: 48%;
    animation: floatBeeSlow 11s ease-in-out infinite;
}
    .stem-pos-1 { --rotate-angle: 15deg; bottom: 85%; left: 55%; }
    .stem-pos-2 { --rotate-angle: -45deg; top: 1%; right: -18%; }
    .stem-pos-3 { --rotate-angle: 75deg; bottom: 90%; left: -4%; }
    .stem-pos-4 { --rotate-angle: 5deg; bottom: 47%; left: 2%; }
    .stem-pos-5 { --rotate-angle: -65deg; top: 1%; right: -6%; }
    .stem-pos-6 { --rotate-angle: -65deg; bottom: -8%; right: -5%; }

    #ulasan {
        background-color: #ffb132 !important;
        color: var(--color-text-dark) !important;
        background-image: url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg), url(../static/375129873_0b2daabb-1a55-4e86-a31a-daf16d9fe6cc.svg);
        background-position: left -80px top 190px, right -30px top 240px, left 20% bottom -122px;
        background-size: 190px auto, 190px auto, 190px auto;
        background-repeat: no-repeat;
    }

}

/* --- Hero Prev/Next Hexagonal Navigation Buttons --- */
.hero-prev-btn, .hero-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 55px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-prev-btn {
    left: 1.5rem;
}

.hero-next-btn {
    right: 1.5rem;
}

.hero-prev-btn .hex-svg, .hero-next-btn .hex-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: rgba(253, 251, 247, 0.9); /* Warm cream parchment matching light-canvas */
    stroke: var(--color-accent); /* Madube Gold */
    stroke-width: 4px;
    transition: all 0.3s ease;
}

.hero-prev-btn .arrow-icon, .hero-next-btn .arrow-icon {
    position: relative;
    z-index: 2;
    color: var(--color-accent); /* Matching Madube Gold */
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px; /* Offset vertical font displacement */
    transition: all 0.3s ease;
}

.hero-prev-btn .arrow-icon {
    margin-left: -3px; /* Center-align the left angle bracket horizontally */
}

.hero-next-btn .arrow-icon {
    margin-right: -3px; /* Center-align the right angle bracket horizontally */
}

.hero-prev-btn:hover .hex-svg, .hero-next-btn:hover .hex-svg {
    fill: var(--color-accent); /* Madube Gold fill on hover */
    stroke: var(--color-accent-hover); /* Darker gold border on hover */
    transform: scale(1.08);
}

.hero-prev-btn:hover .arrow-icon, .hero-next-btn:hover .arrow-icon {
    color: #ffffff; /* Turns white on hover */
}

.hero-prev-btn:active, .hero-next-btn:active {
    transform: translateY(-50%) scale(0.95);
}
