:root {
    --primary-orange: #E6731B;
    --primary-orange-hover: #D06312;
    --title-brown: #7E290F;
    --heading-dark: #54250E;
    --text-body: #6E432A;
    --text-muted: #8C5F43;
    --bg-topbar: #F8CDA6;
    --bg-hero: #FED7B0;
    --bg-features: #FED3A5;
    --bg-category: #FFE4C8;
    --bg-featured: #FFF5EB;
    --bg-promise: #FDD0A3;
    --bg-testimonials: #FFF5EB;
    --bg-footer: #FED5AB;
    --bg-footer-bottom: #FDCB99;
    --card-border: #F1E3D4;
    --divider-color: rgba(168, 92, 45, 0.25);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-hero);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.custom-container {
    max-width: 1040px;
    padding-left: 20px;
    padding-right: 20px;
}

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

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--bg-topbar);
    border-bottom: 1px solid rgba(160, 80, 30, 0.15);
    padding: 6px 0;
    font-size: 11px;
    color: #6D3217;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar i {
    color: #7E290F;
    margin-right: 6px;
    font-size: 11px;
}

.top-bar-divider {
    color: rgba(109, 50, 23, 0.35);
    font-weight: 300;
}

.top-bar-right a:hover {
    color: var(--primary-orange);
}

/* ==========================================================================
   Main Navbar
   ========================================================================== */
.main-navbar {
    background-color: var(--bg-hero);
    padding: 10px 0 8px 0;
    position: relative;
    z-index: 1000;
}

.navbar-logo-img,
.footer-logo-img,
.preloader-logo-img {
    height: 52px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.footer-logo-img {
    height: 58px;
    max-width: 165px;
    margin-bottom: 12px;
}

.navbar-brand:hover .navbar-logo-img,
.footer-brand-wrap a:hover .footer-logo-img {
    transform: scale(1.04);
}

.main-navbar .navbar-nav {
    gap: 24px;
}

.main-navbar .nav-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--heading-dark) !important;
    padding: 4px 0 !important;
    position: relative;
    transition: color 0.2s;
}

.main-navbar .nav-link:hover {
    color: var(--primary-orange) !important;
}

.main-navbar .nav-link.active {
    color: var(--heading-dark) !important;
    font-weight: 600;
}

.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.navbar-icons {
    gap: 18px;
}

.navbar-icons .nav-icon {
    color: var(--heading-dark);
    font-size: 16px;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.navbar-icons .nav-icon:hover {
    color: var(--primary-orange);
    transform: scale(1.08);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--primary-orange);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--bg-hero);
}

.navbar-toggler {
    border: 1.5px solid rgba(126, 41, 15, 0.3);
    padding: 5px 8px;
    border-radius: 8px;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237E290F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Top Bar & Navbar Mobile Styles */
@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse {
        background: rgba(254, 215, 176, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(160, 80, 30, 0.15);
        border-radius: 12px;
        padding: 16px 20px;
        margin-top: 12px;
        box-shadow: 0 10px 25px rgba(84, 37, 14, 0.08);
    }
    
    .main-navbar .navbar-nav {
        gap: 12px;
        align-items: flex-start !important;
    }
    
    .main-navbar .nav-link {
        padding: 6px 0 !important;
        font-size: 14.5px;
        width: 100%;
    }
    
    .navbar-icons {
        margin-left: auto;
        margin-right: 12px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        font-size: 10.5px;
        padding: 5px 0;
    }
    
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
    
    .top-bar-left {
        justify-content: center;
        gap: 8px;
    }
    
    .top-bar-right {
        display: none;
    }
    
    .navbar-logo-img {
        height: 44px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .top-bar-left span:first-child {
        display: inline-block;
    }
    .top-bar-left span.top-bar-divider:last-of-type,
    .top-bar-left a:last-child {
        display: none;
    }
}

/* ==========================================================================
   Page Banners (Sub-pages)
   ========================================================================== */
.page-banner-section {
    background-color: var(--bg-hero);
    padding: 35px 0 30px 0;
    border-bottom: 1px solid rgba(160, 80, 30, 0.12);
    text-align: center;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--title-brown);
    margin-bottom: 8px;
}

.page-banner-desc {
    font-size: 13px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 12px auto;
}

.breadcrumb-trail {
    font-size: 11.5px;
    color: var(--text-muted);
}

.breadcrumb-trail a {
    color: var(--heading-dark);
    font-weight: 500;
}

.breadcrumb-trail a:hover {
    color: var(--primary-orange);
}

.breadcrumb-sep {
    margin: 0 8px;
    color: var(--text-muted);
}

.breadcrumb-trail .current {
    color: var(--primary-orange);
    font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background-color: var(--bg-hero);
    position: relative;
    padding: 25px 0 0 0;
    overflow: hidden;
}

.hero-leaf-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.35;
}

.hero-leaf-left {
    top: 15px;
    left: 0;
    width: 60px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 250'%3E%3Cpath d='M10,240 Q30,160 50,80 Q60,40 50,10' stroke='%23C97842' stroke-width='2' fill='none'/%3E%3Cpath d='M50,80 Q85,60 95,85 Q80,105 50,80' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3Cpath d='M40,130 Q5,110 0,135 Q15,155 40,130' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3Cpath d='M30,180 Q65,160 75,185 Q60,205 30,180' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.hero-leaf-right {
    top: 30px;
    right: 0;
    width: 60px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 250'%3E%3Cpath d='M90,240 Q70,160 50,80 Q40,40 50,10' stroke='%23C97842' stroke-width='2' fill='none'/%3E%3Cpath d='M50,80 Q15,60 5,85 Q20,105 50,80' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.hero-text-col {
    z-index: 2;
    padding-bottom: 25px;
}

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: #8C3815;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.14;
    color: var(--title-brown);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 12.5px;
    line-height: 1.55;
    color: #6E432A;
    margin-bottom: 22px;
    max-width: 400px;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-orange);
    color: #FFFFFF !important;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 24px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 14px rgba(230, 115, 27, 0.35);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn-shop-now:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 115, 27, 0.45);
}

.hero-image-col {
    z-index: 2;
    padding: 0;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   Features Bar
   ========================================================================== */
.features-section {
    background-color: var(--bg-features);
    padding: 22px 0;
    border-top: 1px solid rgba(160, 80, 30, 0.12);
    border-bottom: 1px solid rgba(160, 80, 30, 0.12);
}

.features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.feature-icon {
    color: var(--primary-orange);
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 2px;
}

.feature-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-divider {
    width: 1px;
    height: 38px;
    background-color: var(--divider-color);
}

/* ==========================================================================
   Shop by Category Section
   ========================================================================== */
.category-section {
    background-color: var(--bg-category);
    padding: 38px 0 45px 0;
    position: relative;
    overflow: hidden;
}

.cat-leaf-bg {
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.35;
    z-index: 1;
}

.cat-leaf-left {
    top: 50px;
    left: 0;
    width: 45px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M10,190 Q30,120 50,50' stroke='%23C97842' stroke-width='2' fill='none'/%3E%3Cpath d='M50,50 Q85,30 90,55 Q75,75 50,50' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3Cpath d='M35,110 Q5,90 0,115 Q15,135 35,110' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.cat-leaf-right {
    top: 50px;
    right: 0;
    width: 45px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M90,190 Q70,120 50,50' stroke='%23C97842' stroke-width='2' fill='none'/%3E%3Cpath d='M50,50 Q15,30 10,55 Q25,75 50,50' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.title-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: rgba(160, 80, 30, 0.4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--title-brown);
}

.category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.category-circle-wrapper {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 4px 14px rgba(230, 115, 27, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover .category-circle-wrapper,
.category-card.active .category-circle-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 22px rgba(230, 115, 27, 0.35);
    border-color: #A03D0C;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-label-wrapper {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--heading-dark);
}

.category-arrow-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.category-card:hover .category-arrow-btn,
.category-card.active .category-arrow-btn {
    background-color: var(--primary-orange);
    color: #FFFFFF;
}

.category-divider {
    width: 1px;
    height: 42px;
    background-color: var(--divider-color);
}

/* ==========================================================================
   Featured Products Section
   ========================================================================== */
.featured-section {
    background-color: var(--bg-featured);
    padding: 40px 0 50px 0;
    border-top: 1px solid rgba(160, 80, 30, 0.08);
}

.featured-header {
    margin-bottom: 25px;
}

.featured-title-wrap {
    display: flex;
    align-items: center;
}

.featured-title-wrap .title-line {
    width: 50px;
}

.btn-view-all {
    font-size: 11.5px;
    font-weight: 500;
    color: #6D3217;
    border: 1px solid #9C5F3A;
    padding: 5px 16px;
    border-radius: 20px;
    background-color: transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-view-all:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #FFFFFF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    transition: all 0.3s ease;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(180, 120, 80, 0.06);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(180, 120, 80, 0.16);
    border-color: rgba(230, 115, 27, 0.45);
}

.product-img-box {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #FFFFFF 0%, #F6EFE6 100%);
    position: relative;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img {
    transform: scale(1.08);
}

.product-details {
    padding: 15px 14px 18px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #FFFFFF;
}

.product-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 3px;
    line-height: 1.35;
    transition: color 0.2s;
}

.product-card:hover .product-name {
    color: var(--primary-orange);
}

.product-weight {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.product-rating .stars {
    color: var(--primary-orange);
    font-size: 10px;
    display: flex;
    gap: 2px;
}

.product-rating .rating-num {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

.product-price {
    font-size: 14.5px;
    font-weight: 700;
    color: #B33B12;
    margin-bottom: 12px;
}

.btn-add-cart {
    background-color: var(--primary-orange);
    color: #FFFFFF !important;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin-top: auto;
}

.btn-add-cart:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 115, 27, 0.35);
}

/* ==========================================================================
   NEW: Deal of the Day Banner Section
   ========================================================================== */
.deal-section {
    background-color: var(--bg-category);
    padding: 35px 0;
    border-top: 1px solid rgba(160, 80, 30, 0.1);
    border-bottom: 1px solid rgba(160, 80, 30, 0.1);
}

.deal-card-banner {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(180, 120, 80, 0.08);
}

.deal-badge {
    background-color: rgba(230, 115, 27, 0.15);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    letter-spacing: 0.5px;
}

.deal-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--title-brown);
    margin-top: 10px;
    margin-bottom: 10px;
}

.deal-desc {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 14px;
}

.deal-current-price {
    font-size: 22px;
    font-weight: 700;
    color: #B33B12;
}

.deal-original-price {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.deal-save-pill {
    background-color: #2E7D32;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
}

.timer-box {
    background: var(--bg-hero);
    border-radius: 8px;
    padding: 4px 10px;
    text-align: center;
    border: 1px solid var(--card-border);
}

.timer-num {
    font-weight: 700;
    font-size: 14px;
    color: var(--heading-dark);
    display: block;
    line-height: 1;
}

.timer-unit {
    font-size: 8.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.timer-colon {
    font-weight: 700;
    color: var(--heading-dark);
}

.deal-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(230, 115, 27, 0.25);
    background: #FFFFFF;
}

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

/* ==========================================================================
   Our Promise Section
   ========================================================================== */
.promise-section {
    background-color: var(--bg-promise);
    padding: 38px 0;
    border-top: 1px solid rgba(160, 80, 30, 0.12);
    border-bottom: 1px solid rgba(160, 80, 30, 0.12);
    position: relative;
    overflow: hidden;
}

.promise-leaf-bg {
    position: absolute;
    top: 20px;
    right: 0;
    width: 50px;
    height: 120px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M90,190 Q70,120 50,50' stroke='%23C97842' stroke-width='2' fill='none'/%3E%3Cpath d='M50,50 Q15,30 10,55 Q25,75 50,50' stroke='%23C97842' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.promise-layout {
    display: flex;
    align-items: center;
    gap: 25px;
}

.promise-img-col {
    flex: 0 0 210px;
}

.promise-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.promise-content-col {
    flex: 1;
    padding-right: 15px;
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;
    color: var(--title-brown);
    margin-bottom: 10px;
}

.promise-desc {
    font-size: 11.5px;
    line-height: 1.6;
    color: #5C321C;
    margin-bottom: 16px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-orange);
    color: #FFFFFF !important;
    font-size: 11.5px;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(230, 115, 27, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-learn-more:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
}

.promise-divider {
    width: 1px;
    height: 100px;
    background-color: var(--divider-color);
}

.promise-benefits-col {
    flex: 0 0 210px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promise-benefits-col .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promise-benefits-col .benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promise-benefits-col .benefit-text h6 {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 1px;
}

.promise-benefits-col .benefit-text p {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   NEW: Farm-to-Kitchen Journey Section
   ========================================================================== */
.journey-section {
    background-color: var(--bg-featured);
    padding: 45px 0;
}

.journey-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 10px rgba(180, 120, 80, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(180, 120, 80, 0.12);
}

.journey-step-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: rgba(230, 115, 27, 0.25);
}

.journey-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-hero);
    color: var(--primary-orange);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
    border: 1px solid rgba(230, 115, 27, 0.3);
}

.journey-step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 8px;
}

.journey-step-desc {
    font-size: 11px;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   NEW: Traditional Recipes Section
   ========================================================================== */
.recipes-section {
    background-color: var(--bg-category);
    padding: 45px 0;
}

.recipe-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 12px rgba(180, 120, 80, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(180, 120, 80, 0.12);
}

.recipe-img-box {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.recipe-card:hover .recipe-img {
    transform: scale(1.05);
}

.recipe-badge {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(40, 20, 10, 0.75);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}

.recipe-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recipe-meta {
    font-size: 10px;
    color: var(--text-muted);
}

.recipe-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--title-brown);
    margin-bottom: 6px;
}

.recipe-desc {
    font-size: 11.5px;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.btn-recipe-view {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
}

.btn-recipe-view:hover {
    transform: translateX(3px);
}

/* ==========================================================================
   NEW: Quality Certifications Strip
   ========================================================================== */
.certifications-section {
    background-color: var(--bg-features);
    padding: 25px 0;
    border-top: 1px solid rgba(160, 80, 30, 0.12);
    border-bottom: 1px solid rgba(160, 80, 30, 0.12);
}

.certifications-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.certification-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 170px;
}

.cert-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(180, 120, 80, 0.15);
    flex-shrink: 0;
}

.cert-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 1px;
}

.cert-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-testimonials);
    padding: 38px 0 45px 0;
}

.testimonials-header {
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 0;
}

.testimonials-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.testimonial-arrow-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    border: none;
    color: #FFFFFF;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(230, 115, 27, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
}

.testimonial-arrow-btn:hover {
    background-color: var(--primary-orange-hover);
    transform: scale(1.1);
}

.testimonials-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonials-cards-row::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(180, 120, 80, 0.05);
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-body {
    flex: 1;
}

.testimonial-quote {
    font-size: 10.5px;
    line-height: 1.4;
    color: #5C321C;
    margin-bottom: 6px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    font-size: 11px;
    font-weight: 700;
    color: var(--heading-dark);
}

.testimonial-stars {
    color: var(--primary-orange);
    font-size: 9px;
    display: flex;
    gap: 2px;
}

/* ==========================================================================
   NEW: FAQ Accordion Section
   ========================================================================== */
.faq-section {
    background-color: var(--bg-featured);
    padding: 45px 0;
}

.faq-accordion-box {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 14px rgba(230, 115, 27, 0.12);
}

.faq-header {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-dark);
    margin-bottom: 0;
}

.faq-toggle-icon {
    color: var(--primary-orange);
    font-size: 11px;
}

.faq-body {
    padding: 0 18px 14px 18px;
}

.faq-answer {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 0;
}

/* ==========================================================================
   Shop Page Sidebar & Toolbar
   ========================================================================== */
.shop-sidebar {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(180, 120, 80, 0.05);
}

.sidebar-widget-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-dark);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 12px;
}

.sidebar-search-box {
    position: relative;
}

.sidebar-search-box input {
    font-size: 12px;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 7px 35px 7px 14px;
}

.sidebar-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 12px;
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li {
    margin-bottom: 6px;
}

.shop-cat-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-body);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.shop-cat-filter:hover,
.shop-cat-filter.active {
    background-color: var(--bg-hero);
    color: var(--primary-orange);
    font-weight: 600;
}

.cat-count {
    background: #F4E8DC;
    font-size: 10px;
    padding: 1px 7px;
    border-radius: 10px;
    color: var(--text-muted);
}

.shop-toolbar {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
}

.toolbar-results-text {
    font-size: 12.5px;
    color: var(--text-body);
}

.shop-page-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ==========================================================================
   About Page Components
   ========================================================================== */
.about-img-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 30px rgba(180, 120, 80, 0.12);
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.impact-counter-strip {
    background-color: var(--bg-category);
    border: 1px solid var(--card-border);
}

.impact-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--title-brown);
    line-height: 1;
    margin-bottom: 4px;
}

.impact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--heading-dark);
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(180, 120, 80, 0.1);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--title-brown);
}

/* ==========================================================================
   Contact Page Components
   ========================================================================== */
.contact-info-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(180, 120, 80, 0.05);
    transition: transform 0.2s;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-card-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 6px;
}

.contact-form-box,
.contact-wholesale-box {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    box-shadow: 0 3px 12px rgba(180, 120, 80, 0.05);
}

/* ==========================================================================
   Checkout Page Components
   ========================================================================== */
.checkout-form-box,
.checkout-summary-box {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    box-shadow: 0 3px 14px rgba(180, 120, 80, 0.06);
}

.payment-option-card {
    border: 1px solid var(--card-border);
    background: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.payment-option-card:hover {
    border-color: var(--primary-orange);
    background-color: var(--bg-hero);
}

.checkout-item-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #F5EAE0;
}

.checkout-item-mini img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--bg-featured);
}

.order-confirmation-box {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 30px rgba(180, 120, 80, 0.12);
}

.confirm-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Track Order Page Components
   ========================================================================== */
.track-lookup-card,
.tracking-details-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 18px rgba(180, 120, 80, 0.06);
}

.tracking-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.stepper-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EDE1D5;
    color: #9C8070;
    margin: 0 auto 8px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stepper-step.completed .step-circle {
    background: #2E7D32;
    color: #FFFFFF;
}

.stepper-step.active .step-circle {
    background: var(--primary-orange);
    color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(230, 115, 27, 0.25);
}

.step-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--heading-dark);
}

.step-time {
    font-size: 9.5px;
    color: var(--text-muted);
}

.stepper-line {
    flex-grow: 1;
    height: 3px;
    background: #EDE1D5;
    position: relative;
    top: -16px;
    z-index: 1;
}

.stepper-line.completed {
    background: #2E7D32;
}

.track-info-mini {
    background: var(--bg-hero);
    border: 1px solid var(--card-border);
}

/* ==========================================================================
   Redesigned Luxury Site Footer
   ========================================================================== */
.site-footer {
    background: linear-gradient(180deg, #1C1713 0%, #13100D 100%);
    color: #ECE5DE;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #E6731B;
}

.footer-leaf-bg {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    background-image: url('../images/leaf-branch.png');
}

/* Footer Top Assurance Strip */
.footer-trust-strip {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
}

.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.footer-trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.footer-trust-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(230, 115, 27, 0.4);
    transform: translateY(-2px);
}

.footer-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(230, 115, 27, 0.15);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-trust-info h6 {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-trust-info p {
    color: #A3968A;
    font-size: 11px;
    margin-bottom: 0;
    line-height: 1.35;
}

/* Main Footer Content */
.footer-main-container {
    padding: 50px 0 35px 0;
    position: relative;
    z-index: 2;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
}

.footer-col-header {
    margin-bottom: 18px;
    position: relative;
}

.footer-col-header h5 {
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.footer-col-header .header-line {
    display: block;
    width: 36px;
    height: 2.5px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Brand & Official Packaging Card in Footer */
.footer-brand-wrap .footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer-brand-desc {
    color: #BDB2A7;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-packaging-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--primary-orange);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: border-color 0.25s, transform 0.25s;
}

.footer-packaging-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-pkg-title {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-pkg-address {
    color: #BDB2A7;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-pkg-contact-row {
    font-size: 12px;
    color: #D6CCC2;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-pkg-contact-row i {
    color: var(--primary-orange);
    width: 14px;
    text-align: center;
}

.footer-pkg-contact-row a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-pkg-contact-row a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Footer Navigation Links */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 9px;
}

.footer-nav-list a {
    color: #BDB2A7;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-nav-list a i {
    font-size: 9px;
    color: var(--primary-orange);
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-nav-list a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-nav-list a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Newsletter in Redesigned Footer */
.footer-newsletter-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
}

.footer-newsletter-card p {
    color: #BDB2A7;
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s;
}

.footer-newsletter-input::placeholder {
    color: #8C8074;
}

.footer-newsletter-input:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.12);
}

.btn-footer-subscribe {
    background: var(--primary-orange);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-footer-subscribe:hover {
    background: #FF882E;
    transform: translateY(-1px);
}

/* Social Icon Badges */
.footer-social-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-social-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.footer-social-badge.fb-highlight {
    background: #1877F2;
    border-color: #1877F2;
}

.footer-social-badge:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 115, 27, 0.4);
}

.footer-hotline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 115, 27, 0.12);
    border: 1px solid rgba(230, 115, 27, 0.3);
    border-radius: 30px;
    padding: 8px 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
}

.footer-hotline-badge:hover {
    background: var(--primary-orange);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 115, 27, 0.35);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: #0C0A08;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-copyright {
    color: #8C8074;
    font-size: 12px;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: #8C8074;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.footer-purity-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BDB2A7;
    font-size: 11.5px;
}

.footer-purity-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-purity-tags i {
    color: var(--primary-orange);
}

@media (max-width: 991px) {
    .footer-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-trust-grid {
        grid-template-columns: 1fr;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Dynamic Cart Drawer
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(40, 20, 10, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90vw;
    height: 100vh;
    background: #FFFDFB;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    background-color: var(--bg-hero);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.cart-drawer-header h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-dark);
}

.badge-count {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--heading-dark);
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-close-drawer:hover {
    transform: scale(1.15);
    color: var(--primary-orange);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F5EAE0;
}

.cart-item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--heading-dark);
    margin-bottom: 2px;
}

.cart-item-weight {
    font-size: 10px;
    color: var(--text-muted);
}

.cart-item-price {
    font-size: 12px;
    font-weight: 700;
    color: #B33B12;
    margin-top: 3px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: #FFFFFF;
}

.btn-qty-change {
    background: none;
    border: none;
    color: var(--heading-dark);
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-qty-change:hover {
    color: var(--primary-orange);
}

.qty-display {
    font-size: 11px;
    font-weight: 600;
    padding: 0 4px;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #B08D79;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.btn-remove-item:hover {
    color: #C62828;
}

.cart-drawer-footer {
    background: #FFFDFB;
    padding: 16px 20px;
    border-top: 1px solid var(--card-border);
}

.cart-summary-row {
    font-size: 12px;
    color: var(--heading-dark);
}

.total-label {
    font-size: 14px;
}

.total-amount {
    font-size: 16px;
    color: #B33B12;
}

.btn-checkout {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
    transition: background-color 0.2s;
    cursor: pointer;
    display: inline-block;
}

.btn-checkout:hover {
    background-color: var(--primary-orange-hover);
    color: #FFFFFF;
}

/* ==========================================================================
   Dynamic Live Search Overlay
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 15, 8, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 600px;
    max-width: 90vw;
}

.search-input-wrap {
    position: relative;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.search-icon-input {
    color: var(--primary-orange);
    font-size: 18px;
    margin-right: 12px;
}

.live-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--heading-dark);
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #A08070;
    cursor: pointer;
    line-height: 1;
}

.search-close-btn:hover {
    color: #C62828;
}

.search-results-box {
    margin-top: 10px;
    background: #FFFFFF;
    border-radius: 12px;
    max-height: 380px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-item-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--bg-featured);
}

.search-item-name {
    font-size: 13px;
    color: var(--heading-dark);
}

.btn-quick-add {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 15px;
}

/* ==========================================================================
   Modals (Track Order, Auth, Recipe)
   ========================================================================== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 15, 8, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1070;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.custom-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.custom-modal-dialog {
    background: #FFFDFB;
    border-radius: 14px;
    width: 460px;
    max-width: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-modal-overlay.open .custom-modal-dialog {
    transform: scale(1);
}

.custom-modal-header {
    background-color: var(--bg-hero);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.custom-modal-header h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-dark);
    margin-bottom: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--heading-dark);
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--primary-orange);
}

.custom-modal-body {
    padding: 20px;
}

.custom-auth-tabs .nav-link {
    color: var(--heading-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 18px;
}

.custom-auth-tabs .nav-link.active {
    background-color: var(--primary-orange);
    color: #FFFFFF;
}

/* ==========================================================================
   Toast Notification Container
   ========================================================================== */
.toast-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    background: #4A230F;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    font-size: 12.5px;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary-orange);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.toast-item.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-item.toast-success i {
    color: #4CAF50;
}

.toast-item.toast-info i {
    color: #FFB300;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 30px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .testimonials-cards-row {
        grid-template-columns: 1fr;
    }
    .promise-layout {
        flex-direction: column;
        text-align: center;
    }
    .promise-divider {
        display: none;
    }
    .footer-main-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-divider {
        display: none;
    }
    .tracking-stepper {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .stepper-line {
        display: none;
    }
    .stepper-step {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    .step-circle {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .features-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    .feature-divider {
        display: none;
    }
    .feature-item {
        flex: 0 0 45%;
    }
    .category-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    .category-divider {
        display: none;
    }
    .category-card {
        flex: 0 0 30%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-page-grid {
        grid-template-columns: 1fr !important;
    }
    .certifications-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   NEW INNER PAGES STYLING
   Product Detail, Cart Page, Recipes, Wholesale & FAQ
   ========================================================================== */

/* 1. Product Detail Page */
.product-detail-section {
    background: #FFFFFF;
}

.product-detail-gallery-box {
    background: radial-gradient(circle, #FFFFFF 0%, #F5ECE2 100%);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 30px rgba(180, 120, 80, 0.08);
}

.detail-badge-purity {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2E7D32;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-detail-img-wrap {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-detail-gallery-box:hover .product-detail-main-img {
    transform: scale(1.06);
}

.product-cat-pill {
    background: rgba(230, 115, 27, 0.12);
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
}

.product-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-dark);
}

.detail-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #B33B12;
}

.product-detail-short-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

.btn-pack-size {
    border: 1.5px solid var(--card-border);
    background: #FFFFFF;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-dark);
    transition: all 0.2s;
    text-align: center;
}

.btn-pack-size:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-pack-size.active {
    border-color: var(--primary-orange);
    background: #FFF5EB;
    color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(230, 115, 27, 0.15);
}

.product-quick-facts {
    background: var(--bg-hero);
    border: 1px solid var(--card-border);
}

.detail-qty-control {
    border: 1.5px solid var(--card-border);
    border-radius: 8px;
    background: #FFFFFF;
    overflow: hidden;
}

.btn-qty-detail {
    border: none;
    background: transparent;
    width: 38px;
    height: 38px;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-dark);
    transition: background 0.2s;
}

.btn-qty-detail:hover {
    background: var(--bg-hero);
    color: var(--primary-orange);
}

#detailQtyInput {
    width: 48px;
    height: 38px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--heading-dark);
}

.btn-buy-now {
    background: #2E7D32;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.btn-buy-now:hover {
    background: #1B5E20;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.custom-detail-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 18px;
    border-radius: 0;
}

.custom-detail-tabs .nav-link:hover {
    color: var(--primary-orange);
}

.custom-detail-tabs .nav-link.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
    background: transparent;
}

/* 2. Dedicated Cart Page */
.cart-table-card {
    box-shadow: 0 4px 16px rgba(180, 120, 80, 0.06);
}

.cart-table th {
    border-bottom: 2px solid var(--card-border);
    font-weight: 700;
}

.cart-table td {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* 3. Recipes Page */
.btn-recipe-filter {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-dark);
    transition: all 0.2s;
}

.btn-recipe-filter:hover, .btn-recipe-filter.active {
    background: var(--primary-orange);
    color: #FFFFFF;
    border-color: var(--primary-orange);
}

/* 4. Wholesale Page */
.wholesale-tier-card {
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(180, 120, 80, 0.06);
}

.wholesale-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(180, 120, 80, 0.14);
}

.wholesale-tier-card.featured-tier {
    border: 2px solid var(--primary-orange) !important;
    background: #FFFAF5 !important;
}

.tier-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-orange);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

/* 5. FAQ Page */
.faq-search-input {
    border: 2px solid var(--card-border);
    border-radius: 30px;
    padding: 12px 24px 12px 48px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(180, 120, 80, 0.06);
    transition: border-color 0.2s;
}

.faq-search-input:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 4px 20px rgba(230, 115, 27, 0.15);
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 18px;
}

.btn-faq-filter {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-dark);
    transition: all 0.2s;
}

.btn-faq-filter:hover, .btn-faq-filter.active {
    background: var(--primary-orange);
    color: #FFFFFF;
    border-color: var(--primary-orange);
}

.faq-cat-badge {
    background: #FFF5EB;
    color: var(--primary-orange);
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-size: 10px;
}

/* ==========================================================================
   22. Element-Based Scroll Animation Engine
   ========================================================================== */
.scroll-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #E6731B 0%, #FF9800 50%, #FFB300 100%);
    z-index: 99999;
    box-shadow: 0 1px 6px rgba(230, 115, 27, 0.6);
    pointer-events: none;
    transition: width 0.08s ease-out;
}

/* Base Reveal Element State */
.reveal-on-scroll,
[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Directional Modifiers */
[data-reveal="fade-up"] {
    transform: translateY(38px);
}

[data-reveal="fade-down"] {
    transform: translateY(-38px);
}

[data-reveal="fade-left"] {
    transform: translateX(-42px);
}

[data-reveal="fade-right"] {
    transform: translateX(42px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.90);
}

[data-reveal="zoom-out"] {
    transform: scale(1.08);
}

[data-reveal="flip-up"] {
    transform: perspective(900px) rotateX(16deg) translateY(24px);
    transform-origin: bottom center;
}

/* Active State when in Viewport */
.reveal-on-scroll.is-revealed,
[data-reveal].is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotate(0) !important;
}

/* Staggered Delay Tokens */
[data-reveal-delay="50"],  [data-delay="50"]  { transition-delay: 0.05s; }
[data-reveal-delay="100"], [data-delay="100"] { transition-delay: 0.10s; }
[data-reveal-delay="150"], [data-delay="150"] { transition-delay: 0.15s; }
[data-reveal-delay="200"], [data-delay="200"] { transition-delay: 0.20s; }
[data-reveal-delay="250"], [data-delay="250"] { transition-delay: 0.25s; }
[data-reveal-delay="300"], [data-delay="300"] { transition-delay: 0.30s; }
[data-reveal-delay="350"], [data-delay="350"] { transition-delay: 0.35s; }
[data-reveal-delay="400"], [data-delay="400"] { transition-delay: 0.40s; }
[data-reveal-delay="450"], [data-delay="450"] { transition-delay: 0.45s; }
[data-reveal-delay="500"], [data-delay="500"] { transition-delay: 0.50s; }
[data-reveal-delay="600"], [data-delay="600"] { transition-delay: 0.60s; }
[data-reveal-delay="700"], [data-delay="700"] { transition-delay: 0.70s; }

/* Subtle Parallax Floating Leaf Effect */
.parallax-leaf {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Accessibility: reduce motion support */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    [data-reveal],
    .scroll-progress-indicator {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   23. Official Packaging Contact Showcase Section
   ========================================================================== */
.official-packaging-contact-section {
    position: relative;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, #40916c 100%);
    padding: 70px 0;
    color: #FFFFFF;
    overflow: hidden;
}

.pkg-contact-leaf-bg {
    position: absolute;
    top: 0;
    right: -60px;
    width: 320px;
    height: 320px;
    background-image: url('../images/leaf-branch.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
}

.packaging-label-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 28px 28px 28px 8px;
    padding: 36px 40px;
    color: #26211C;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.85);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.packaging-label-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #E6731B, #52B788);
    border-radius: 28px 28px 0 0;
}

.pkg-manufacturer-tag {
    font-size: 15px;
    font-weight: 600;
    color: #4B5563;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
    display: block;
}

.pkg-company-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 12px;
}

.pkg-address-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #E5E7EB;
}

.pkg-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-contact-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    color: #1F2937;
}

.pkg-contact-list li .pkg-label {
    font-weight: 700;
    min-width: 65px;
    color: #1b4332;
}

.pkg-contact-list li a {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.pkg-contact-list li a:hover {
    color: #E6731B;
    text-decoration: underline;
}

.pkg-trust-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pkg-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FBBF24;
    flex-shrink: 0;
}

.contact-pill-link {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    color: #2D2721;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.25s;
    border: 1px solid #E5DFD7;
}

.contact-pill-link:hover {
    background: #E6731B;
    color: #FFFFFF;
    border-color: #E6731B;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230,115,27,0.3);
}

.contact-pill-link:hover i {
    color: #FFFFFF !important;
}

/* ==========================================================================
   24. Brand Logo Preloader
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #241D17 0%, #120F0C 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-preloader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 320px;
    padding: 20px;
}

.preloader-logo-ring {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.preloader-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 115, 27, 0.35) 0%, rgba(230, 115, 27, 0) 70%);
    animation: preloaderPulse 2s ease-in-out infinite alternate;
    pointer-events: none;
}

.preloader-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #E6731B;
    border-right-color: #FFB300;
    animation: preloaderSpin 1.4s linear infinite;
}

.preloader-logo-img {
    width: 86px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
    animation: preloaderLogoScale 2.2s ease-in-out infinite alternate;
}

.preloader-brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.preloader-tagline {
    font-size: 12px;
    color: #C2B5A8;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-weight: 500;
}

.preloader-bar-track {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #E6731B, #FFB300);
    border-radius: 4px;
    animation: preloaderBar 1.6s ease-in-out infinite;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1.25); opacity: 0.85; }
}

@keyframes preloaderLogoScale {
    0% { transform: scale(0.96); }
    100% { transform: scale(1.04); }
}

@keyframes preloaderBar {
    0% { width: 0%; left: 0%; }
    50% { width: 70%; left: 15%; }
    100% { width: 100%; left: 0%; }
}




