
:root {
    /* Primary Colors */
    --gold-primary: #D4AF37;
    --gold-dark: #B8962E;
    --gold-light: #F5E6C8;
    --gold-pale: #FBF7ED;
    
    /* Neutral Colors */
    --black: #000000;
    --charcoal: #1A1A1A;
    --gray-dark: #4A4A4A;
    --gray-medium: #8A8A8A;
    --gray-light: #E5E5E5;
    --white: #FFFFFF;
    
    /* Accent Colors */
    --honey-amber: #FFBF00;
    --cream: #FFF8E7;
    --terracotta: #E07A5F;
    
    /* Semantic Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ========================================
   NAVBAR STYLES - ALL UNDER .navbar-custom
   ======================================== */

.navbar-custom {
    background: #1A1A1A;
    padding: 0;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease; 
    width: 100%;
}
.navbar-custom.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

}

.navbar-custom .navbar-wrapper {
padding: 1rem 1.5rem;
    transition: padding 0.3s ease;
}

.navbar-custom .navbar-left {
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.navbar-custom .navbar-brand-custom {
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom .logo-main {
    height: 100px !important;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    position: relative;
    z-index: 1002;
    will-change: height;
    filter: 
        drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12))
        drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.navbar-custom .navbar-brand-custom:hover .logo-main {
    transform: scale(1.08) translateY(-3px);
    filter: 
        drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18))
        drop-shadow(0 0 40px rgba(212, 175, 55, 0.35));
}

.navbar-custom.scrolled .logo-main {
    height: 60px !important;
}

.navbar-custom .navbar-brand-custom:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgb(212 175 55 / 40%);
}

.navbar-custom.scrolled .navbar-brand-custom::after {
    width: 90px;
    height: 90px;
    border-width: 1.5px;
}

.navbar-custom .navbar-brand-custom:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translate(-50%, -50%) scale(1.08);
}

.navbar-custom .navbar-center {
    flex-grow: 1;
    justify-content: center;
}

.navbar-custom .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.navbar-custom .nav-menu-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-base);
}

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

.navbar-custom .nav-menu-link:hover {
    color: var(--gold-primary);
}

.navbar-custom .nav-menu-link:hover::after {
    width: 100%;
}

.navbar-custom .nav-menu-link.active {
    color: var(--gold-primary);
    font-weight: 600;
}

.navbar-custom .nav-menu-link.active::after {
    width: 100%;
}

.navbar-custom .navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-custom .store-switch {
    position: relative;
}

.navbar-custom .store-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: var(--transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFFFFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.navbar-custom .store-select:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.navbar-custom .nav-icon-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-custom .nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
    position: relative;
}

.navbar-custom .nav-icon:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.navbar-custom .cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-primary);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.navbar-custom .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-base);
}

.navbar-custom .hamburger-line {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
    border-radius: 2px;
}

.navbar-custom .mobile-menu-toggle:hover .hamburger-line {
    background: var(--gold-primary);
}

.navbar-custom .dropdown-menu {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.navbar-custom .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.navbar-custom .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 1.5rem;
}

.navbar-custom .dropdown-item svg {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.navbar-custom .dropdown-item:hover svg {
    opacity: 1;
}

.navbar-custom .dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.1;
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-custom .dropdown-item.text-warning {
    color: #FFC107 !important;
}

.navbar-custom .dropdown-item.text-danger {
    color: #dc3545 !important;
}



.navbar-custom.scrolled .logo-main {
    height: 60px !important;
}


.navbar-custom .navbar-brand-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    display: none;
}

.navbar-custom.scrolled .navbar-brand-custom::before {
    width: 50px;
    height: 50px;
}

.navbar-custom .navbar-brand-custom:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.navbar-custom .navbar-wrapper,
.navbar-custom .container-fluid .navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    height: auto;
    position: relative;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: padding;
}

.navbar-custom.scrolled .navbar-wrapper {
    padding: 0.5rem 1.5rem;
}

.navbar-custom .logo-default,
.navbar-custom .logo-scrolled {
    display: none !important;
}

.navbar-custom .cart-icon {
    position: relative;
}

.navbar-custom .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFBF00 100%);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    padding: 0 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-custom .cart-badge:empty {
    display: none;
}

.navbar-custom .cart-badge.updating {
    animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.6);
    }
}

.navbar-custom .nav-icon:hover .cart-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

@media (min-width: 1200px) {
    .navbar-custom .logo-main {
        height: 100px !important;
    }
    
    .navbar-custom.scrolled .logo-main {
        height: 80px !important;
    }
}

@media (max-width: 991px) {

    

    

    .navbar-custom.scrolled .logo-main {
        height: 85px !important;
    }
    
    .navbar-custom .navbar-brand-custom::before {
        width: 100px;
        height: 100px;
    }
    
    .navbar-custom.scrolled .navbar-brand-custom::before {
        width: 80px;
        height: 80px;
    }
    
    .navbar-custom .navbar-brand-custom::after {
        width: 105px;
        height: 105px;
    }
    
    .navbar-custom.scrolled .navbar-brand-custom::after {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 767px) {

    
    .navbar-custom .navbar-wrapper {
        padding: 0 1rem;
        gap: 1rem;
    }
    

    
    .navbar-custom.scrolled .logo-main {
        height: 75px !important;
    }
    
    .navbar-custom .navbar-brand-custom::before {
        width: 88px;
        height: 88px;
    }
    
    .navbar-custom.scrolled .navbar-brand-custom::before {
        width: 72px;
        height: 72px;
    }
    
    .navbar-custom .navbar-brand-custom::after {
        width: 93px;
        height: 93px;
    }
    
    .navbar-custom.scrolled .navbar-brand-custom::after {
        width: 77px;
        height: 77px;
    }
    
    .navbar-custom .nav-icon-group {
        gap: 0.5rem;
    }
    
    .navbar-custom .nav-icon {
        width: 36px;
        height: 36px;
    }
    
    .navbar-custom .nav-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .navbar-custom .cart-badge {
        font-size: 10px;
        min-width: 18px;
        height: 18px;
        top: -3px;
        right: -3px;
    }
}

@media (max-width: 575px) {


    
    .navbar-custom.scrolled .logo-main {
        height: 68px !important;
    }
    
    .navbar-custom .navbar-brand-custom::before {
        width: 80px;
        height: 80px;
    }
    
    .navbar-custom.scrolled .navbar-brand-custom::before {
        width: 65px;
        height: 65px;
    }
    
    .navbar-custom .navbar-brand-custom::after {
        width: 85px;
        height: 85px;
    }
    
    .navbar-custom.scrolled .navbar-brand-custom::after {
        width: 70px;
        height: 70px;
    }
}

/* ========================================
   END OF NAVBAR STYLES
   ======================================== */


/* ========================================
   MOBILE MENU (OUTSIDE NAVBAR)
   ======================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #1A1A1A;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.mobile-menu-close:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
}

.mobile-nav-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 2rem;
}

.mobile-store-switch {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    margin-top: auto;
}

.mobile-store-switch label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 575px) {
    .mobile-menu {
        width: 280px;
    }
}







.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
    padding: 2rem 0 2rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--black) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

.hero-image {
    /* position: relative; */
    z-index: 2;
    padding: 2rem;
}

.honey-jar-image {
    /* border-radius: var(--radius-xl); */
    /* box-shadow: var(--shadow-xl); */
    /* animation: float 6s ease-in-out infinite; */
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-medium);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 9999;
}

.scroll-arrow {
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


.trust-strip {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

.trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-primary) 50%, 
        transparent 100%);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.trust-item:hover .trust-icon-wrapper {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.trust-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon-wrapper::before {
    opacity: 1;
    inset: -8px;
}

.trust-icon-svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-dark);
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon-svg {
    stroke: var(--black);
    transform: scale(1.1);
}

.trust-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: color var(--transition-base);
}

.trust-item:hover .trust-text {
    color: var(--gold-dark);
}

.trust-subtext {
    font-size: 0.8125rem;
    color: var(--gray-medium);
    font-weight: 500;
    transition: color var(--transition-base);
}

.trust-item:hover .trust-subtext {
    color: var(--gray-dark);
}

@media (min-width: 768px) {
    .trust-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: linear-gradient(180deg, 
            transparent 0%, 
            var(--gray-light) 50%, 
            transparent 100%);
    }
}

@media (max-width: 767px) {
    .trust-strip {
        padding: 2rem 0;
    }

    .trust-item {
        padding: 1.25rem 0.75rem;
    }

    .trust-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .trust-icon-svg {
        width: 28px;
        height: 28px;
    }

    .trust-text {
        font-size: 0.9375rem;
    }

    .trust-subtext {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .trust-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .trust-icon-svg {
        width: 24px;
        height: 24px;
    }

    .trust-text {
        font-size: 0.875rem;
    }

    .trust-subtext {
        font-size: 0.7rem;
    }
}

.section-products,
.section-benefits,
.section-stories,
.section-health {
    padding: var(--spacing-xl) 0;
}

.section-process,
.section-instagram {
    padding: var(--spacing-xl) 0;
    background: var(--gold-pale);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}


.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--gray-light);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--gold-pale);
}

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

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.product-rating {
    font-size: 14px;
    margin-bottom: 0.75rem;
    color: var(--honey-amber);
}

.rating-count {
    color: var(--gray-medium);
    font-size: 12px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.btn-product {
    width: 100%;
    padding: 0.75rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-product:hover {
    background: var(--gold-primary);
    color: var(--black);
}


.process-timeline {
    margin-bottom: 4rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    height: 100%;
    border: 2px solid var(--gold-light);
    transition: var(--transition-base);
}

.process-step::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold-primary), var(--honey-amber));
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.process-step:hover::before {
    opacity: 0.2;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: var(--transition-base);
    z-index: 1;
}

.process-step:hover .process-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    transition: all var(--transition-base);
}

.process-step:hover .process-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.process-icon-svg {
    width: 40px;
    height: 40px;
    stroke: var(--black);
    stroke-width: 2;
    transition: all var(--transition-base);
}

.process-step:hover .process-icon-svg {
    transform: scale(1.1);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
    transition: color var(--transition-base);
}

.process-step:hover .process-title {
    color: var(--gold-dark);
}

.process-description {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color var(--transition-base);
}

.process-step:hover .process-description {
    color: var(--charcoal);
}

.process-detail-badge {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.process-step:hover .process-detail-badge {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 992px) {
    .process-timeline .col-lg-3:not(:last-child) .process-step::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(90deg, var(--gold-primary) 0%, transparent 100%);
        transform: translateY(-50%);
        opacity: 0.3;
        transition: opacity var(--transition-base);
    }

    .process-timeline .col-lg-3:not(:last-child) .process-step:hover::after {
        opacity: 0.6;
    }
}

.process-video-section {
    margin-top: 4rem;
}

.video-placeholder {
    border-radius: var(--radius-xl);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
        background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 191, 0, 0.1) 100%); */
    animation: shimmer 3s infinite;
    background: linear-gradient(135deg, #b8962e29 0%, #d4af3733 100%)
}

@keyframes shimmer {
    0%, 100% { 
        transform: translateX(-100%); 
    }
    50% { 
        transform: translateX(100%); 
    }
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-placeholder:hover .play-button {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.play-button svg {
    margin-left: 4px;
}

.video-label {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-details {
    padding: 2rem;
}

.process-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.quality-list li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--gray-dark);
    transition: all var(--transition-base);
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    color: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.quality-list li:hover {
    color: var(--gold-dark);
    transform: translateX(5px);
}

.quality-list li:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@media (max-width: 991px) {
    .process-icon-wrapper {
        width: 64px;
        height: 64px;
    }

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

    .process-details {
        margin-top: 2rem;
        padding: 1rem 0;
    }
}

@media (max-width: 767px) {
    .process-step {
        padding: 2rem 1.5rem;
    }

    .process-detail-badge {
        opacity: 1;
        transform: translateY(0);
    }

    .play-button {
        width: 64px;
        height: 64px;
    }

    .video-label {
        font-size: 1rem;
    }

    .process-details h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .process-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .process-icon-svg {
        width: 28px;
        height: 28px;
    }

    .process-title {
        font-size: 1.125rem;
    }

    .process-description {
        font-size: 0.875rem;
    }
}



.section-benefits {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card-horizontal {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-base);
}

.benefit-card-horizontal:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.benefit-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.benefit-card-horizontal:hover .benefit-icon-wrapper {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.benefit-icon-svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-dark);
    transition: all var(--transition-base);
}

.benefit-card-horizontal:hover .benefit-icon-svg {
    stroke: var(--black);
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    transition: color var(--transition-base);
}

.benefit-card-horizontal:hover .benefit-title {
    color: var(--gold-dark);
}

.benefit-text {
    color: var(--gray-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.benefits-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.benefits-image-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 50%, var(--gold-pale) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.benefits-product-image {
    position: relative;
    z-index: 1;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
    transition: transform var(--transition-base);
}

.benefits-product-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.benefits-badge {
    position: absolute;
    bottom: 2rem;
    right: 0;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    color: var(--black);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefits-badge svg {
    stroke: var(--black);
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gold-light);
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.stat-box:hover .stat-icon {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    transform: scale(1.1) rotate(10deg);
}

.stat-icon svg {
    stroke: var(--gold-dark);
    transition: stroke var(--transition-base);
}

.stat-box:hover .stat-icon svg {
    stroke: var(--black);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

.stat-box:hover .stat-number {
    color: var(--gold-dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .benefits-list {
        gap: 1.5rem;
    }

    .benefits-image-circle {
        width: 280px;
        height: 280px;
    }

    .benefits-product-image {
        max-width: 220px;
    }

    .benefits-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

@media (max-width: 767px) {
    .benefits-list {
        gap: 1rem;
    }

    .benefit-card-horizontal {
        padding: 1.25rem;
    }

    .benefit-card-horizontal:hover {
        transform: translateY(-5px);
    }

    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .benefit-icon-svg {
        width: 24px;
        height: 24px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-text {
        font-size: 0.875rem;
    }

    .benefits-image-wrapper {
        padding: 2rem 0;
    }

    .benefits-image-circle {
        width: 220px;
        height: 220px;
    }

    .benefits-product-image {
        max-width: 180px;
    }

    .benefits-badge {
        bottom: 1rem;
        right: -10px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .benefits-badge svg {
        width: 16px;
        height: 16px;
    }

    .benefits-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .benefit-card-horizontal {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefits-image-circle {
        width: 200px;
        height: 200px;
    }

    .benefits-product-image {
        max-width: 160px;
    }
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-light);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-health {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gold-pale) 100%);
    position: relative;
    overflow: hidden;
}

.health-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.health-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
    border-radius: var(--radius-xl);
    transform: rotate(-3deg);
}

.health-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base);
}

.health-image-wrapper:hover .health-main-image {
    transform: scale(1.02);
}

.health-badge {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.badge-text {
    font-weight: 700;
    font-size: 1rem;
}

.health-float-card {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.health-float-card svg {
    stroke: var(--gold-primary);
}

.health-float-1 {
    top: 2rem;
    right: 2rem;
    animation: float 4s ease-in-out infinite;
}

.health-float-2 {
    bottom: 2rem;
    right: 3rem;
    animation: float 5s ease-in-out infinite 1s;
}

.health-content {
    padding: 2rem;
}

.health-intro {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.health-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.health-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-base);
}

.health-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.health-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.health-item:hover .health-icon-wrapper {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.health-icon-svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-dark);
    transition: all var(--transition-base);
}

.health-item:hover .health-icon-svg {
    stroke: var(--black);
    transform: scale(1.1);
}

.health-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.health-item:hover .health-icon {
    transform: scale(1.2);
}

.health-item-content {
    flex: 1;
}

.health-item-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    transition: color var(--transition-base);
}

.health-item:hover .health-item-content h5 {
    color: var(--gold-dark);
}

.health-item-content p {
    color: var(--gray-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.health-cta {
    margin-top: 2rem;
}

.health-cta .btn-primary-gold {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

@media (max-width: 991px) {
    .health-image-wrapper {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .health-badge {
        bottom: 2rem;
        left: 2rem;
        padding: 0.875rem 1.25rem;
    }

    .health-float-1,
    .health-float-2 {
        display: none;
    }

    .health-content {
        padding: 1rem 0;
    }

    .health-benefits-list {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .health-image-wrapper {
        padding: 1rem;
    }

    .health-badge {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
    }

    .badge-text {
        font-size: 0.875rem;
    }

    .health-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .health-benefits-list {
        gap: 1.25rem;
    }

    .health-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .health-item:hover {
        transform: translateY(-5px);
    }

    .health-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .health-icon-svg {
        width: 24px;
        height: 24px;
    }

    .health-item-content h5 {
        font-size: 1rem;
    }

    .health-item-content p {
        font-size: 0.875rem;
    }

    .health-cta .btn-primary-gold {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .health-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .health-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .health-icon-svg {
        width: 28px;
        height: 28px;
    }
}


.story-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: 100%;
    border: 1px solid var(--gray-light);
    transition: var(--transition-base);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.story-rating {
    color: var(--honey-amber);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.story-content {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gold-primary);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-weight: 600;
    color: var(--charcoal);
}

.author-badge {
    font-size: 12px;
    color: var(--gray-medium);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.instagram-item {
    aspect-ratio: 1;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
}


.section-cta {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.cta-box {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 1rem 3rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}


.btn-primary-gold {
    background: var(--gold-primary);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-primary-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background: transparent;
    color: var(--charcoal);
    padding: 1rem 2rem;
    border: 2px solid var(--charcoal);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 991px) {

    
    .hero-title {
        font-size: 3rem;
    }
    

    .section-products,
    .section-benefits,
    .section-process,
    .section-stories,
    .section-health {
        padding: var(--spacing-lg) 0;
    }
    
    .process-video-section {
        margin-top: 3rem;
    }
    
    .health-content {
        margin-top: 2rem;
    }
    
    .cta-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {

    
    .navbar-wrapper {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .nav-icon-group {
        gap: 0.5rem;
    }
    
    .hero-section {
        padding: 2rem 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    

    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .trust-item {
        padding: 0.75rem;
    }
    
    .trust-icon {
        font-size: 1.5rem;
    }
    
    .trust-text {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-details {
        padding: 1rem 0;
    }
    
    .benefit-card,
    .story-card {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {

    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: space-between;
        width: 100%;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


.text-gold {
    color: var(--gold-primary);
}

.bg-gold {
    background-color: var(--gold-primary);
}

.bg-cream {
    background-color: var(--cream);
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.rounded-custom {
    border-radius: var(--radius-lg);
}








.newsletter-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gold-pale) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.newsletter-icon svg {
    color: var(--black);
}

.newsletter-text {
    text-align: center;
    margin-bottom: 2.5rem;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    pointer-events: none;
    z-index: 1;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem 1rem 3.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-base);
    color: var(--charcoal);
    font-family: var(--font-primary);
}

.newsletter-input::placeholder {
    color: var(--gray-medium);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    color: var(--black);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    font-family: var(--font-primary);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
}

.newsletter-btn svg {
    transition: transform var(--transition-base);
}

.newsletter-btn:hover svg {
    transform: translateX(4px);
}

.newsletter-success,
.newsletter-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.newsletter-success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--success);
    color: var(--success);
}

.newsletter-error {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid var(--danger);
    color: var(--danger);
}

.newsletter-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .newsletter-card {
        padding: 2.5rem 2rem;
    }

    .newsletter-title {
        font-size: 1.875rem;
    }

    .newsletter-description {
        font-size: 1rem;
    }

    .newsletter-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: var(--spacing-lg) 0;
    }

    .newsletter-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .newsletter-icon {
        width: 64px;
        height: 64px;
    }

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

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

    .newsletter-description {
        font-size: 0.9375rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input {
        padding: 1rem 1.25rem;
        padding-left: 3.25rem;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 575px) {
    .newsletter-card {
        padding: 1.5rem 1rem;
    }

    .newsletter-title {
        font-size: 1.25rem;
    }
}









/* ========================================
   WHY CHOOSE US SECTION - COMPLETE CSS
   Premium Photo Design with Enhanced Effects
   ======================================== */

/* ========================================
   SECTION CONTAINER
   ======================================== */

.section-why-choose {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gold-pale) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.section-why-choose::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Top border accent */
.section-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
}

.why-choose-wrapper {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   LEFT SIDE - ENHANCED IMAGE CONTAINER
   ======================================== */

.why-image-container {
    position: relative;
    height: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Multi-layer animated background */
.why-image-bg {
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.25) 0%, 
        rgba(255, 191, 0, 0.12) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 6s ease-in-out infinite;
    z-index: 0;
}

/* Outer rotating circle */
.why-image-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotate-circle 20s linear infinite;
}

/* Inner rotating circle (opposite direction) */
.why-image-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    animation: rotate-circle-reverse 15s linear infinite;
}

/* Background pulse animation */
@keyframes pulse-bg {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.9; 
    }
}

/* Clockwise rotation */
@keyframes rotate-circle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Counter-clockwise rotation */
@keyframes rotate-circle-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* ========================================
   PREMIUM PHOTO FRAME
   ======================================== */

.why-image-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(251, 247, 237, 0.95) 100%);
    border-radius: 28px;
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.3),
        0 10px 28px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Animated glow border effect */
.why-image-inner::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, 
        var(--gold-primary) 0%, 
        var(--honey-amber) 50%, 
        var(--gold-primary) 100%);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: all 0.6s ease;
}

.why-image-inner:hover::before {
    opacity: 1;
    animation: border-glow 2.5s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { 
        opacity: 0.6;
        filter: blur(12px); 
    }
    50% { 
        opacity: 1;
        filter: blur(16px); 
    }
}

/* Inner frame accent line */
.why-image-inner::after {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.why-image-inner:hover::after {
    border-color: rgba(212, 175, 55, 0.3);
}

/* ========================================
   PRODUCT IMAGE
   ======================================== */

.why-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: 
        drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15))
        contrast(1.05)
        saturate(1.12);
    position: relative;
}

/* Image hover effect */
.why-image-container:hover .why-main-image {
    transform: scale(1.02) translateY(-6px);
    filter: 
        drop-shadow(0 25px 60px rgba(0, 0, 0, 0.2))
        contrast(1.08)
        saturate(1.18);
}

/* Frame hover effect */
.why-image-inner:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 90px rgba(212, 175, 55, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

/* ========================================
   FLOATING BADGES (DESKTOP)
   ======================================== */

.floating-badges-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Product Count Badge */
.product-count-badge {
    position: absolute;
    top: 8%;
    left: -2%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    color: var(--black);
    padding: 1.125rem 1.75rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-badge-1 4.5s ease-in-out infinite;
    pointer-events: all;
    cursor: default;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-count-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Quality Assurance Badge */
.quality-assurance-badge {
    position: absolute;
    bottom: 12%;
    right: -4%;
    background: linear-gradient(135deg, #ffffff 0%, #fffcf5 100%);
    padding: 1.125rem 1.75rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    animation: float-badge-2 5.5s ease-in-out infinite 1s;
    pointer-events: all;
    cursor: default;
}

.quality-assurance-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 6px 16px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

/* Badge floating animations */
@keyframes float-badge-1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

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

/* Badge icons */
.product-count-badge svg,
.quality-assurance-badge svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.product-count-badge svg {
    stroke: var(--black);
}

.quality-assurance-badge svg {
    stroke: var(--gold-primary);
}

/* Badge text */
.product-count-badge strong,
.quality-assurance-badge strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.125rem;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.product-count-badge span,
.quality-assurance-badge span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.product-count-badge span {
    opacity: 0.9;
}

.quality-assurance-badge strong {
    color: var(--charcoal);
}

.quality-assurance-badge span {
    color: var(--gray-medium);
}



.mobile-badges-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-badge {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    color: var(--black);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-badge:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 28px rgba(212, 175, 55, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-badge:last-child {
    background: linear-gradient(135deg, #ffffff 0%, #fffcf5 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.mobile-badge svg {
    flex-shrink: 0;
    stroke: var(--black);
    width: 20px;
    height: 20px;
}

.mobile-badge:last-child svg {
    stroke: var(--gold-primary);
}



.benefits-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-item-compact {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-base);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.benefit-item-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.benefit-item-compact:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
    border-color: var(--gold-primary);
}

.benefit-item-compact:hover::before {
    opacity: 0.05;
}

.benefit-icon-compact {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.benefit-item-compact:hover .benefit-icon-compact {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--honey-amber) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.benefit-icon-compact svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-dark);
    transition: stroke var(--transition-base);
}

.benefit-item-compact:hover .benefit-icon-compact svg {
    stroke: var(--black);
}

.benefit-content-compact {
    position: relative;
    z-index: 1;
    flex: 1;
}

.benefit-content-compact h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    transition: color var(--transition-base);
    line-height: 1.3;
}

.benefit-item-compact:hover .benefit-content-compact h4 {
    color: var(--gold-dark);
}

.benefit-content-compact p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
    transition: color var(--transition-base);
}

.benefit-item-compact:hover .benefit-content-compact p {
    color: var(--charcoal);
}



@media (max-width: 991px) {
    .section-why-choose {
        padding: 4rem 0;
    }
    
    .why-choose-wrapper {
        margin-top: 3rem;
    }
    
    .why-image-container {
        min-height: 450px;
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .why-image-bg {
        width: 380px;
        height: 380px;
    }
    
    .why-image-bg::before {
        width: 300px;
        height: 300px;
    }
    
    .why-image-bg::after {
        width: 240px;
        height: 240px;
    }
    
    .why-image-inner {
        max-width: 420px;
        padding: 2rem;
    }
    
    .product-count-badge,
    .quality-assurance-badge {
        position: relative;
        display: inline-flex;
        margin: 1rem 0.5rem 0 0;
        animation: none;
    }
}



@media (max-width: 767px) {
    .section-why-choose {
        padding: 3rem 0;
    }
    
    .why-choose-wrapper {
        margin-top: 2.5rem;
    }
    
    .why-image-container {
        min-height: 380px;
        margin-bottom: 2.5rem;
        padding: 1rem;
    }
    
    .why-image-bg {
        width: 320px;
        height: 320px;
    }
    
    .why-image-bg::before {
        width: 260px;
        height: 260px;
    }
    
    .why-image-bg::after {
        width: 200px;
        height: 200px;
    }
    
    .why-image-inner {
        max-width: 360px;
        padding: 1.75rem;
        border-radius: 20px;
    }
    
    .benefit-item-compact {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .benefit-icon-compact {
        width: 56px;
        height: 56px;
    }
    
    .benefit-icon-compact svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-content-compact h4 {
        font-size: 1.125rem;
    }
    
    .benefit-content-compact p {
        font-size: 0.9375rem;
    }
    
    .mobile-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}



@media (max-width: 575px) {
    .why-image-inner {
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .why-image-inner::after {
        inset: 0.75rem;
    }
    
    .benefit-item-compact {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.25rem;
    }
    
    .mobile-badges-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .mobile-badge {
        width: 100%;
        justify-content: center;
    }
}



@media (prefers-reduced-motion: reduce) {
    .why-image-bg,
    .why-image-bg::before,
    .why-image-bg::after,
    .product-count-badge,
    .quality-assurance-badge,
    .why-image-inner::before {
        animation: none !important;
    }
    
    .why-image-inner,
    .why-main-image,
    .benefit-item-compact,
    .benefit-icon-compact {
        transition-duration: 0.05s !important;
    }
}

@media (prefers-contrast: high) {
    .why-image-inner,
    .product-count-badge,
    .quality-assurance-badge,
    .mobile-badge,
    .benefit-item-compact {
        border-width: 3px;
    }
}

.product-count-badge:focus-visible,
.quality-assurance-badge:focus-visible,
.mobile-badge:focus-visible {
    outline: 3px solid var(--gold-primary);
    outline-offset: 4px;
}

@media print {
    .section-why-choose::after,
    .why-image-bg,
    .why-image-bg::before,
    .why-image-bg::after,
    .why-image-inner::before {
        display: none;
    }
    
    .why-image-inner,
    .benefit-item-compact {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}



















.section-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        #f8f5ed 0%, 
        #ffffff 50%,
        #fdfcfa 100%);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-primary) 20%, 
        var(--honey-amber) 50%,
        var(--gold-primary) 80%,
        transparent 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.section-cta::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.08) 0%, 
        transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-bg 15s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}



.cta-box {
    background: linear-gradient(145deg, 
        var(--gold-primary) 0%, 
        var(--honey-amber) 100%);
    padding: 4.5rem 3.5rem;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.35),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    isolation: isolate;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='46' viewBox='0 0 40 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M20 0l20 23-20 23L0 23z' stroke='%23000000' stroke-opacity='0.05' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: shine 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-box > * {
    position: relative;
    z-index: 2;
}



.cta-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--black);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 4px 16px rgba(255, 255, 255, 0.3);
    line-height: 1.1;
}

.cta-text {
    font-size: 1.35rem;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}



.btn-cta {
    padding: 1.25rem 3.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-primary);
    letter-spacing: 0.3px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:active {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.btn-cta:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}


.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.75);
    font-size: 0.9375rem;
    font-weight: 600;
}

.cta-feature-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    flex-shrink: 0;
}


@media (max-width: 991px) {
    .section-cta {
        padding: 4rem 0;
    }
    
    .section-cta::after {
        width: 500px;
        height: 500px;
        top: -150px;
        right: -150px;
    }
    
    .cta-box {
        padding: 3.5rem 2.5rem;
        border-radius: 28px;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .btn-cta {
        padding: 1.125rem 3rem;
        font-size: 1.125rem;
    }
    
    .cta-features {
        gap: 1.5rem;
    }

    .footer-contact li span{
            word-break: break-word;
    }

    .honey-jar-image{
        object-fit: cover;
    object-position: top;
    opacity: 0.5;
    }

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

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

    .hero-content{
        padding: 3rem;
        text-align: center;
    }

    .stat-label{
        color: #000000;
        font-size: 0.6rem;
    }

    .scroll-indicator{
        color: #000000;
    }

    body{
        padding-top: 102px;
    }

    .navbar-custom .logo-main{
        height: 70px !important;
    }
}



@media (max-width: 767px) {
    .section-cta {
        padding: 3rem 0;
    }
    
    .section-cta::before {
        height: 2px;
    }
    
    .section-cta::after {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }
    
    .cta-box {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
        letter-spacing: -0.5px;
    }
    
    .cta-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .btn-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-feature-item {
        font-size: 0.875rem;
    }
}



@media (max-width: 575px) {
    .section-cta {
        padding: 2.5rem 0;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}


@media (prefers-reduced-motion: reduce) {
    .section-cta::after,
    .cta-box::after {
        animation: none !important;
    }
    
    .btn-cta,
    .btn-cta svg {
        transition-duration: 0.05s !important;
    }
}

@media (prefers-contrast: high) {
    .cta-box {
        border-width: 3px;
    }
    
    .btn-cta {
        border: 2px solid var(--white);
    }
    
    .btn-cta:hover {
        border-color: var(--black);
    }
}

@media (prefers-color-scheme: dark) {
    .section-cta {
        background: linear-gradient(180deg, 
            #2a2520 0%, 
            #1a1816 50%,
            #0f0e0d 100%);
    }
    
    .cta-title {
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    
    .cta-text {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .btn-cta {
        background: var(--white);
        color: var(--black);
    }
    
    .btn-cta:hover {
        background: var(--gold-primary);
        color: var(--black);
    }
}

@media print {
    .section-cta::before,
    .section-cta::after,
    .cta-box::before,
    .cta-box::after {
        display: none;
    }
    
    .cta-box {
        background: #f5f5f5;
        box-shadow: none;
        border: 2px solid #ccc;
    }
    
    .cta-title,
    .cta-text {
        color: #000;
    }
    
    .btn-cta {
        display: none;
    }
}



.btn-cta.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn-cta.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}


.cta-box.has-bg-image {
    background-image: 
        linear-gradient(145deg, 
            rgba(212, 175, 55, 0.95) 0%, 
            rgba(255, 191, 0, 0.95) 100%),
        url('/path/to/honey-texture.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.btn-cta.btn-outline {
    background: transparent;
    color: var(--black);
    border: 3px solid var(--black);
}

.btn-cta.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.cta-box.cta-hero {
    padding: 5.5rem 4rem;
}

.cta-box.cta-hero .cta-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
}

.cta-box.cta-hero .cta-text {
    font-size: 1.5rem;
}

.cta-box.cta-hero .btn-cta {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}