/* ============================================
   HEADER STYLES — Luxury Refined
   ============================================ */

/* ============================================
   TOP ANNOUNCEMENT BAR — Clean & Centered
   ============================================ */
.top-bar {
    background-color: #0F2E14;
    color: #D1E7D1;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centered Coupon Pill Offer */
.top-bar-coupon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.6);
    padding: 4px 18px;
    border-radius: 24px;
    font-size: 13px;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.25s ease;
}
.top-bar-coupon:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #D4AF37;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.coupon-gift-icon {
    font-size: 14px;
    line-height: 1;
}
.top-bar-coupon strong {
    color: #FFD54F;
    font-weight: 800;
}
.coupon-code-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #D4AF37;
    color: #0F2E14;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.8px;
    padding: 2px 10px;
    border-radius: 12px;
    transition: transform 0.15s ease;
}
.top-bar-coupon:hover .coupon-code-pill {
    transform: scale(1.06);
}
.coupon-copied-msg {
    display: none;
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    transform: translateX(-50%);
    background: #1B5E20;
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    border: 1px solid #4CAF50;
    z-index: 1000;
}
.top-bar-coupon.copied .coupon-copied-msg {
    display: block;
    animation: fadeInOut 2s forwards;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -4px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -4px); }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 7px 0;
    }
    .top-bar-coupon {
        font-size: 12px;
        padding: 3px 12px;
        gap: 6px;
    }
    .coupon-code-pill {
        font-size: 11px;
        padding: 2px 8px;
    }
}

/* Main Header */
.site-header {
    background-color: #1A4F1A;
    color: var(--color-white, #FFF);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: 74px;
}

/* Branding */
.site-branding {
    display: flex;
    align-items: center;
}
.logo-link {
    display: inline-flex;
    align-items: center;
}
.site-logo {
    max-height: 46px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: center;
}
.main-navigation a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-family, 'Cairo', sans-serif);
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #FFFFFF;
}
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2.5px;
    background-color: #4CAF50;
    border-radius: 2px;
    transition: width 0.25s ease;
}
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

/* Header Actions (Search, Cart, CTA) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
}
.header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.cart-customlocation .cart-count {
    background-color: #4CAF50;
    color: #FFF;
    font-size: 11px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: -4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-cta-btn {
    background-color: #FFFFFF !important;
    color: #1E5C1E !important;
    height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    font-family: var(--font-family, 'Cairo', sans-serif);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.header-cta-btn:hover {
    background-color: #4CAF50 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.35);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #FFF;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
    .mobile-menu-toggle { display: flex !important; }
    .main-navigation { display: none !important; }
    .header-cta-btn { display: none !important; }
}

/* Mobile Navigation Drawer */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #1A4F1A;
    z-index: 1995;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}
.mobile-nav.active {
    transform: translateX(0);
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #FFF;
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
.mobile-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a {
    display: block;
    padding: 14px 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family, 'Cairo', sans-serif);
    text-decoration: none;
    transition: padding 0.2s ease;
}
.mobile-nav a:hover {
    color: #4CAF50;
    padding-right: 8px;
}
.mobile-nav .mobile-cta {
    background-color: #FFFFFF !important;
    color: #1E5C1E !important;
    text-align: center;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ============================================
   HERO SHOWCASE — Luxury Single Clean Hero
   ============================================ */
.home-hero-showcase {
    position: relative;
    min-height: 560px;
    background-color: #0d1a10;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    display: block;
}

/* Gradient overlay: dark and crisp on the right (text side), fading to soft transparency on the left (product view) */
.hero-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to left,
        rgba(10, 24, 14, 0.95) 0%,
        rgba(10, 24, 14, 0.88) 35%,
        rgba(10, 24, 14, 0.55) 65%,
        rgba(10, 24, 14, 0.15) 100%
    );
}

.hero-showcase-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-showcase-content {
    max-width: 660px;
    text-align: right;
    color: #FFFFFF;
}

/* Elegant Pill Badge */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #81C784;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
    display: inline-block;
}

/* Hero Headline */
.hero-showcase-title {
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 900;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0 0 18px;
    font-family: var(--font-family, 'Cairo', sans-serif);
    letter-spacing: -0.5px;
}

.hero-showcase-accent {
    color: #D4AF37;
    display: inline-block;
}

/* Hero Subtitle */
.hero-showcase-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #E0EBE0;
    margin: 0 0 30px;
    max-width: 600px;
}

/* Hero CTAs */
.hero-showcase-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-showcase-ctas .btn {
    height: 52px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-family, 'Cairo', sans-serif);
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: #FFFFFF !important;
    border: 1px solid #4CAF50;
    box-shadow: 0 4px 18px rgba(46, 125, 50, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #388E3C 0%, #1E6B23 100%);
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.6);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: #FFFFFF;
    color: #1B5E20 !important;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

/* Micro-trust Features */
.hero-showcase-features {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
}

.hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #CFE0CF;
    font-size: 13.5px;
    font-weight: 600;
}

.hero-feature-item svg {
    color: #4CAF50;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .home-hero-showcase {
        min-height: auto;
        padding: 50px 0 40px;
    }
    .hero-showcase-overlay {
        background: linear-gradient(
            to top,
            rgba(10, 24, 14, 0.96) 0%,
            rgba(10, 24, 14, 0.88) 60%,
            rgba(10, 24, 14, 0.65) 100%
        );
    }
    .hero-showcase-content {
        max-width: 100%;
        text-align: right;
    }
    .hero-showcase-title {
        font-size: 28px;
    }
    .hero-showcase-desc {
        font-size: 14.5px;
        line-height: 1.65;
    }
    .hero-showcase-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-showcase-ctas .btn {
        width: 100%;
    }
    .hero-showcase-features {
        gap: 12px;
        margin-top: 24px;
        padding-top: 18px;
    }
    .hero-feature-item {
        font-size: 12.5px;
        width: 100%;
    }
}

.mobile-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: #FFF;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive: Show hamburger, hide desktop nav */
@media (max-width: 992px) {
    .mobile-menu-toggle { display: flex; }
    .main-navigation { display: none; }
    .header-cta-btn { display: none; }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: var(--color-text-muted, #555);
}
.breadcrumbs a { color: var(--color-primary, #1E5C1E); }
.breadcrumbs .sep { margin: 0 8px; color: #CCC; }

/* ============================================
   LUXURY ARCHITECTURAL FOOTER
   ============================================ */
.site-footer {
    background-color: #111A13;
    color: #CCDACC;
    padding: 0;
    margin-top: 60px;
    border-top: 3px solid #1E5C1E;
    position: relative;
    font-family: var(--font-family, 'Cairo', sans-serif);
}

/* ── Pre-Footer Global Trust Bar ── */
.footer-trust-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    padding: 30px 0;
}
.footer-trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.footer-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-trust-bar .trust-item:last-child {
    border-right: none;
}
.footer-trust-bar .trust-item svg {
    stroke: #4CAF50;
    color: #4CAF50;
    flex-shrink: 0;
}
.footer-trust-bar .trust-item strong {
    display: block;
    color: #FFFFFF;
    font-size: 14.5px;
    font-weight: 800;
    margin-bottom: 3px;
    font-family: var(--font-family, 'Cairo', sans-serif);
}
.footer-trust-bar .trust-item span {
    display: block;
    color: #9DB49D;
    font-size: 12.5px;
    font-family: var(--font-family, 'Cairo', sans-serif);
}

@media (max-width: 991px) {
    .footer-trust-inner {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }
    .footer-trust-bar .trust-item:nth-child(2) {
        border-right: none;
    }
}
@media (max-width: 576px) {
    .footer-trust-inner {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }
    .footer-trust-bar .trust-item {
        border-right: none;
        padding: 0 10px;
    }
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 50px;
}
@media (min-width: 600px) {
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
}

.footer-widget {
    text-align: right;
}
.footer-logo-link {
    display: inline-block;
    margin-bottom: 18px;
}
.footer-logo {
    max-width: 170px;
    height: auto;
    display: block;
}
.footer-brand-desc {
    color: #9DB49D;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.footer-widget-title {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
    display: inline-block;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: #CCDACC;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links-list a:hover {
    color: #4CAF50;
    transform: translateX(-4px);
}

/* Contact Info Items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #CCDACC;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.footer-contact-item svg {
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-item strong {
    color: #FFFFFF;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CCDACC;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background-color: var(--color-primary, #1E5C1E);
    border-color: #4CAF50;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom-bar {
    background-color: #0A110B;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 13px;
    color: #7E967E;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom-inner p {
    margin: 0;
}
.footer-bottom-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #4CAF50;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-bottom-links a {
    color: #A0B5A0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
    color: #4CAF50;
    text-decoration: underline;
}
.footer-bottom-links .sep {
    color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================
   SEARCH POPUP
   ============================================ */
.search-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
}
.search-popup {
    display: none;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    z-index: 1100;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.search-popup.active,
.search-popup.active ~ .search-popup-overlay {
    display: block;
}
.search-popup-close {
    position: absolute;
    top: 12px;
    left: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 4px;
    line-height: 1;
}
.search-popup-close:hover { color: var(--color-primary); }
.search-popup .search-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light, #e0e0e0);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    direction: rtl;
    outline: none;
    transition: border-color 0.2s;
}
.search-popup .search-field:focus { border-color: var(--color-primary); }
.search-popup .search-submit {
    margin-top: 10px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}
.search-popup .search-submit:hover { background: var(--color-primary-hover); }

/* ============================================
   SLIDE-IN DRAWER MINI-CART
   ============================================ */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    direction: rtl;
}
.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #F8FAF8;
    border-bottom: 1px solid var(--border-light, #EBEBEB);
}
.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary, #1E5C1E);
}
.cart-drawer-title svg {
    stroke: var(--color-primary, #1E5C1E);
}
.cart-drawer-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary, #1E5C1E);
}
.cart-drawer-close {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #E0E0E0);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cart-drawer-close:hover {
    background: #C62828;
    color: #FFFFFF;
    border-color: #C62828;
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    scrollbar-width: thin;
    scrollbar-color: #D5DCD5 transparent;
}
.cart-drawer-body::-webkit-scrollbar {
    width: 5px;
}
.cart-drawer-body::-webkit-scrollbar-thumb {
    background: #D5DCD5;
    border-radius: 4px;
}

/* WooCommerce Mini Cart List */
.cart-drawer ul.woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light, #EBEBEB);
    position: relative;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove {
    position: static !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: #FFEBEE !important;
    color: #C62828 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex-shrink: 0;
    order: 3;
    transition: background 0.2s ease;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove:hover {
    background: #C62828 !important;
    color: #FFFFFF !important;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:not(.remove) {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 14px;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:not(.remove):hover {
    color: var(--color-primary, #1E5C1E);
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item img {
    width: 65px !important;
    height: 65px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
}
.cart-drawer ul.woocommerce-mini-cart li.woocommerce-mini-cart-item .quantity {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary, #1E5C1E);
    margin-top: 4px;
}

/* Mini Cart Totals & Buttons */
.cart-drawer .woocommerce-mini-cart__total {
    background: #F8FAF8;
    border-top: 2px solid var(--color-primary, #1E5C1E);
    padding: 16px 20px;
    margin: 20px -24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    color: #1A1A1A;
}
.cart-drawer .woocommerce-mini-cart__total .amount {
    color: var(--color-primary, #1E5C1E);
    font-size: 20px;
    font-weight: 900;
}

.cart-drawer .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0 10px;
    margin: 0;
}
.cart-drawer .woocommerce-mini-cart__buttons a.button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 14px !important;
    border-radius: 50px !important;
    font-family: var(--font-family, 'Cairo', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}
.cart-drawer .woocommerce-mini-cart__buttons a.button.checkout {
    background: var(--color-primary, #1E5C1E) !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(30, 92, 30, 0.25) !important;
    border: none !important;
}
.cart-drawer .woocommerce-mini-cart__buttons a.button.checkout:hover {
    background: var(--color-primary-hover, #2E7D2E) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(30, 92, 30, 0.4) !important;
}
.cart-drawer .woocommerce-mini-cart__buttons a.button:not(.checkout) {
    background: #FFFFFF !important;
    color: var(--color-primary, #1E5C1E) !important;
    border: 1.5px solid var(--color-primary, #1E5C1E) !important;
}
.cart-drawer .woocommerce-mini-cart__buttons a.button:not(.checkout):hover {
    background: #E8F5E9 !important;
}

/* Empty Mini Cart */
.cart-drawer .woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
}
.cart-drawer .woocommerce-mini-cart__empty-message::before {
    content: '🛒';
    font-size: 45px;
    display: block;
    margin-bottom: 15px;
}

/* ============================================
   HOME LANDING PAGE COMPONENTS
   ============================================ */

/* Section Headers */
.section-header-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}
.section-header-wrap.flex-header {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.section-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary, #1E5C1E);
    margin-bottom: 8px;
}
.section-title {
    font-size: 32px;
    font-weight: 900;
    color: #1A1A1A;
    margin: 0 0 10px;
    line-height: 1.3;
}
.section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 4 Core Categories Grid */
.home-main-categories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}
@media (min-width: 600px) {
    .home-main-categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .home-main-categories-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-cat-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    box-sizing: border-box;
}
.home-cat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.home-cat-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.home-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.home-cat-box:hover .home-cat-image img {
    transform: scale(1.08);
}
.home-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(10,35,20,0.85) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}
.home-cat-box:hover .home-cat-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,35,20,0.90) 100%);
}
.home-cat-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    text-align: right;
}
.home-cat-tag {
    font-size: 11px;
    font-weight: 800;
    background: rgba(76, 175, 80, 0.95);
    color: #FFF;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
    backdrop-filter: blur(4px);
}
.home-cat-content h3 {
    font-size: 21px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 4px;
    line-height: 1.3;
}
.home-cat-btn {
    font-size: 13px;
    font-weight: 800;
    color: #81C784;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.home-cat-box:hover .home-cat-btn {
    color: #FFFFFF;
    transform: translateX(-4px);
}


/* 4 Steps Journey Cards */
.home-steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}
@media (min-width: 600px) {
    .home-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .home-steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #EBEBEB);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: right;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    position: relative;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: #4CAF50;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.step-number {
    font-size: 36px;
    font-weight: 900;
    color: #4CAF50;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-family, 'Cairo', sans-serif);
}
.step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 10px;
}
.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Reassurance Value Box */
.home-reassurance-box {
    margin-top: 40px;
    background: linear-gradient(135deg, #F0F7F0 0%, #E8F5E9 100%);
    border: 1.5px solid #C8E6C9;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 4px 18px rgba(30, 92, 30, 0.05);
}
.reassurance-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary, #1E5C1E);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(30, 92, 30, 0.25);
}
.reassurance-text {
    text-align: right;
}
.reassurance-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary, #1E5C1E);
    margin-bottom: 6px;
    font-family: var(--font-family, 'Cairo', sans-serif);
}
.reassurance-text span {
    font-size: 14px;
    color: #2E522E;
    line-height: 1.8;
    display: block;
}
@media (max-width: 600px) {
    .home-reassurance-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .reassurance-text {
        text-align: center;
    }
}

/* ============================================
   Policy & Generic Pages Styling
   ============================================ */
.page-default-wrapper {
    padding: 50px 0 80px;
    background-color: #FAFCFA;
}
.page-default-wrapper article {
    max-width: 920px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 45px 50px;
    box-shadow: 0 4px 20px rgba(30, 92, 30, 0.06);
    border: 1px solid rgba(30, 92, 30, 0.08);
}
.page-main-header {
    border-bottom: 2px solid #E8F5E9;
    padding-bottom: 25px;
    margin-bottom: 35px;
    position: relative;
}
.page-main-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-primary, #1E5C1E);
}
.page-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary, #1E5C1E);
    margin: 0 0 10px;
    line-height: 1.3;
}
.page-subtitle-meta {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.entry-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
}
.entry-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1A361A;
    margin: 35px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.entry-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2E522E;
    margin: 25px 0 10px;
}
.entry-content p {
    margin-bottom: 18px;
    color: #444;
}
.entry-content ul, .entry-content ol {
    margin: 15px 0 25px;
    padding-right: 25px;
}
.entry-content li {
    margin-bottom: 10px;
    color: #444;
}
.entry-content strong {
    color: #1A361A;
}
.policy-card {
    background: #F4FAF4;
    border-right: 4px solid var(--color-primary, #1E5C1E);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 25px 0;
}
.policy-card p:last-child {
    margin-bottom: 0;
}
.policy-highlight-badge {
    display: inline-block;
    background-color: #E8F5E9;
    color: #1E5C1E;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .page-default-wrapper {
        padding: 30px 0 50px;
    }
    .page-default-wrapper article {
        padding: 25px 20px;
        border-radius: 12px;
    }
    .page-main-title {
        font-size: 24px;
    }
}




