/* ============================================================
   EcoHaven Design System — overrides MoonCart theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    --eh-primary: #77bf43;
    --eh-primary-dark: #5fa032;
    --eh-primary-light: #e8f5dc;
    --eh-secondary: #2d4a36;
    --eh-secondary-light: #3d6349;
    --eh-dark: #1a2e22;
    --eh-text: #5c6b5e;
    --eh-text-light: #8a9a8c;
    --eh-bg: #ffffff;
    --eh-bg-soft: #f4f8f1;
    --eh-bg-cream: #fafcf8;
    --eh-border: #e2ebe0;
    --eh-radius: 16px;
    --eh-radius-sm: 10px;
    --eh-shadow: 0 4px 24px rgba(45, 74, 54, 0.08);
    --eh-shadow-lg: 0 12px 48px rgba(45, 74, 54, 0.12);
    --eh-font: 'Inter', sans-serif;
    --eh-font-heading: 'Poppins', sans-serif;

    /* Bootstrap overrides */
    --primary: #77bf43;
    --primary-hover: #5fa032;
    --secondary: #2d4a36;
    --bs-primary: #77bf43;
    --bs-primary-rgb: 119, 191, 67;
    --bs-secondary: #2d4a36;
    --bs-link-color: #2d4a36;
    --bs-link-hover-color: #77bf43;
}

/* ---- Base Reset ---- */
body {
    font-family: var(--eh-font) !important;
    color: var(--eh-text) !important;
    background: var(--eh-bg) !important;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.title, .dz-title {
    font-family: var(--eh-font-heading) !important;
    color: var(--eh-secondary) !important;
    font-weight: 700 !important;
}

.page-content { overflow-x: hidden; }

/* Hide heavy preloader after load */
#loading-area { display: none !important; }

/* ---- Buttons ---- */
.btn {
    font-family: var(--eh-font) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    letter-spacing: 0.3px;
    transition: all 0.25s ease !important;
}

.btn-secondary, .btn-primary {
    background: var(--eh-primary) !important;
    border-color: var(--eh-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(119, 191, 67, 0.35);
}

.btn-secondary:hover, .btn-primary:hover {
    background: var(--eh-primary-dark) !important;
    border-color: var(--eh-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 191, 67, 0.45);
}

.btn-outline-secondary {
    color: var(--eh-secondary) !important;
    border: 2px solid var(--eh-secondary) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.btn-outline-secondary:hover {
    background: var(--eh-secondary) !important;
    color: #fff !important;
}

.btn-lg { padding: 14px 36px !important; font-size: 15px !important; }

.btn-light {
    background: #fff !important;
    color: var(--eh-secondary) !important;
    border: none !important;
    box-shadow: var(--eh-shadow) !important;
}

/* ---- Top Bar ---- */
.eco-topbar {
    background: var(--eh-dark);
    color: rgba(255,255,255,0.75);
    font-size: 12.5px;
    padding: 10px 0;
    letter-spacing: 0.2px;
}

.eco-topbar a { color: #fff; text-decoration: none; transition: color 0.2s; }
.eco-topbar a:hover { color: var(--eh-primary); }
.eco-topbar .hotline { font-weight: 600; color: #fff; }

/* ---- Header ---- */
.site-header .main-bar {
    background: #fff !important;
    box-shadow: 0 1px 0 var(--eh-border), 0 4px 20px rgba(45,74,54,0.06) !important;
    padding: 4px 0 !important;
}

.site-header .dark-nav > li > a span {
    font-family: var(--eh-font) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--eh-secondary) !important;
    letter-spacing: 0.2px;
}

.site-header .dark-nav > li.active > a span,
.site-header .dark-nav > li > a:hover span {
    color: var(--eh-primary) !important;
}

.site-header .dark-nav > li.active > a::after,
.site-header .dark-nav > li > a:hover::after {
    background: var(--eh-primary) !important;
}

.site-header .header-right .nav-link {
    color: var(--eh-secondary) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.logo-header img { max-height: 50px; width: auto; }

.site-header .sub-menu {
    border-radius: var(--eh-radius-sm) !important;
    box-shadow: var(--eh-shadow-lg) !important;
    border: 1px solid var(--eh-border) !important;
    padding: 8px 0 !important;
}

.site-header .sub-menu li a {
    font-size: 13px !important;
    padding: 8px 20px !important;
}

/* ---- Section Utilities ---- */
.eh-section { padding: 80px 0; }
.eh-section-sm { padding: 50px 0; }

.eh-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--eh-primary);
    margin-bottom: 12px;
}

.eh-heading {
    font-family: var(--eh-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--eh-secondary);
    line-height: 1.25;
    margin-bottom: 16px;
}

.eh-subheading {
    font-size: 1.05rem;
    color: var(--eh-text-light);
    line-height: 1.7;
    max-width: 600px;
}

.eh-heading-center { text-align: center; }
.eh-heading-center .eh-subheading { margin: 0 auto; }

/* ---- Hero ---- */
.eh-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--eh-bg-soft);
    overflow: hidden;
}

.eh-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/banners/hero-banner.jpg') center/cover no-repeat;
}

.eh-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26,46,34,0.92) 0%, rgba(45,74,54,0.75) 45%, rgba(45,74,54,0.3) 100%);
}

.eh-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}

.eh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(119,191,67,0.2);
    border: 1px solid rgba(119,191,67,0.4);
    color: #a8e06a;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.eh-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin-bottom: 24px !important;
    max-width: 640px;
}

.eh-hero h1 span { color: var(--eh-primary); }

.eh-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

.eh-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.eh-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.eh-hero-stat strong {
    display: block;
    font-family: var(--eh-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--eh-primary);
    line-height: 1;
}

.eh-hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    display: block;
}

/* ---- Trust Strip ---- */
.eh-trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--eh-border);
    padding: 0;
}

.eh-trust-strip .row { align-items: stretch; }

.eh-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid var(--eh-border);
    height: 100%;
    transition: background 0.2s;
}

.eh-trust-item:hover { background: var(--eh-bg-soft); }
.eh-trust-item:last-child { border-right: none; }

.eh-trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--eh-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eh-primary);
    font-size: 20px;
}

.eh-trust-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--eh-secondary);
    margin: 0 0 4px;
    font-family: var(--eh-font-heading);
}

.eh-trust-item p {
    font-size: 12.5px;
    color: var(--eh-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ---- Category Cards ---- */
.eh-cat-card {
    position: relative;
    border-radius: var(--eh-radius);
    overflow: hidden;
    min-height: 320px;
    display: block;
    text-decoration: none !important;
    box-shadow: var(--eh-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.eh-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eh-shadow-lg);
}

.eh-cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.eh-cat-card:hover img { transform: scale(1.06); }

.eh-cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,46,34,0.9) 0%, rgba(26,46,34,0.3) 50%, transparent 100%);
}

.eh-cat-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.eh-cat-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--eh-primary);
    display: block;
    margin-bottom: 6px;
}

.eh-cat-card-body h3 {
    color: #fff !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.eh-cat-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--eh-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.eh-cat-card:hover .eh-cat-card-btn { background: var(--eh-primary-dark); }

/* ---- Product Card ---- */
.eh-product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.eh-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.eh-product-card--carousel {
    height: 100%;
}

.eh-product-media {
    position: relative;
    background: #f3f3f3;
    aspect-ratio: 1;
    overflow: hidden;
}

.eh-product-media-link {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none !important;
}

.eh-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.eh-product-card:hover .eh-product-media img {
    transform: scale(1.06);
}

.eh-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

.eh-product-actions {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.eh-product-card:hover .eh-product-actions,
.eh-product-card:focus-within .eh-product-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.eh-product-action-quick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 38px;
    padding: 0 16px;
    background: #2b2b2b;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    border: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.eh-product-action-quick:hover {
    background: #000;
    color: #fff !important;
}

.eh-product-action-form {
    margin: 0;
}

.eh-product-action-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2b2b2b;
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.eh-product-action-icon:hover {
    background: #000;
    color: #fff;
}

.eh-product-action-icon.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.eh-product-info {
    padding: 18px 16px 22px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eh-product-title {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #222 !important;
    line-height: 1.45 !important;
    margin: 0 0 10px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.eh-product-title a {
    color: inherit !important;
    text-decoration: none !important;
}

.eh-product-title a:hover {
    color: var(--eh-secondary) !important;
}

.eh-product-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1;
}

.eh-product-stars .fa-star {
    color: #f5a623;
}

.eh-product-stars .eh-star-empty {
    color: #ddd;
}

.eh-product-price {
    margin-top: auto;
    font-size: 16px;
    font-weight: 700;
    color: #0d775e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.eh-product-price del {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 400;
}

.eh-product-price span {
    color: #0d775e;
}

/* ---- About / Split Section ---- */
.eh-split-section {
    padding: 80px 0;
    background: #fff;
}

.eh-split-section--soft {
    background: #fbf9f1;
}

.eh-split-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--eh-primary);
    margin-bottom: 14px;
}

.eh-split-cta {
    margin-top: 28px;
    border-radius: 999px !important;
}

.eh-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.eh-split-content h2 {
    font-family: var(--eh-font-heading) !important;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #2d4b42 !important;
    line-height: 1.25 !important;
    margin: 0 0 28px !important;
    max-width: 560px;
}

.eh-split-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #7a7a7a;
    margin: 0 0 20px;
    max-width: 540px;
}

.eh-split-content p strong {
    color: #5a5a5a;
    font-weight: 700;
}

.eh-split-checklist {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 16px;
    max-width: 540px;
}

.eh-split-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: #7a7a7a;
}

.eh-split-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
}

.eh-split-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(45, 74, 54, 0.12);
}

.eh-split-img img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .eh-split-section {
        padding: 56px 0;
    }

    .eh-split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .eh-split-content h2,
    .eh-split-content p,
    .eh-split-checklist {
        max-width: none;
    }

    .eh-split-img img {
        min-height: 300px;
    }
}

.eh-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.eh-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--eh-text);
    border-bottom: 1px solid var(--eh-border);
}

.eh-checklist li:last-child { border-bottom: none; }

.eh-checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--eh-primary-light);
    color: var(--eh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ---- Reviews ---- */
.eh-reviews-section { background: var(--eh-bg-cream); }

.eh-review-card {
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    padding: 28px;
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s;
}

.eh-review-card:hover { box-shadow: var(--eh-shadow); }

.eh-review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--eh-primary-light);
    line-height: 1;
}

.eh-review-stars { color: #f5a623; font-size: 14px; margin-bottom: 14px; }

.eh-review-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--eh-text);
    margin-bottom: 20px;
}

.eh-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eh-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eh-primary-light);
    color: var(--eh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.eh-review-name { font-weight: 600; color: var(--eh-secondary); font-size: 14px; }
.eh-review-source { font-size: 12px; color: var(--eh-text-light); }

.eh-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--eh-secondary);
    margin-top: 20px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.eh-google-badge:hover {
    box-shadow: var(--eh-shadow);
    border-color: #dadce0;
    color: var(--eh-secondary);
}

.eh-google-badge-rating { font-size: 15px; font-weight: 700; }

.eh-google-badge-stars {
    display: inline-flex;
    gap: 1px;
    color: #f5a623;
    font-size: 11px;
}

.eh-google-badge-count {
    font-weight: 500;
    color: var(--eh-text-light);
    padding-left: 4px;
    border-left: 1px solid var(--eh-border);
    margin-left: 4px;
}

.eh-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.eh-review-card-top .eh-review-stars { margin-bottom: 0; }

.eh-review-google-mark { flex-shrink: 0; opacity: 0.85; }

.eh-review-stars .eh-star-empty { color: #ddd; }

.eh-review-avatar--photo {
    object-fit: cover;
    display: block;
}

/* ---- CTA Banner ---- */
.eh-cta {
    background: linear-gradient(135deg, var(--eh-secondary) 0%, var(--eh-secondary-light) 100%);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eh-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(119,191,67,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.eh-cta h2 { color: #fff !important; font-size: 2rem !important; margin-bottom: 12px !important; }
.eh-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 28px; }
.eh-cta .btn-light { position: relative; z-index: 1; }

/* ---- Homepage CTA Banner (after categories) ---- */
.eh-cta-banner-section {
    padding: 0 0 56px;
}

.eh-cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--eh-secondary) 0%, #3d6349 55%, var(--eh-primary-dark) 100%);
    box-shadow: var(--eh-shadow-lg);
    position: relative;
}

.eh-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 80%, rgba(119, 191, 67, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.eh-cta-banner-content {
    position: relative;
    z-index: 1;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eh-cta-banner-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.eh-cta-banner-content h2 {
    color: #fff !important;
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
}

.eh-cta-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
    max-width: 420px;
}

.eh-cta-banner-content p strong { color: #fff; }

.eh-cta-banner-code {
    font-size: 14px !important;
    margin-bottom: 24px !important;
}

.eh-cta-banner-code strong {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 6px;
    letter-spacing: 0.06em;
}

.eh-cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eh-cta-banner-media {
    position: relative;
    min-height: 280px;
}

.eh-cta-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.eh-btn-ghost {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.eh-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .eh-cta-banner {
        grid-template-columns: 1fr;
    }

    .eh-cta-banner-media {
        min-height: 220px;
        order: -1;
    }

    .eh-cta-banner-content {
        padding: 36px 28px 40px;
    }
}

@media (max-width: 575.98px) {
    .eh-cta-banner-section { padding-bottom: 40px; }

    .eh-cta-banner-actions {
        flex-direction: column;
    }

    .eh-cta-banner-actions .eh-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Footer ---- */
.eco-footer {
    background: var(--eh-dark);
    color: rgba(255,255,255,0.65);
    padding-top: 70px;
}

.eco-footer h5 {
    color: #fff;
    font-family: var(--eh-font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eco-footer ul { list-style: none; padding: 0; margin: 0; }
.eco-footer ul li { margin-bottom: 10px; }
.eco-footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
}

.eco-footer ul li a:hover { color: var(--eh-primary); padding-left: 4px; }

.eco-footer .footer-contact .phone {
    font-family: var(--eh-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.eco-footer .footer-contact .phone a { color: #fff !important; text-decoration: none; }
.eco-footer .footer-contact a { color: var(--eh-primary); }

.eco-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.eco-footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    margin-right: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.eco-footer .social-links a:hover {
    background: var(--eh-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Product Detail ---- */
.eco-product-gallery {
    background: var(--eh-bg-cream);
    border-radius: var(--eh-radius);
    padding: 32px;
    border: 1px solid var(--eh-border);
}

.eco-product-gallery img {
    max-height: 420px;
    width: 100%;
    object-fit: contain;
}

.eco-product-detail .product-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
}

.eco-product-detail .price-display {
    font-family: var(--eh-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--eh-primary);
}

.eco-product-badges .badge {
    background: var(--eh-primary-light);
    color: var(--eh-primary-dark);
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
}

.eco-product-features {
    background: var(--eh-bg-soft);
    border-radius: var(--eh-radius-sm);
    padding: 20px 24px;
    border: 1px solid var(--eh-border);
}

/* ---- Shop Page ---- */
.eh-shop-page {
    background: #fff;
}

/* ---- Page hero / breadcrumb banner ---- */
.eh-page-hero,
.eh-shop-hero {
    position: relative;
    background: url('../images/banners/breadcrumb-bg.png') center center / cover no-repeat;
    padding: 56px 0 48px;
    text-align: center;
    overflow: hidden;
}

.eh-page-hero::before,
.eh-shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 42, 0.78) 0%, rgba(26, 58, 42, 0.58) 50%, rgba(45, 90, 60, 0.68) 100%);
    pointer-events: none;
}

.eh-page-hero .eh-container,
.eh-shop-hero .eh-container {
    position: relative;
    z-index: 1;
}

.eh-page-hero h1,
.eh-shop-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    color: #fff !important;
    margin: 0 0 12px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-page-breadcrumb,
.eh-shop-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eh-page-breadcrumb ol {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.eh-page-breadcrumb li,
.eh-shop-breadcrumb {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.eh-page-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.45);
}

.eh-page-breadcrumb a,
.eh-shop-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.eh-page-breadcrumb a:hover,
.eh-shop-breadcrumb a:hover {
    color: #fff;
}

.eh-page-breadcrumb li[aria-current="page"] {
    color: #fff;
    font-weight: 500;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Light hero variant (product / shop inner pages) */
.eh-page-hero--light {
    background-color: #f3f1ec;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(201, 168, 108, 0.08) 0%, transparent 40%);
    background-size: 22px 22px, auto;
}

.eh-page-hero--light::before {
    display: none;
}

.eh-page-hero--light h1 {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(2.25rem, 4vw, 3rem) !important;
    font-weight: 600 !important;
    color: var(--eh-secondary) !important;
    letter-spacing: 0.01em !important;
}

.eh-page-hero--light .eh-page-breadcrumb li,
.eh-page-hero--light .eh-page-breadcrumb li[aria-current="page"] {
    color: #8a8a8a;
}

.eh-page-hero--light .eh-page-breadcrumb a {
    color: #666;
}

.eh-page-hero--light .eh-page-breadcrumb a:hover {
    color: var(--eh-secondary);
}

.eh-page-hero--light .eh-page-breadcrumb li:not(:last-child)::after {
    color: #ccc;
}

.eh-shop-breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}

.eh-shop-breadcrumb [aria-current="page"] {
    color: #fff;
    font-weight: 500;
}

.eh-shop-main {
    padding: 36px 0 56px;
}

.eh-shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.eh-shop-sidebar {
    background: #fafafa;
    border: 1px solid var(--eh-border);
    border-radius: 16px;
    padding: 24px 22px;
    position: sticky;
    top: 96px;
}

.eh-shop-sidebar-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 22px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-shop-filter-group {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.eh-shop-filter-group:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.eh-shop-filter-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--eh-secondary);
    margin: 0 0 12px;
}

.eh-shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eh-shop-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--eh-text);
    cursor: pointer;
    padding: 6px 0;
    margin: 0;
    text-decoration: none;
}

a.eh-shop-check:hover {
    color: var(--eh-secondary);
}

.eh-shop-check input {
    accent-color: var(--eh-secondary);
    width: 16px;
    height: 16px;
}

.eh-shop-check.is-active span {
    color: var(--eh-secondary);
    font-weight: 600;
}

.eh-shop-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.eh-shop-price-field {
    width: 100%;
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
}

.eh-shop-range {
    width: 100%;
    margin-bottom: 8px;
    accent-color: var(--eh-secondary);
}

.eh-shop-price-hint {
    font-size: 12px;
    color: var(--eh-text-light);
    margin: 0 0 12px;
}

.eh-shop-search {
    display: flex;
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.eh-shop-search-input {
    flex: 1;
    border: 0;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}

.eh-shop-search-btn {
    border: 0;
    background: var(--eh-secondary);
    color: #fff;
    width: 42px;
    cursor: pointer;
}

.eh-shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.eh-shop-results {
    margin: 0;
    font-size: 14px;
    color: var(--eh-text-light);
}

.eh-shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.eh-shop-sort label {
    font-size: 13px;
    color: var(--eh-text-light);
    margin: 0;
}

.eh-shop-sort select {
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    color: var(--eh-text);
    background: #fff;
    min-width: 170px;
}

.eh-shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.eh-shop-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--eh-text);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.eh-shop-filter-tag:hover {
    border-color: var(--eh-primary);
    color: var(--eh-secondary);
}

.eh-shop-filter-tag i {
    font-size: 10px;
    opacity: 0.6;
}

.eh-shop-clear-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--eh-secondary);
    text-decoration: none;
}

.eh-shop-clear-all:hover {
    color: var(--eh-primary-dark);
}

.eh-shop-empty {
    text-align: center;
    padding: 64px 20px;
    background: #fafafa;
    border: 1px dashed var(--eh-border);
    border-radius: 16px;
}

.eh-shop-empty i {
    font-size: 2.5rem;
    color: var(--eh-border);
    margin-bottom: 16px;
}

.eh-shop-pagination {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.eh-shop-pagination-meta {
    margin: 0;
    font-size: 14px;
    color: var(--eh-text-light);
}

.eh-shop-pagination nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.eh-shop-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-shop-pagination .page-item {
    display: inline-flex;
}

.eh-shop-pagination .page-link {
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--eh-border) !important;
    color: var(--eh-text) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 0 !important;
    line-height: 1;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.eh-shop-pagination .page-link:hover {
    border-color: var(--eh-primary) !important;
    color: var(--eh-secondary) !important;
    background: var(--eh-bg-soft) !important;
}

.eh-shop-pagination .page-item.active .page-link {
    background: var(--eh-secondary) !important;
    border-color: var(--eh-secondary) !important;
    color: #fff !important;
}

.eh-shop-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
    background: #f5f5f5 !important;
}

.eh-shop-perks {
    background: var(--eh-bg-soft);
    border-top: 1px solid var(--eh-border);
    padding: 40px 0;
}

.eh-shop-perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.eh-shop-perk-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--eh-primary-light);
    color: var(--eh-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.eh-shop-perk h4 {
    font-size: 15px !important;
    margin: 0 0 4px !important;
    color: var(--eh-secondary) !important;
}

.eh-shop-perk p {
    margin: 0;
    font-size: 13px;
    color: var(--eh-text-light);
    line-height: 1.5;
}

.eh-product-card--shop {
    border-radius: 16px;
    border-color: #ececec;
}

.eh-product-card--shop .eh-product-media {
    border-radius: 14px 14px 0 0;
}

.eh-product-badge--shop {
    background: var(--eh-secondary);
    border-radius: 50px;
    font-size: 10px;
    padding: 5px 12px;
}

.eh-product-actions--corner {
    top: 12px;
    right: 12px;
    left: auto;
    bottom: auto;
    transform: none;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.eh-product-actions--corner .eh-product-action-cart {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.92);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, max-height 0.22s ease;
}

.eh-product-card--shop:hover .eh-product-actions--corner .eh-product-action-cart,
.eh-product-card--shop:focus-within .eh-product-actions--corner .eh-product-action-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    max-height: 40px;
}

@media (hover: none), (pointer: coarse) {
    .eh-product-actions--corner .eh-product-action-cart {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        max-height: none;
        overflow: visible;
    }
}

.eh-product-action-icon--light {
    background: #fff !important;
    color: #333 !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.eh-product-action-icon--light:hover {
    background: var(--eh-secondary) !important;
    color: #fff !important;
}

.eh-product-info--shop {
    text-align: left;
    align-items: flex-start;
    padding: 16px 18px 20px;
}

.eh-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}

.eh-product-category {
    color: var(--eh-text-light);
}

.eh-product-rating {
    color: var(--eh-text);
    font-weight: 600;
}

.eh-product-rating .fa-star {
    color: #f5a623;
    font-size: 11px;
}

.eh-product-card--shop .eh-product-title {
    text-align: left;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.eh-product-card--shop .eh-product-price {
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .eh-shop-layout {
        grid-template-columns: 1fr;
    }

    .eh-shop-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .eh-shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .eh-shop-sort {
        width: 100%;
    }

    .eh-shop-sort select {
        flex: 1;
    }
}

.dz-bnr-inr {
    background: url('../images/banners/breadcrumb-bg.png') center center / cover no-repeat !important;
    position: relative;
    padding: 56px 0 48px !important;
    min-height: auto !important;
    overflow: hidden;
}

.dz-bnr-inr::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 42, 0.78) 0%, rgba(26, 58, 42, 0.58) 50%, rgba(45, 90, 60, 0.68) 100%);
    pointer-events: none;
}

.dz-bnr-inr .container,
.dz-bnr-inr .dz-bnr-inr-entry {
    position: relative;
    z-index: 1;
}

.dz-bnr-inr h1 {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    color: #fff !important;
}

.dz-bnr-inr .eh-label {
    color: rgba(255, 255, 255, 0.75) !important;
}

.dz-bnr-inr .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dz-bnr-inr .breadcrumb-item.active {
    color: #fff !important;
}

.dz-bnr-inr .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45) !important;
}

.shop-filter {
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    padding: 24px !important;
}

.shop-filter .widget-title {
    font-family: var(--eh-font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eh-secondary);
}

.shop-filter .widget_categories ul li a {
    font-size: 14px;
    color: var(--eh-text);
    padding: 6px 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
}

.shop-filter .widget_categories ul li.active a,
.shop-filter .widget_categories ul li a:hover {
    color: var(--eh-primary);
    font-weight: 600;
}

/* ---- Contact Page ---- */
.eh-contact-page {
    background: #fff;
}

.eh-contact-trust {
    background: var(--eh-bg-soft);
    border-bottom: 1px solid var(--eh-border);
    padding: 28px 0;
}

.eh-contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.eh-contact-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius-sm);
}

.eh-contact-trust-item i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eh-primary-light);
    color: var(--eh-primary-dark);
    border-radius: 10px;
    font-size: 18px;
}

.eh-contact-trust-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--eh-secondary);
    margin-bottom: 2px;
}

.eh-contact-trust-item span {
    display: block;
    font-size: 13px;
    color: var(--eh-text-light);
    line-height: 1.4;
}

.eh-contact-main {
    padding: 72px 0 88px;
}

.eh-contact-info {
    padding-right: 12px;
}

.eh-contact-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--eh-secondary);
    line-height: 1.25;
    margin: 0 0 14px;
}

.eh-contact-lead {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--eh-text);
    margin: 0 0 32px;
    max-width: 420px;
}

.eh-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.eh-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.eh-contact-card:hover {
    border-color: var(--eh-primary);
    box-shadow: var(--eh-shadow);
    transform: translateY(-2px);
    color: inherit;
}

.eh-contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eh-primary-light);
    color: var(--eh-primary-dark);
    border-radius: 12px;
    font-size: 18px;
}

.eh-contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.eh-contact-card-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--eh-text-light);
}

.eh-contact-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--eh-secondary);
    line-height: 1.4;
}

.eh-contact-card-link {
    text-decoration: none;
    color: var(--eh-primary-dark);
    transition: color 0.2s;
}

.eh-contact-card-link:hover {
    color: var(--eh-secondary);
}

.eh-contact-card-meta {
    font-size: 13px;
    color: var(--eh-text-light);
    margin-top: 2px;
}

.eh-contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.eh-contact-whatsapp {
    padding: 14px 28px !important;
    font-weight: 600;
    border-radius: 50px !important;
}

.eh-contact-faq-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--eh-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.eh-contact-faq-link:hover {
    color: var(--eh-primary-dark);
}

.eh-contact-form-card {
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    padding: 36px 40px;
    box-shadow: var(--eh-shadow-lg);
}

.eh-contact-form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--eh-border);
}

.eh-contact-form-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--eh-secondary);
    margin: 0 0 8px;
}

.eh-contact-form-header p {
    font-size: 14px;
    color: var(--eh-text-light);
    margin: 0;
    line-height: 1.5;
}

.eh-contact-alert {
    border-radius: var(--eh-radius-sm);
    border: none;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 14px;
    margin-bottom: 24px;
}

.eh-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--eh-secondary);
    margin-bottom: 8px;
}

.eh-optional {
    font-weight: 500;
    color: var(--eh-text-light);
}

.eh-form-control {
    display: block;
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--eh-secondary);
    background: var(--eh-bg-soft);
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.eh-form-control::placeholder {
    color: #a8b5aa;
}

.eh-form-control:hover {
    border-color: #cdd8ca;
}

.eh-form-control:focus {
    outline: none;
    background: #fff;
    border-color: var(--eh-primary);
    box-shadow: 0 0 0 3px rgba(119, 191, 67, 0.15);
}

.eh-form-control.is-invalid {
    border-color: #dc3545;
    background: #fff;
}

.eh-contact-submit {
    padding: 15px 24px !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px !important;
    margin-top: 4px;
}

.eh-contact-privacy {
    margin-top: 14px;
    font-size: 12px;
    color: var(--eh-text-light);
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .eh-contact-trust-grid {
        grid-template-columns: 1fr;
    }

    .eh-contact-main {
        padding: 48px 0 64px;
    }

    .eh-contact-info {
        padding-right: 0;
        margin-bottom: 8px;
    }

    .eh-contact-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 575.98px) {
    .eh-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-contact-whatsapp {
        width: 100%;
        text-align: center;
    }

    .eh-contact-faq-link {
        text-align: center;
    }
}

/* Legacy contact overrides */
.contact-bnr.bg-secondary {
    background: linear-gradient(135deg, var(--eh-secondary) 0%, var(--eh-secondary-light) 100%) !important;
    padding: 60px 0;
}

.contact-area1.style-1 {
    background: #fff;
    border-radius: var(--eh-radius);
    padding: 36px !important;
    box-shadow: var(--eh-shadow-lg);
}

/* ---- WhatsApp ---- */
.eco-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.25s;
}

.eco-whatsapp:hover { transform: scale(1.1); color: #fff; }

/* ---- Override old MoonCart product cards on pages still using them ---- */
.shop-card {
    border: 1px solid var(--eh-border) !important;
    border-radius: var(--eh-radius) !important;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.shop-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--eh-shadow-lg) !important;
}

.shop-card .dz-media {
    background: var(--eh-bg-cream) !important;
    padding: 20px !important;
}

.shop-card .dz-media img {
    height: 200px !important;
    object-fit: contain !important;
}

.shop-card .price { color: var(--eh-primary) !important; font-weight: 700 !important; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .eh-hero { min-height: auto; }
    .eh-hero-content { padding: 80px 0 60px; }
    .eh-hero-stats { gap: 24px; }
    .eh-section { padding: 60px 0; }
    .eh-trust-item { border-right: none; border-bottom: 1px solid var(--eh-border); }
    .eh-cta { padding: 40px 24px; }
}

@media (max-width: 575px) {
    .eh-hero h1 { font-size: 2rem !important; }
    .eh-hero-stats { flex-wrap: wrap; gap: 20px; }
    .eh-cat-card { min-height: 240px; }
}

/* ============================================================
   BBW-Style Retail Layout (Header, Home, Footer)
   ============================================================ */

/* Hide legacy MoonCart header chrome */
.site-header,
.eco-topbar,
.scroltop { display: none !important; }

/* Fix MoonCart sticky-top override (was top: 120px causing gap) */
.eh-header.is-fixed,
.eh-header.sticky-top {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030 !important;
}

.page-wraper {
    padding-top: 0 !important;
    overflow-x: visible;
}

#ehHeaderPlaceholder {
    display: block;
    height: 0;
}

:root {
    --eh-sticky-offset: 74px;
}

.eh-sticky-below-header.sticky-top {
    top: var(--eh-sticky-offset) !important;
    z-index: 1020 !important;
}

/* ---- Site top (legacy wrapper) ---- */
.eh-site-top {
    background: #fff;
}

/* ---- Header (compact single row) ---- */
.eh-header {
    background: #fff;
    border-top: none;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1030;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.eh-header.is-fixed,
.eh-header.is-stuck {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border-bottom-color: transparent;
}

/* ---- Site Container ---- */
.eh-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.eh-container--wide {
    max-width: 1440px;
}

@media (min-width: 768px) {
    .eh-container { padding-left: 32px; padding-right: 32px; }
}

/* ---- Shared Buttons ---- */
.eh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--eh-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.2;
}

.eh-btn-sm { padding: 8px 16px; font-size: 11px; }
.eh-btn-primary { background: var(--eh-primary); color: #fff !important; border-color: var(--eh-primary); }
.eh-btn-primary:hover { background: var(--eh-primary-dark); border-color: var(--eh-primary-dark); color: #fff !important; }
.eh-btn-gold { background: #c9a86c; color: #fff !important; border-color: #c9a86c; }
.eh-btn-gold:hover { background: #b89455; border-color: #b89455; color: #fff !important; }
.eh-btn-outline { background: transparent; color: var(--eh-secondary) !important; border-color: var(--eh-secondary); }
.eh-btn-outline:hover { background: var(--eh-secondary); color: #fff !important; }
.eh-btn-white { background: #fff; color: var(--eh-secondary) !important; border-color: #fff; }
.eh-btn-white:hover { background: var(--eh-primary); color: #fff !important; border-color: var(--eh-primary); }

/* ---- Promo Bar ---- */
.eh-promo-bar {
    background: var(--eh-secondary);
    color: #fff;
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
}

.eh-promo-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: eh-promo-scroll 30s linear infinite;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.eh-promo-track a { color: var(--eh-primary); text-decoration: underline; }
.eh-promo-track strong { font-weight: 700; }

@keyframes eh-promo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Header (compact single row) ---- */

.eh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    min-height: 0;
    height: 68px;
}

.eh-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.eh-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
}

.eh-logo img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

.eh-logo-text {
    font-family: var(--eh-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--eh-secondary);
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
}

.eh-logo-text span { color: var(--eh-primary); }

.eh-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 0;
}

.eh-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eh-nav-list > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--eh-secondary);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.2;
}

.eh-nav-list > li > a i {
    font-size: 9px;
    margin-left: 3px;
    opacity: 0.6;
}

.eh-nav-list > li.active > a,
.eh-nav-list > li > a:hover { color: var(--eh-primary); }

.eh-has-dropdown { position: relative; }

.eh-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.eh-has-dropdown:hover .eh-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eh-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--eh-text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.eh-dropdown li a:hover {
    background: var(--eh-bg-soft);
    color: var(--eh-primary);
}

.eh-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.eh-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--eh-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    line-height: 1;
}

.eh-action-btn:hover { color: var(--eh-primary); }
.eh-action-btn i { font-size: 17px; }

.eh-badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--eh-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eh-mobile-toggle {
    background: none;
    border: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.eh-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--eh-secondary);
}

.eh-mobile-nav {
    background: #fff;
    border-top: 1px solid #eee;
}

.eh-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 4px 0 8px;
}

.eh-mobile-nav-list li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--eh-secondary);
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
}

.eh-mobile-nav-list li.active a,
.eh-mobile-nav-list li a:hover {
    color: var(--eh-primary);
    background: var(--eh-bg-soft);
}

@media (max-width: 991px) {
    .eh-header-inner {
        height: 60px;
        gap: 10px;
    }

    .eh-logo-text { font-size: 20px; }
    .eh-logo img { height: 30px; }
}

/* ---- Hero Slider ---- */
.eh-hero-slider {
    width: 100%;
    overflow: hidden;
    background: #2d4a36;
    min-height: 0;
}

.eh-hero-swiper {
    width: 100% !important;
    height: calc(100vh - 110px) !important;
    min-height: 560px !important;
    max-height: 860px !important;
}

.eh-hero-swiper .swiper-wrapper,
.eh-hero-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

.eh-hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.eh-hero-slide--bg {
    background-color: #2d4a36;
}

.eh-hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
    display: block;
}

.eh-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 36, 26, 0.72) 0%,
        rgba(18, 36, 26, 0.42) 38%,
        rgba(18, 36, 26, 0.08) 72%,
        rgba(18, 36, 26, 0.02) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.eh-hero-slide--cream .eh-hero-slide-overlay {
    background: linear-gradient(
        90deg,
        rgba(42, 28, 14, 0.7) 0%,
        rgba(42, 28, 14, 0.4) 38%,
        rgba(42, 28, 14, 0.08) 72%,
        rgba(42, 28, 14, 0.02) 100%
    );
}

.eh-hero-slide--teal .eh-hero-slide-overlay {
    background: linear-gradient(
        90deg,
        rgba(10, 40, 48, 0.7) 0%,
        rgba(10, 40, 48, 0.4) 38%,
        rgba(10, 40, 48, 0.08) 72%,
        rgba(10, 40, 48, 0.02) 100%
    );
}

.eh-hero-slide--green {
    background-color: #2d4a36;
}

.eh-hero-slide--cream {
    background-color: #5c4030;
}

.eh-hero-slide--teal {
    background-color: #1a4a52;
}

.eh-hero-slide .eh-container {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.eh-hero-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    height: 100%;
}

.eh-hero-slide-caption {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 24px 0;
}

.eh-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b8e6c8;
    margin-bottom: 16px;
}

.eh-hero-slide--bg .eh-hero-tag {
    color: #c8f0d4;
}

.eh-hero-slide-caption h2 {
    font-family: var(--eh-font-heading) !important;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.eh-hero-slide-caption p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 480px;
}

.eh-hero-slide-art {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 0;
}

.eh-hero-slide-art img {
    max-width: 100%;
    max-height: min(480px, 52vh);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(45, 74, 54, 0.14));
}

.eh-hero-prev,
.eh-hero-next {
    color: var(--eh-secondary) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.eh-hero-prev::after,
.eh-hero-next::after {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.eh-hero-pagination {
    bottom: 20px !important;
}

.eh-hero-pagination .swiper-pagination-bullet {
    background: var(--eh-secondary);
    opacity: 0.35;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.eh-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--eh-primary);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .eh-hero-slider {
        min-height: 70vh;
    }

    .eh-hero-swiper {
        height: 70vh !important;
        min-height: 520px !important;
        max-height: none !important;
    }

    .eh-hero-slide-media {
        object-position: center center;
    }

    .eh-hero-slide-overlay {
        background: linear-gradient(
            180deg,
            rgba(18, 36, 26, 0.35) 0%,
            rgba(18, 36, 26, 0.55) 45%,
            rgba(18, 36, 26, 0.78) 100%
        ) !important;
    }

    .eh-hero-slide--cream .eh-hero-slide-overlay {
        background: linear-gradient(
            180deg,
            rgba(42, 28, 14, 0.3) 0%,
            rgba(42, 28, 14, 0.55) 45%,
            rgba(42, 28, 14, 0.78) 100%
        ) !important;
    }

    .eh-hero-slide--teal .eh-hero-slide-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 40, 48, 0.3) 0%,
            rgba(10, 40, 48, 0.55) 45%,
            rgba(10, 40, 48, 0.78) 100%
        ) !important;
    }

    .eh-hero-slide-caption {
        max-width: 520px;
        padding: 20px 0 28px;
        text-align: center;
        margin: 0 auto;
    }

    .eh-hero-slide-caption p {
        margin-left: auto;
        margin-right: auto;
    }

    .eh-hero-slide-art {
        display: none;
    }
}

@media (max-width: 575px) {
    .eh-hero-slider {
        min-height: 68vh;
    }

    .eh-hero-swiper {
        height: 68vh !important;
        min-height: 480px !important;
    }

    .eh-hero-slide-caption h2 { font-size: 1.55rem !important; }
}

/* ---- Promo Section (redesigned) ---- */
.eh-promo-section {
    padding: 28px 0 20px;
    background: #fff;
}

.eh-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.eh-promo-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
}

.eh-promo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    flex: 1;
}

.eh-promo-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    text-decoration: none !important;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 0;
}

.eh-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(45, 74, 54, 0.18);
}

/* Full-bleed background images */
.eh-promo-card--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.55s ease;
    z-index: 0;
}

.eh-promo-card--has-bg:hover::before {
    transform: scale(1.06);
}

.eh-promo-card--bg-household::before {
    background-image: url('../images/banners/banner-1.svg');
}

.eh-promo-card--bg-pet::before {
    background-image: url('../images/banners/banner-2.svg');
}

.eh-promo-card--bg-body::before {
    background-image: url('../images/banners/banner-3.svg');
}

.eh-promo-card--bg-offer::before {
    background-image: url('../images/categories/home-care.svg');
}

.eh-promo-card--bg-offer {
    background-color: var(--eh-secondary);
}

.eh-promo-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(26, 46, 34, 0.08) 0%,
        rgba(26, 46, 34, 0.35) 45%,
        rgba(26, 46, 34, 0.78) 100%
    );
    transition: background 0.35s ease;
}

.eh-promo-card--has-bg:hover .eh-promo-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 46, 34, 0.12) 0%,
        rgba(26, 46, 34, 0.45) 45%,
        rgba(26, 46, 34, 0.88) 100%
    );
}

.eh-promo-card-overlay--dark {
    background: linear-gradient(
        135deg,
        rgba(26, 46, 34, 0.88) 0%,
        rgba(45, 74, 54, 0.75) 100%
    ) !important;
}

.eh-promo-card--featured {
    min-height: 420px;
}

.eh-promo-card--featured::before {
    background-image: var(--eh-promo-bg);
    background-position: center;
}

.eh-promo-card--has-bg:not(.eh-promo-card--featured):not(.eh-promo-card--offer) {
    min-height: 220px;
}

.eh-promo-card--offer {
    flex-direction: row;
    align-items: center;
    padding: 24px 28px;
    gap: 16px;
    min-height: 120px;
    z-index: 0;
}

.eh-promo-card-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
}

.eh-promo-card--featured .eh-promo-card-content {
    padding: 32px;
}

.eh-promo-card--offer .eh-promo-card-content {
    padding: 0;
    flex: 1;
}

.eh-promo-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #b8e86a;
    margin-bottom: 8px;
}

.eh-promo-card-content h3 {
    font-family: var(--eh-font-heading) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 6px !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.eh-promo-card--featured .eh-promo-card-content h3 {
    font-size: 1.85rem !important;
}

.eh-promo-card--offer .eh-promo-card-content h3 {
    font-size: 1.25rem !important;
}

.eh-promo-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 14px;
    line-height: 1.5;
}

.eh-promo-card--offer .eh-promo-card-content p {
    margin: 0;
}

.eh-promo-card-content p strong {
    color: #b8e86a;
    font-weight: 700;
}

.eh-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    margin-top: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
}

.eh-promo-card:hover .eh-promo-link {
    border-color: #fff;
    gap: 12px;
}

.eh-promo-offer-btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding: 10px 20px !important;
    font-size: 11px !important;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .eh-promo-grid {
        grid-template-columns: 1fr;
    }

    .eh-promo-card--featured {
        min-height: 340px;
    }

    .eh-promo-card--offer {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .eh-promo-offer-btn {
        align-self: flex-start;
    }
}

@media (max-width: 575px) {
    .eh-promo-duo {
        grid-template-columns: 1fr;
    }

    .eh-promo-card--has-bg:not(.eh-promo-card--featured):not(.eh-promo-card--offer) {
        min-height: 200px;
    }
}

/* ---- Benefits / Pledge Section (ref-style) ---- */
.eh-benefits-strip {
    padding: 56px 0 52px;
    background: #fcfaf5;
    border-top: 1px solid var(--eh-border);
}

.eh-benefits-strip--page {
    padding: 48px 0;
    background: var(--eh-bg-soft);
}

.eh-pledge-item {
    text-align: center;
    padding: 8px 10px;
    height: 100%;
}

.eh-pledge-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border: 1.5px solid var(--eh-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eh-secondary);
    font-size: 26px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.eh-pledge-item:hover .eh-pledge-icon {
    background: var(--eh-secondary);
    border-color: var(--eh-secondary);
    color: #fff;
}

.eh-pledge-item h4 {
    font-family: var(--eh-font-heading) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--eh-secondary) !important;
    margin: 0 0 14px !important;
    line-height: 1.3 !important;
}

.eh-pledge-item p {
    font-size: 14px;
    line-height: 1.65;
    color: #757575;
    margin: 0 auto;
    max-width: 260px;
}

@media (max-width: 767px) {
    .eh-benefits-strip {
        padding: 40px 0 36px;
    }

    .eh-pledge-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .eh-pledge-item p {
        font-size: 13px;
        max-width: 220px;
    }
}

/* ---- Section Headers ---- */
.eh-section { padding: 64px 0; }
.eh-section--gray { background: #f8f9f8; }
.eh-section--reviews { background: #fff; }

.eh-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}

.eh-section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eh-section-header h2 {
    font-family: var(--eh-font-heading) !important;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
    font-weight: 700 !important;
    color: var(--eh-secondary) !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eh-section-header p {
    color: var(--eh-text-light);
    margin: 8px 0 0;
    font-size: 15px;
}

.eh-section-header > a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--eh-secondary);
    text-decoration: none;
    white-space: nowrap;
}

.eh-section-header > a:hover { color: var(--eh-primary); }

/* ---- Category Showcase (homepage) ---- */
.eh-cat-section {
    background: #fff;
}

.eh-cat-section .eh-section-header h2 {
    font-size: 1.35rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eh-secondary) !important;
}

.eh-cat-showcase {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid #e6e6e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eh-cat-showcase:hover {
    transform: translateY(-5px);
    border-color: #d4d4d4;
    box-shadow: 0 14px 36px rgba(45, 74, 54, 0.1);
}

.eh-cat-showcase-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f3;
}

.eh-cat-showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.55s ease;
}

.eh-cat-showcase:hover .eh-cat-showcase-bg {
    transform: scale(1.06);
}

.eh-cat-showcase--household .eh-cat-showcase-bg {
    background-image: url('../images/banners/banner-1.svg');
}

.eh-cat-showcase--pet .eh-cat-showcase-bg {
    background-image: url('../images/banners/banner-2.svg');
}

.eh-cat-showcase--pool .eh-cat-showcase-bg {
    background-image: url('../images/banners/banner-3.svg');
}

.eh-cat-showcase--personal .eh-cat-showcase-bg {
    background-image: url('../images/categories/personal-care.svg');
}

.eh-cat-showcase-body {
    padding: 18px 16px 20px;
    text-align: center;
}

.eh-cat-showcase-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--eh-primary);
    margin-bottom: 6px;
}

.eh-cat-showcase-title {
    font-family: var(--eh-font-heading) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #3d3d3d !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}

@media (max-width: 575px) {
    .eh-cat-showcase-body {
        padding: 14px 12px 16px;
    }

    .eh-cat-showcase-title {
        font-size: 14px !important;
    }
}

/* ---- Product Carousel ---- */
.eh-products-swiper { padding: 0 40px; position: relative; }

.eh-products-prev, .eh-products-next {
    color: var(--eh-secondary) !important;
    width: 36px !important;
    height: 36px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 50% !important;
}

.eh-products-prev::after, .eh-products-next::after { font-size: 14px !important; }

/* ---- Full Banner ---- */
.eh-full-banner { width: 100%; }

.eh-full-banner-inner {
    padding: 72px 0;
    text-align: center;
}

.eh-full-banner-inner--commitment {
    background: linear-gradient(135deg, var(--eh-secondary) 0%, #3d6349 50%, var(--eh-primary-dark) 100%);
    color: #fff;
}

.eh-full-banner-content {
    max-width: 640px;
    margin: 0 auto;
}

.eh-full-banner-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a8e06a;
    margin-bottom: 14px;
}

.eh-full-banner-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    color: #fff !important;
    margin-bottom: 14px !important;
}

.eh-full-banner-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* ---- Brand Story ---- */
.eh-brand-story { padding: 72px 0; background: var(--eh-bg-soft); }

.eh-brand-story-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.eh-brand-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--eh-primary-light);
    color: var(--eh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.eh-brand-story-inner h3 {
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
}

.eh-brand-story-inner p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--eh-text);
    margin-bottom: 24px;
}

/* ---- Footer (BBW light style) ---- */
.eh-footer { background: #f5f5f5; color: var(--eh-text); }

.eh-footer-newsletter {
    background: var(--eh-secondary);
    color: #fff;
    padding: 36px 0;
}

.eh-footer-newsletter h4 {
    font-size: 1.2rem !important;
    color: #fff !important;
    margin-bottom: 6px !important;
}

.eh-footer-newsletter p { margin: 0; opacity: 0.85; font-size: 14px; }

.eh-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 100%;
}

.eh-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-size: 14px;
    outline: none;
}

.eh-newsletter-form .eh-btn { border-radius: 0; white-space: nowrap; }

.eh-footer-main { padding: 48px 0 32px; }

.eh-footer-logo .eh-logo-text {
    font-size: 24px;
    color: var(--eh-secondary);
}

.eh-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
}

.eh-footer-logo img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.eh-footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 340px; }

.eh-footer h6 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eh-secondary);
    margin-bottom: 18px;
}

.eh-footer ul { list-style: none; padding: 0; margin: 0; }

.eh-footer ul li { margin-bottom: 10px; }

.eh-footer ul li a {
    font-size: 14px;
    color: var(--eh-text);
    text-decoration: none;
    transition: color 0.2s;
}

.eh-footer ul li a:hover { color: var(--eh-primary); }

.eh-footer-social { display: flex; gap: 10px; }

.eh-footer-social a {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eh-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.eh-footer-social a:hover {
    background: var(--eh-primary);
    border-color: var(--eh-primary);
    color: #fff;
}

.eh-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.eh-footer-contact i { color: var(--eh-primary); margin-top: 3px; width: 16px; }

.eh-footer-bottom {
    border-top: 1px solid #ddd;
    padding: 18px 0;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-footer-payments { display: flex; align-items: center; gap: 10px; }
.eh-footer-payments i { font-size: 24px; color: #666; }

/* Offcanvas polish */
.dz-offcanvas .btn-close { font-size: 24px; opacity: 0.6; }
.dz-offcanvas .nav-tabs .nav-link.active { color: var(--eh-primary) !important; border-color: var(--eh-primary) !important; }

@media (max-width: 767px) {
    .eh-newsletter-form { flex-direction: column; }
    .eh-section { padding: 40px 0; }
    .eh-full-banner-inner { padding: 48px 0; }

    .eh-product-actions:not(.eh-product-actions--corner) {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .eh-product-actions--corner {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .eh-product-action-quick {
        min-width: 88px;
        font-size: 11px;
        padding: 0 12px;
    }

    .eh-product-action-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* ---- Homepage polish ---- */
.eh-home { background: #fff; }

.eh-products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.eh-products-swiper .eh-product-card {
    width: 100%;
}

/* Search offcanvas */
.eh-search-panel.offcanvas-top {
    height: auto !important;
    min-height: 0 !important;
    max-height: 92vh;
    overflow-y: auto;
    border: none !important;
    background: linear-gradient(180deg, #fcfaf5 0%, #ffffff 42%);
    box-shadow: 0 24px 60px rgba(26, 46, 34, 0.14);
}

.eh-search-panel.offcanvas-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--eh-primary), #b8e86a, var(--eh-primary));
}

.eh-search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    background: #fff;
    color: var(--eh-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.eh-search-close:hover {
    background: var(--eh-secondary);
    border-color: var(--eh-secondary);
    color: #fff;
    transform: rotate(90deg);
}

.eh-search-panel-inner {
    padding: 48px 20px 40px;
    max-width: 860px;
}

.eh-search-panel-head {
    text-align: center;
    margin-bottom: 28px;
}

.eh-search-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--eh-primary);
    margin-bottom: 10px;
}

.eh-search-title {
    font-family: var(--eh-font-heading) !important;
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    font-weight: 700 !important;
    color: var(--eh-secondary) !important;
    margin: 0 0 10px !important;
    line-height: 1.2 !important;
}

.eh-search-subtitle {
    margin: 0;
    font-size: 15px;
    color: var(--eh-text-light);
    line-height: 1.6;
}

.eh-search-form {
    margin-bottom: 32px;
}

.eh-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 20px;
    background: #fff;
    border: 2px solid #e8e4dc;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(45, 74, 54, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.eh-search-field:focus-within {
    border-color: var(--eh-primary);
    box-shadow: 0 12px 36px rgba(119, 191, 67, 0.18);
}

.eh-search-field-icon {
    color: var(--eh-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.eh-search-input {
    flex: 1;
    min-width: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 14px 0 !important;
    font-size: 16px !important;
    font-family: var(--eh-font) !important;
    color: var(--eh-text) !important;
    height: auto !important;
    border-radius: 0 !important;
}

.eh-search-input::placeholder {
    color: #9aa3a0;
}

.eh-search-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--eh-primary);
    color: #fff;
    font-family: var(--eh-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.eh-search-submit:hover {
    background: var(--eh-primary-dark);
    transform: translateY(-1px);
}

.eh-search-section-label {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--eh-secondary);
}

.eh-search-suggestions {
    margin-bottom: 28px;
}

.eh-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eh-search-tags a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #e3ddd2;
    border-radius: 999px;
    background: #fff;
    color: var(--eh-secondary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.eh-search-tags a:hover {
    border-color: var(--eh-primary);
    background: rgba(119, 191, 67, 0.08);
    color: var(--eh-secondary);
}

.eh-search-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.eh-search-cat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px;
    border: 1px solid #ebe6dc;
    border-radius: 12px;
    background: #fff;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.eh-search-cat-card:hover {
    border-color: var(--eh-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(45, 74, 54, 0.1);
}

.eh-search-cat-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(119, 191, 67, 0.12);
    color: var(--eh-primary);
    font-size: 15px;
}

.eh-search-cat-name {
    font-family: var(--eh-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--eh-secondary);
}

.eh-search-cat-meta {
    font-size: 12px;
    color: var(--eh-text-light);
    line-height: 1.4;
}

/* Override legacy MoonCart search styles inside panel */
.eh-search-panel .header-item-search,
.eh-search-panel .search-input {
    display: none !important;
}

.eh-search-panel.dz-search-area.offcanvas {
    height: auto !important;
    overflow: visible !important;
}

.offcanvas-backdrop.show {
    backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .eh-search-panel-inner {
        padding: 56px 32px 48px;
    }

    .eh-search-close {
        top: 28px;
        right: 28px;
    }
}

@media (max-width: 767px) {
    .eh-search-field {
        flex-wrap: wrap;
        border-radius: 16px;
        padding: 12px;
    }

    .eh-search-field-icon {
        margin-left: 4px;
    }

    .eh-search-input {
        width: 100%;
        padding: 8px 4px !important;
    }

    .eh-search-submit {
        width: 100%;
        justify-content: center;
    }

    .eh-search-cat-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart offcanvas */
.offcanvas.dz-offcanvas {
    border-left: 1px solid #eee;
}

.offcanvas.dz-offcanvas .nav-tabs {
    border-bottom: 1px solid #eee;
}

.offcanvas.dz-offcanvas .nav-tabs .nav-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--eh-text) !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 14px 20px !important;
}

/* ---- Cart drawer (right panel / mobile bottom sheet) ---- */
.eh-cart-drawer.offcanvas-end {
    width: min(420px, 100vw);
    max-width: 100%;
    border: 0;
    box-shadow: -8px 0 40px rgba(45, 74, 54, 0.12);
    display: flex;
    flex-direction: column;
    background: #fff;
}

.eh-cart-drawer-handle {
    display: none;
}

.eh-cart-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid #f0ede6;
    flex-shrink: 0;
}

.eh-cart-drawer-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--eh-primary);
    line-height: 1.2;
}

.eh-cart-drawer-subtitle {
    margin: 4px 0 0;
    font-size: 0.875rem;
    color: #7a7a7a;
}

.eh-cart-drawer-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f5f3ee;
    color: #444;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.eh-cart-drawer-close:hover {
    background: var(--eh-primary);
    color: #fff;
}

.eh-cart-drawer-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0ede6;
    flex-shrink: 0;
}

.eh-cart-drawer-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #e8e4dc;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eh-cart-drawer-tab i {
    font-size: 0.9rem;
}

.eh-cart-drawer-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ece8df;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.eh-cart-drawer-tab-count:empty {
    display: none;
}

.eh-cart-drawer-tab.is-active,
.eh-cart-drawer-tab.active {
    background: var(--eh-primary);
    border-color: var(--eh-primary);
    color: #fff;
}

.eh-cart-drawer-tab.is-active .eh-cart-drawer-tab-count,
.eh-cart-drawer-tab.active .eh-cart-drawer-tab-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.eh-cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
}

.eh-cart-drawer-body .tab-pane {
    height: 100%;
}

.eh-cart-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eh-cart-drawer-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: start;
}

.eh-cart-drawer-item-media {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f6f1;
    border: 1px solid #eee;
}

.eh-cart-drawer-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-cart-drawer-item-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--eh-text);
    text-decoration: none;
    line-height: 1.35;
    margin-bottom: 4px;
}

.eh-cart-drawer-item-title:hover {
    color: var(--eh-primary);
}

.eh-cart-drawer-item-meta {
    margin: 0 0 4px;
    font-size: 0.75rem;
    color: #888;
}

.eh-cart-drawer-item-price {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--eh-primary);
}

.eh-cart-drawer-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #f8f6f1;
    font-size: 0.8125rem;
    color: #555;
}

.eh-cart-drawer-hint i {
    color: var(--eh-primary);
}

.eh-cart-drawer-hint--success {
    background: #edf6ef;
    color: #2d5a3d;
}

.eh-cart-drawer-hint--success i {
    color: #3d8b55;
}

.eh-cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: 0.9375rem;
}

.eh-cart-drawer-subtotal strong {
    font-size: 1.125rem;
    color: var(--eh-primary);
}

.eh-cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-bottom: 8px;
}

.eh-cart-drawer-checkout {
    min-height: 48px;
    font-weight: 600;
}

.eh-cart-drawer-view {
    min-height: 44px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--eh-text);
    font-weight: 600;
}

.eh-cart-drawer-view:hover {
    background: #f8f6f1;
    color: var(--eh-primary);
}

.eh-cart-drawer-empty {
    text-align: center;
    padding: 32px 12px 20px;
}

.eh-cart-drawer-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f5f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--eh-primary);
}

.eh-cart-drawer-empty h3 {
    margin: 0 0 8px;
    font-size: 1.125rem;
    color: var(--eh-text);
}

.eh-cart-drawer-empty p {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: #777;
}

.eh-cart-drawer-wishlist {
    min-height: 200px;
}

.eh-cart-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 16px);
    z-index: 1090;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--eh-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(45, 74, 54, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.eh-cart-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 767.98px) {
    .eh-cart-drawer.offcanvas-end {
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-height: 92vh;
        height: auto;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -12px 40px rgba(45, 74, 54, 0.18);
        transform: translateY(100%) !important;
    }

    .eh-cart-drawer.offcanvas-end.showing,
    .eh-cart-drawer.offcanvas-end.show {
        transform: translateY(0) !important;
    }

    .eh-cart-drawer-handle {
        display: block;
        width: 44px;
        height: 4px;
        margin: 10px auto 0;
        border-radius: 999px;
        background: #d8d4cb;
        flex-shrink: 0;
    }

    .eh-cart-drawer-header {
        padding: 12px 18px 14px;
    }

    .eh-cart-drawer-title {
        font-size: 1.2rem;
    }

    .eh-cart-drawer-body {
        padding: 12px 16px 24px;
        max-height: calc(92vh - 150px);
    }

    .eh-cart-drawer-item {
        grid-template-columns: 64px 1fr;
    }

    .eh-cart-drawer-item-media {
        width: 64px;
        height: 64px;
    }

    .eh-cart-drawer-actions {
        position: sticky;
        bottom: 0;
        margin-top: 20px;
        padding-top: 12px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 24%);
    }

    .eh-cart-toast {
        bottom: max(20px, env(safe-area-inset-bottom));
        width: calc(100% - 32px);
        max-width: 360px;
        justify-content: center;
    }
}

/* MoonCart bleed fixes */
.eh-home .row { --bs-gutter-x: 1rem; }

@media (min-width: 768px) {
    .eh-home .row { --bs-gutter-x: 1.5rem; }
}

.eh-home h2,
.eh-home h3,
.eh-home h4,
.eh-home h5 { margin-top: 0; }

/* ---- Trust Row ---- */
.eh-trust-row {
    padding: 56px 0 64px;
    background: #fcfaf5;
    border-top: 1px solid #eee;
}

/* ---- Review cards on homepage ---- */
.eh-section--reviews .eh-review-card {
    border-radius: 8px;
    border: 1px solid #eee;
    height: 100%;
}

.eh-section--reviews .eh-review-card:hover {
    box-shadow: 0 8px 28px rgba(45, 74, 54, 0.08);
}

/* ---- Quick View Modal ---- */
.eh-quick-view-modal .modal-dialog {
    max-width: 1040px;
}

.eh-quick-view-modal .modal-content {
    border: 0;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
}

.eh-quick-view-modal .modal-body {
    padding: 36px 32px 32px;
}

.eh-qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.eh-qv-close:hover {
    color: #000;
}

.eh-qv-loading {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #777;
    font-size: 15px;
}

.eh-qv-gallery {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: start;
}

.eh-qv-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eh-qv-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.eh-qv-thumb.is-active {
    border-color: #111;
}

.eh-qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eh-qv-main {
    background: #f6f6f6;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eh-qv-main img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.eh-qv-badge {
    display: inline-block;
    background: #6f42c1;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.eh-qv-title {
    margin: 0 0 12px !important;
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
}

.eh-qv-title a {
    color: #222 !important;
    text-decoration: none !important;
}

.eh-qv-title a:hover {
    color: var(--eh-secondary) !important;
}

.eh-qv-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.eh-qv-stars {
    display: inline-flex;
    gap: 3px;
    font-size: 13px;
}

.eh-qv-stars .fa-star {
    color: #f5a623;
}

.eh-qv-stars .eh-star-empty {
    color: #ddd;
}

.eh-qv-rating-text {
    font-size: 13px;
    color: #777;
}

.eh-qv-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #777;
    margin-bottom: 24px;
}

.eh-qv-purchase {
    display: flex;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 22px;
}

.eh-qv-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.eh-qv-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.eh-qv-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.eh-qv-price del {
    font-size: 1rem;
    color: #b0b0b0;
}

.eh-qv-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
}

.eh-qv-qty-btn {
    width: 38px;
    height: 42px;
    border: 0;
    background: transparent;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

.eh-qv-qty input {
    width: 48px;
    height: 42px;
    border: 0;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    font-size: 14px;
    color: #333;
    -moz-appearance: textfield;
}

.eh-qv-qty input::-webkit-outer-spin-button,
.eh-qv-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.eh-qv-actions {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
}

.eh-qv-btn-cart {
    min-width: 180px;
    height: 48px;
    padding: 0 24px;
    border: 0;
    background: #2b2b2b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.eh-qv-btn-cart:hover:not(:disabled) {
    background: #000;
}

.eh-qv-btn-cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.eh-qv-btn-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.eh-qv-btn-wishlist:hover {
    background: #fff;
    border-color: #ccc;
    color: #222;
}

.eh-qv-meta {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px solid #ececec;
}

.eh-qv-meta li {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 6px;
}

.eh-qv-meta li:last-child {
    margin-bottom: 0;
}

.eh-qv-meta strong {
    color: #222;
    margin-right: 6px;
}

.eh-qv-meta a {
    color: #666;
    text-decoration: none;
}

.eh-qv-meta a:hover {
    color: var(--eh-primary);
}

.eh-qv-meta span span {
    display: inline-block;
    margin-right: 6px;
}

.eh-quick-view-modal .modal-backdrop.show {
    opacity: 0.55;
}

@media (max-width: 991px) {
    .eh-quick-view-modal .modal-body {
        padding: 28px 20px 24px;
    }

    .eh-qv-gallery {
        grid-template-columns: 1fr;
    }

    .eh-qv-thumbs {
        flex-direction: row;
        order: 2;
        overflow-x: auto;
    }

    .eh-qv-main {
        min-height: 300px;
    }

    .eh-qv-main img {
        min-height: 300px;
    }

    .eh-qv-purchase {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .eh-qv-actions {
        flex-direction: column;
    }

    .eh-qv-btn-cart,
    .eh-qv-btn-wishlist {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Blog (Top Picks style) ---- */
.eh-blog-section {
    background-color: #f5f5f5;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.85) 0%, transparent 40%),
        linear-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px);
    background-size: auto, auto, 36px 36px, 36px 36px;
    position: relative;
}

.eh-blog-picks-label {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #8a8a8a;
    margin: 0 0 28px;
    letter-spacing: 0.02em;
}

.eh-blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.eh-blog-filter {
    appearance: none;
    border: 1px solid #e3e3e3;
    background: #fff;
    color: #222;
    font-family: var(--eh-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 11px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.eh-blog-filter:hover {
    border-color: #cfcfcf;
}

.eh-blog-filter.is-active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.eh-blog-picks-grid {
    margin-bottom: 8px;
}

.eh-blog-section-footer {
    text-align: center;
    margin-top: 36px;
}

.eh-blog-pick-card {
    background: #fff;
    border-radius: 20px;
    padding: 14px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.eh-blog-pick-card:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.eh-blog-pick-media {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.eh-blog-pick-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.eh-blog-pick-card:hover .eh-blog-pick-media::after {
    background: rgba(0, 0, 0, 0.28);
}

.eh-blog-pick-image {
    position: relative;
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eh-blog-pick-image--eco {
    background: linear-gradient(145deg, #eef6e8 0%, #d4ebc4 50%, #bddfa8 100%);
}

.eh-blog-pick-image--pet {
    background: linear-gradient(145deg, #fff3ea 0%, #ffe2cc 50%, #ffd1ad 100%);
}

.eh-blog-pick-image--pool {
    background: linear-gradient(145deg, #eaf6fd 0%, #cce9f8 50%, #aedaf2 100%);
}

.eh-blog-pick-image--personal {
    background: linear-gradient(145deg, #fdf0f5 0%, #f8d5e4 50%, #f2bdd4 100%);
}

.eh-blog-pick-product {
    width: 52%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
    transition: transform 0.45s ease;
}

.eh-blog-pick-card:hover .eh-blog-pick-product {
    transform: scale(1.05);
}

.eh-blog-pick-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.eh-blog-pick-card:hover .eh-blog-pick-photo {
    transform: scale(1.05);
}

.eh-blog-pick-open {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 50px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.eh-blog-pick-card:hover .eh-blog-pick-open {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.eh-blog-pick-body {
    padding: 18px 8px 8px;
}

.eh-blog-pick-title {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    margin: 0 0 10px !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

.eh-blog-pick-title a {
    color: inherit !important;
    text-decoration: none;
}

.eh-blog-pick-title a:hover {
    color: var(--eh-primary-dark) !important;
}

.eh-blog-pick-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #7a7a7a;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eh-blog-pick-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.eh-blog-pick-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    min-width: 0;
}

.eh-blog-pick-author span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eh-blog-pick-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #efefef;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eh-blog-pick-read {
    font-size: 13px;
    color: #8a8a8a;
    white-space: nowrap;
    flex-shrink: 0;
}

.eh-container--narrow {
    max-width: 800px;
}

.eh-blog-article-header {
    margin-bottom: 28px;
}

.eh-blog-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eh-primary-dark);
    margin-bottom: 10px;
}

.eh-blog-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--eh-text-light);
    margin-top: 10px;
}

.eh-blog-card-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--eh-border);
}

.eh-blog-article-cover {
    border-radius: var(--eh-radius);
    overflow: hidden;
    margin-bottom: 32px;
    background: var(--eh-bg-soft);
}

.eh-blog-article-cover img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.eh-blog-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--eh-text);
}

.eh-blog-article-content h3 {
    font-size: 1.15rem !important;
    margin: 28px 0 12px !important;
    color: var(--eh-secondary) !important;
}

.eh-blog-article-content p {
    margin-bottom: 16px;
}

.eh-blog-article-content a {
    color: var(--eh-primary-dark);
    font-weight: 600;
}

.eh-blog-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--eh-border);
}

.eh-blog-related h2 {
    font-size: 1.5rem !important;
    margin-bottom: 28px !important;
    text-align: center;
}

@media (max-width: 767.98px) {
    .eh-blog-filters {
        gap: 8px;
        margin-bottom: 28px;
    }

    .eh-blog-filter {
        padding: 10px 16px;
        font-size: 13px;
    }

    .eh-blog-pick-body {
        padding: 16px 6px 6px;
    }

    .eh-blog-pick-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ---- Blog pages ---- */
.eh-blog-page {
    background: #fff;
}

.eh-blog-breadcrumbs {
    padding: 20px 0 0;
}

.eh-blog-breadcrumbs--page {
    padding-bottom: 8px;
}

.eh-blog-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #8a8a8a;
}

.eh-blog-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eh-blog-breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: #ccc;
    margin-left: 8px;
}

.eh-blog-breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.eh-blog-breadcrumbs a:hover {
    color: var(--eh-primary-dark);
}

.eh-blog-breadcrumbs li[aria-current="page"] {
    color: #1a1a1a;
    font-weight: 500;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eh-blog-page-intro {
    text-align: center;
    margin-bottom: 8px;
}

.eh-blog-page-intro h1,
.eh-blog-page-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
    color: #1a1a1a !important;
    margin: 0 0 10px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-blog-page-intro p {
    color: #7a7a7a;
    font-size: 16px;
    margin: 0;
}

.eh-blog-section--page {
    padding-top: 24px;
}

.eh-blog-pagination {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.eh-blog-pagination nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.eh-blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-blog-pagination .page-item {
    display: inline-flex;
}

.eh-blog-pagination .page-link {
    border-radius: 50px !important;
    border: 1px solid #e3e3e3 !important;
    color: #333 !important;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 600;
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
}

.eh-blog-pagination .page-link:hover {
    border-color: var(--eh-primary) !important;
    color: var(--eh-secondary) !important;
    background: var(--eh-bg-soft) !important;
}

.eh-blog-pagination .page-item.active .page-link {
    background: var(--eh-secondary) !important;
    border-color: var(--eh-secondary) !important;
    color: #fff !important;
}

.eh-blog-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

.eh-blog-empty {
    text-align: center;
    padding: 48px 20px;
}

.eh-blog-empty p {
    color: #7a7a7a;
    margin-bottom: 20px;
}

.eh-blog-page--article .eh-container--article {
    max-width: 1180px;
}

.eh-blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
    padding-bottom: 56px;
}

.eh-blog-article-main {
    min-width: 0;
}

.eh-blog-article-sidebar {
    position: sticky;
    top: 96px;
}

.eh-blog-sidebar-card {
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.eh-blog-sidebar-heading {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 18px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.eh-blog-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eh-blog-sidebar-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    padding: 10px;
    margin: -10px;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.eh-blog-sidebar-item:hover {
    background: var(--eh-bg-soft);
}

.eh-blog-sidebar-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eh-blog-sidebar-thumb--eco {
    background: linear-gradient(145deg, #eef6e8 0%, #d4ebc4 100%);
}

.eh-blog-sidebar-thumb--pet {
    background: linear-gradient(145deg, #fff3ea 0%, #ffe2cc 100%);
}

.eh-blog-sidebar-thumb--pool {
    background: linear-gradient(145deg, #eaf6fd 0%, #cce9f8 100%);
}

.eh-blog-sidebar-thumb--personal {
    background: linear-gradient(145deg, #fdf0f5 0%, #f8d5e4 100%);
}

.eh-blog-sidebar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-blog-sidebar-icon {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.eh-blog-sidebar-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.eh-blog-sidebar-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--eh-primary-dark);
}

.eh-blog-sidebar-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eh-blog-sidebar-item:hover .eh-blog-sidebar-title {
    color: var(--eh-primary-dark);
}

.eh-blog-sidebar-meta {
    font-size: 12px;
    color: #8a8a8a;
}

.eh-blog-sidebar-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: var(--eh-secondary);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.eh-blog-sidebar-all:hover {
    color: var(--eh-primary-dark);
    gap: 12px;
}

.eh-blog-article-back {
    margin-top: 32px;
}

.eh-blog-page--article .eh-container {
    max-width: 1180px;
}

.eh-blog-article-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 32px;
}

.eh-blog-article-hero--eco {
    background: linear-gradient(145deg, #eef6e8 0%, #d4ebc4 50%, #bddfa8 100%);
}

.eh-blog-article-hero--pet {
    background: linear-gradient(145deg, #fff3ea 0%, #ffe2cc 50%, #ffd1ad 100%);
}

.eh-blog-article-hero--pool {
    background: linear-gradient(145deg, #eaf6fd 0%, #cce9f8 50%, #aedaf2 100%);
}

.eh-blog-article-hero--personal {
    background: linear-gradient(145deg, #fdf0f5 0%, #f8d5e4 50%, #f2bdd4 100%);
}

.eh-blog-article-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-blog-article-hero-product {
    position: relative;
    z-index: 1;
    width: 28%;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.12));
}

.eh-blog-article-head {
    margin-bottom: 32px;
}

.eh-blog-article-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eh-primary-dark);
    background: var(--eh-primary-light);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.eh-blog-article-head h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    line-height: 1.25 !important;
    color: #1a1a1a !important;
    margin: 0 0 14px !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.eh-blog-article-lead {
    font-size: 17px;
    line-height: 1.65;
    color: #666;
    margin: 0 0 20px;
}

.eh-blog-article-byline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #8a8a8a;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.eh-blog-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    padding-bottom: 40px;
}

.eh-blog-article-content h3 {
    font-size: 1.15rem !important;
    margin: 32px 0 12px !important;
    color: #1a1a1a !important;
}

.eh-blog-article-content p {
    margin-bottom: 18px;
}

.eh-blog-article-content a {
    color: var(--eh-primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.eh-blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.eh-blog-article-content th,
.eh-blog-article-content td {
    border: 1px solid var(--eh-border);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.eh-blog-article-content th {
    background: var(--eh-bg-soft);
    font-weight: 600;
    color: var(--eh-secondary);
}

.eh-blog-article-content ul,
.eh-blog-article-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.eh-blog-article-content li {
    margin-bottom: 8px;
}

.eh-blog-article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--eh-secondary) 0%, #3d6349 100%);
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 16px;
}

.eh-blog-article-cta h3 {
    color: #fff !important;
    font-size: 1.15rem !important;
    margin: 0 0 6px !important;
}

.eh-blog-article-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.eh-blog-related-section {
    padding-top: 48px;
}

.eh-blog-related-heading {
    text-align: center;
    font-size: 1.5rem !important;
    color: #1a1a1a !important;
    margin: 0 0 32px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-blog-section-footer--inline {
    margin: 32px 0 48px;
}

@media (max-width: 991.98px) {
    .eh-blog-article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eh-blog-article-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .eh-blog-article-hero {
        aspect-ratio: 16 / 10;
        min-height: 180px;
    }

    .eh-blog-article-hero-product {
        width: 42%;
    }

    .eh-blog-article-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .eh-blog-article-cta .eh-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---- About Page ---- */
.eh-about-page {
    background: #fff;
}

.eh-about-values {
    padding: 56px 0;
    background: var(--eh-bg-cream);
}

.eh-about-value-card {
    text-align: center;
    height: 100%;
    padding: 8px 10px;
}

.eh-about-value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1.5px solid var(--eh-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eh-secondary);
    font-size: 26px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.eh-about-value-card:hover .eh-about-value-icon {
    background: var(--eh-secondary);
    border-color: var(--eh-secondary);
    color: #fff;
}

.eh-about-value-card h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--eh-secondary) !important;
    margin: 0 0 10px !important;
}

.eh-about-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--eh-text);
    margin: 0;
}

.eh-about-mission {
    padding: 72px 0;
    background: #fff;
}

.eh-about-mission-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.eh-about-mission-inner h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem) !important;
    line-height: 1.35 !important;
    color: var(--eh-secondary) !important;
    margin: 0 0 24px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-about-mission-inner p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--eh-text);
    margin: 0 0 18px;
}

.eh-about-mission-inner p:last-child {
    margin-bottom: 0;
}

.eh-about-guarantees {
    padding: 0 0 72px;
    background: #fff;
}

.eh-about-guarantee-card {
    background: var(--eh-bg-soft);
    border: 1px solid var(--eh-border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.eh-about-guarantee-card:hover {
    box-shadow: var(--eh-shadow);
    transform: translateY(-3px);
}

.eh-about-guarantee-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--eh-primary-light);
    color: var(--eh-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.eh-about-guarantee-card h3 {
    font-size: 1rem !important;
    color: var(--eh-secondary) !important;
    margin: 0 0 10px !important;
    text-transform: none !important;
}

.eh-about-guarantee-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--eh-text-light);
    margin: 0;
}

.eh-about-cta-section {
    padding: 0 0 64px;
}

.eh-about-cta {
    background: linear-gradient(135deg, var(--eh-secondary) 0%, #3d6349 55%, var(--eh-primary-dark) 100%);
    border-radius: 20px;
    padding: 52px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eh-about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 80%, rgba(119, 191, 67, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.eh-about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.eh-about-cta h2 {
    color: #fff !important;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem) !important;
    margin: 0 0 10px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-about-cta-sub {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 16px !important;
}

.eh-about-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.eh-about-cta-content p strong {
    color: #fff;
}

@media (max-width: 767.98px) {
    .eh-about-mission {
        padding: 48px 0;
    }

    .eh-about-values {
        padding: 40px 0;
    }

    .eh-about-cta {
        padding: 36px 24px;
    }
}

/* ---- Product Detail Page (PDP) ---- */
.eh-pdp-page {
    background: #fff;
}

.eh-pdp-main {
    padding: 40px 0 48px;
}

.eh-pdp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.eh-pdp-gallery-main {
    position: relative;
    background: #efeeea;
    border-radius: 0;
    padding: 40px 64px;
}

.eh-pdp-gallery-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.eh-pdp-gallery-frame img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.eh-pdp-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--eh-border);
    background: #fff;
    color: var(--eh-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.eh-pdp-gallery-nav:hover {
    background: var(--eh-secondary);
    color: #fff;
    border-color: var(--eh-secondary);
}

.eh-pdp-gallery-prev { left: 16px; }
.eh-pdp-gallery-next { right: 16px; }

.eh-pdp-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.eh-pdp-thumb {
    width: 96px;
    height: 96px;
    padding: 8px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background: #efeeea;
    cursor: pointer;
    transition: border-color 0.2s;
}

.eh-pdp-thumb.is-active {
    border-color: var(--eh-secondary);
    box-shadow: inset 0 0 0 1px var(--eh-secondary);
}

.eh-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.eh-pdp-category {
    display: inline-block;
    font-size: 13px;
    color: var(--eh-text-light);
    text-decoration: none;
    margin-bottom: 8px;
}

.eh-pdp-category:hover {
    color: var(--eh-primary-dark);
}

.eh-pdp-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.eh-pdp-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem) !important;
    line-height: 1.25 !important;
    color: var(--eh-secondary) !important;
    margin: 0 !important;
    flex: 1;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.eh-pdp-stock {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.eh-pdp-stock--out {
    background: #fdecea;
    color: #c62828;
}

.eh-pdp-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.eh-pdp-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
    font-size: 14px;
}

.eh-pdp-stars--lg {
    font-size: 16px;
}

.eh-pdp-stars .eh-star-empty {
    color: #e4e5e8;
}

.eh-pdp-rating-value,
.eh-pdp-rating-text {
    font-weight: 600;
    color: var(--eh-secondary);
    font-size: 14px;
}

.eh-pdp-rating-text .eh-pdp-review-link {
    font-weight: 400;
    margin-left: 4px;
}

.eh-pdp-review-link {
    color: var(--eh-text-light);
    font-size: 14px;
    text-decoration: none;
}

.eh-pdp-review-link:hover {
    color: var(--eh-primary-dark);
    text-decoration: underline;
}

.eh-pdp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.eh-pdp-price-current {
    font-family: var(--eh-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #c9a86c;
}

.eh-pdp-price-compare {
    font-size: 1.1rem;
    color: var(--eh-text-light);
    text-decoration: line-through;
}

.eh-pdp-excerpt {
    color: var(--eh-text-light);
    line-height: 1.8;
    margin-bottom: 22px;
    font-size: 14px;
}

.eh-pdp-sizes {
    margin-bottom: 24px;
}

.eh-pdp-sizes-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--eh-secondary);
    margin-bottom: 10px;
}

.eh-pdp-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eh-pdp-size-pill {
    min-width: 72px;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    color: var(--eh-text);
    font-size: 13px;
    font-weight: 500;
    cursor: default;
}

.eh-pdp-size-pill.is-active {
    background: var(--eh-secondary);
    border-color: var(--eh-secondary);
    color: #fff;
}

.eh-pdp-actions-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.eh-pdp-purchase {
    flex: 1;
    min-width: 0;
}

.eh-pdp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.eh-pdp-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.eh-pdp-qty-btn {
    width: 42px;
    height: 48px;
    border: 0;
    background: #fff;
    color: var(--eh-secondary);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.eh-pdp-qty-btn:hover {
    background: var(--eh-bg-soft);
}

.eh-pdp-qty-input {
    width: 48px;
    height: 48px;
    border: 0;
    border-left: 1px solid var(--eh-border);
    border-right: 1px solid var(--eh-border);
    text-align: center;
    font-weight: 600;
    color: var(--eh-secondary);
    background: #fff;
    -moz-appearance: textfield;
}

.eh-pdp-qty-input::-webkit-outer-spin-button,
.eh-pdp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.eh-pdp-btn-cart,
.eh-pdp-btn-buy {
    min-width: 130px;
    padding: 15px 22px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 4px !important;
}

.eh-pdp-btn-cart {
    background: var(--eh-secondary) !important;
    border-color: var(--eh-secondary) !important;
    color: #fff !important;
}

.eh-pdp-btn-cart:hover {
    background: var(--eh-secondary-light) !important;
    border-color: var(--eh-secondary-light) !important;
    color: #fff !important;
}

.eh-pdp-wishlist {
    width: 48px;
    height: 48px;
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--eh-secondary);
    background: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.eh-pdp-wishlist:hover {
    background: var(--eh-bg-soft);
    color: var(--eh-primary-dark);
    border-color: var(--eh-primary);
}

.eh-pdp-wishlist-form {
    margin: 0;
}

.eh-pdp-meta {
    padding-top: 20px;
    border-top: 1px solid var(--eh-border);
    font-size: 14px;
    color: var(--eh-text);
}

.eh-pdp-meta p {
    margin: 0 0 10px;
}

.eh-pdp-tags span {
    color: var(--eh-text-light);
}

.eh-pdp-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.eh-pdp-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--eh-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s, transform 0.2s;
}

.eh-pdp-share a:hover {
    background: var(--eh-secondary-light);
    transform: translateY(-1px);
    color: #fff;
}

.eh-pdp-tabs-section {
    padding: 8px 0 72px;
    border-top: 1px solid #efefef;
}

.eh-pdp-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    border-bottom: 1px solid var(--eh-border);
    margin-bottom: 32px;
}

.eh-pdp-tab {
    background: none;
    border: 0;
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--eh-text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.eh-pdp-tab.is-active {
    color: var(--eh-secondary);
}

.eh-pdp-tab.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--eh-secondary);
}

.eh-pdp-panel {
    display: none;
    max-width: 960px;
    margin: 0 auto;
}

.eh-pdp-panel.is-active {
    display: block;
}

.eh-pdp-description {
    color: var(--eh-text);
    line-height: 1.85;
    font-size: 15px;
}

.eh-pdp-info-table {
    width: 100%;
    border-collapse: collapse;
}

.eh-pdp-info-table th,
.eh-pdp-info-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--eh-border);
    text-align: left;
    font-size: 14px;
}

.eh-pdp-info-table th {
    width: 200px;
    color: var(--eh-secondary);
    font-weight: 600;
}

.eh-pdp-reviews-summary {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: center;
    padding: 0 0 36px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--eh-border);
}

.eh-pdp-reviews-avg {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--eh-secondary);
    line-height: 1.1;
}

.eh-pdp-reviews-avg small {
    font-size: 14px;
    font-weight: 500;
    color: var(--eh-text-light);
}

.eh-pdp-reviews-count {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-pdp-review-bar-row {
    display: grid;
    grid-template-columns: 16px 1fr 40px;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-pdp-review-bar {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.eh-pdp-review-bar span {
    display: block;
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.eh-pdp-reviews-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.eh-pdp-reviews-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-pdp-sort-select {
    border: 1px solid var(--eh-border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--eh-text);
    background: #fff;
}

.eh-pdp-reviews-list-header h3 {
    margin: 0 !important;
    font-size: 1.1rem !important;
    color: var(--eh-secondary) !important;
}

.eh-pdp-reviews-list-header p {
    margin: 0;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-pdp-review-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--eh-border);
}

.eh-pdp-review-card-head,
.eh-pdp-review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.eh-pdp-review-author-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.eh-pdp-review-author-line .eh-pdp-verified {
    margin-left: 0;
}

.eh-pdp-review-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.eh-pdp-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--eh-primary-light);
    color: var(--eh-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.eh-pdp-review-author strong {
    display: block;
    color: var(--eh-secondary);
    font-size: 14px;
}

.eh-pdp-review-author time {
    display: block;
    font-size: 12px;
    color: var(--eh-text-light);
    margin-top: 2px;
}

.eh-pdp-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #2e7d32;
    margin-left: 6px;
}

.eh-pdp-review-card-rating {
    text-align: right;
}

.eh-pdp-review-card-rating > span {
    display: block;
    font-weight: 700;
    color: var(--eh-secondary);
    margin-bottom: 4px;
}

.eh-pdp-review-title {
    font-size: 15px !important;
    margin: 0 0 10px !important;
    color: var(--eh-secondary) !important;
    font-weight: 600 !important;
}

.eh-pdp-review-text,
.eh-pdp-review-card p {
    margin: 0;
    color: var(--eh-text-light);
    line-height: 1.7;
    font-size: 14px;
}

.eh-pdp-reviews-empty,
.eh-pdp-login-review {
    color: var(--eh-text-light);
    font-size: 14px;
}

.eh-pdp-write-review {
    margin-top: 32px;
    padding: 28px;
    background: var(--eh-bg-soft);
    border-radius: 12px;
}

.eh-pdp-write-review h3 {
    margin: 0 0 16px !important;
    font-size: 1.1rem !important;
}

.eh-pdp-related {
    background: var(--eh-bg-cream);
    padding-top: 48px;
    padding-bottom: 64px;
}

@media (max-width: 991.98px) {
    .eh-pdp-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eh-pdp-reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .eh-pdp-main {
        padding: 32px 0 24px;
    }

    .eh-pdp-gallery-main {
        padding: 24px 48px;
    }

    .eh-pdp-gallery-frame {
        min-height: 280px;
    }

    .eh-pdp-tabs {
        gap: 16px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .eh-pdp-purchase-wrap {
        flex-direction: column;
    }

    .eh-pdp-actions-row {
        flex-direction: column;
    }

    .eh-pdp-btn-cart,
    .eh-pdp-btn-buy {
        flex: 1;
        min-width: 0;
    }

    .eh-pdp-actions {
        width: 100%;
    }
}

/* ---- Product page (MoonCart + EcoHaven polish) ---- */
.eh-product-page .eh-product-main {
    padding: 64px 0 56px;
}

.eh-product-page .eh-page-hero + .eh-product-main {
    margin-top: 8px;
}

.eh-product-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--eh-primary-dark);
    text-decoration: none;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eh-product-category:hover {
    color: var(--eh-secondary);
}

.eh-product-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.eh-product-page .dz-product-detail.style-2 .dz-content .review-num {
    margin: 0 0 18px;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.eh-product-page .dz-product-detail .para-text {
    margin-bottom: 22px;
    line-height: 1.75;
}

.eh-product-page .dz-product-detail .dz-content-footer {
    margin-bottom: 10px;
}

.eh-product-page .dz-product-detail .meta-content {
    margin-top: 4px;
    margin-bottom: 28px !important;
}

.eh-product-purchase-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 28px 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--eh-border);
    margin-bottom: 28px !important;
}

.eh-product-price-block,
.eh-product-qty-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.eh-product-qty-block .price-name,
.eh-product-price-block .price-name {
    display: block;
    margin: 0;
    line-height: 1.2;
}

.eh-product-price-block .price-num {
    line-height: 1.2;
}

.eh-qty-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--eh-border);
    border-radius: 50px;
    background: #fff;
    overflow: hidden;
    min-height: 44px;
}

.eh-qty-btn {
    width: 44px;
    min-width: 44px;
    border: none;
    background: #f3f3f3;
    color: var(--eh-secondary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    padding: 0;
}

.eh-qty-btn:hover {
    background: var(--eh-primary-light, #e8f5e9);
    color: var(--eh-secondary);
}

.eh-qty-btn:active {
    background: #e0e0e0;
}

.eh-qty-stepper .eh-product-qty {
    width: 56px;
    min-width: 56px;
    border: none;
    border-left: 1px solid var(--eh-border);
    border-right: 1px solid var(--eh-border);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--eh-secondary);
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 10px 4px;
}

.eh-qty-stepper .eh-product-qty::-webkit-outer-spin-button,
.eh-qty-stepper .eh-product-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.eh-qty-stepper .eh-product-qty:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(45, 90, 60, 0.18);
}

.eh-product-page .dz-product-detail .title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem) !important;
    line-height: 1.3 !important;
    color: var(--eh-secondary) !important;
    margin: 0 !important;
    flex: 1;
}

.eh-product-stock {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.eh-product-stock--out {
    background: #fdecea;
    color: #c62828;
}

.eh-product-trust-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.eh-product-trust-list li {
    font-size: 13px;
    color: var(--eh-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.eh-product-trust-list i {
    color: var(--eh-primary);
}

.eh-product-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--eh-border);
    color: var(--eh-text-light);
    margin-right: 6px;
    transition: all 0.2s;
}

.eh-product-share a:hover {
    background: var(--eh-secondary);
    border-color: var(--eh-secondary);
    color: #fff;
}

.eh-product-cart-box {
    border: 1px solid var(--eh-border);
    border-radius: 12px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.eh-cart-box-header h5 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: var(--eh-secondary);
}

.eh-cart-box-header p {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-cart-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--eh-bg-soft);
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--eh-text);
}

.eh-cart-promo i {
    color: var(--eh-primary);
    font-size: 18px;
}

.eh-cart-total-table {
    width: 100%;
    margin-bottom: 16px;
}

.eh-cart-note {
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-cart-note a {
    color: var(--eh-secondary);
    text-decoration: none;
}

/* ---- Cart page ---- */
.eh-cart-page {
    background: #fff;
}

.eh-cart-main {
    padding: 48px 0 72px;
}

.eh-cart-intro {
    margin: 0 0 24px;
    font-size: 15px;
    color: var(--eh-text-light);
}

.eh-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eh-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius-sm);
    transition: box-shadow 0.2s;
}

.eh-cart-item:hover {
    box-shadow: var(--eh-shadow);
}

.eh-cart-item-media {
    display: block;
    background: var(--eh-bg-soft);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--eh-border);
}

.eh-cart-item-media img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    display: block;
}

.eh-cart-item-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--eh-primary-dark);
    margin-bottom: 6px;
}

.eh-cart-item-title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 0 6px !important;
}

.eh-cart-item-title a {
    color: var(--eh-secondary);
    text-decoration: none;
}

.eh-cart-item-title a:hover {
    color: var(--eh-primary-dark);
}

.eh-cart-item-unit {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--eh-text-light);
}

.eh-cart-qty-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.eh-cart-qty-label {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: var(--eh-text-light);
    margin: 0;
}

.eh-qty-stepper--sm {
    min-height: 38px;
}

.eh-qty-stepper--sm .eh-qty-btn {
    width: 38px;
    min-width: 38px;
    font-size: 18px;
}

.eh-qty-stepper--sm .eh-product-qty {
    width: 48px;
    min-width: 48px;
    padding: 8px 4px;
    font-size: 15px;
}

.eh-cart-update-btn {
    border: 1px solid var(--eh-border);
    background: #fff;
    color: var(--eh-secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.eh-cart-update-btn:hover {
    border-color: var(--eh-primary);
    background: var(--eh-bg-soft);
}

.eh-cart-item-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 100px;
}

.eh-cart-item-subtotal {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--eh-secondary);
    white-space: nowrap;
}

.eh-cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: var(--eh-text-light);
    font-size: 13px;
    padding: 4px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.eh-cart-remove-btn:hover {
    color: #c62828;
}

.eh-cart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--eh-border);
}

.eh-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--eh-secondary);
    text-decoration: none;
}

.eh-cart-continue:hover {
    color: var(--eh-primary-dark);
}

.eh-cart-clear-btn {
    border: none;
    background: transparent;
    color: var(--eh-text-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.eh-cart-clear-btn:hover {
    color: #c62828;
}

.eh-cart-summary {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    padding: 28px;
    box-shadow: var(--eh-shadow-lg);
}

.eh-cart-summary h3 {
    font-size: 1.2rem !important;
    margin: 0 0 4px !important;
    color: var(--eh-secondary) !important;
}

.eh-cart-summary-note {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-cart-shipping-hint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    background: var(--eh-bg-soft);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--eh-text);
}

.eh-cart-shipping-hint i {
    color: var(--eh-primary);
    margin-top: 2px;
}

.eh-cart-shipping-hint--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.eh-cart-shipping-hint--success i {
    color: #2e7d32;
}

.eh-cart-summary-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.eh-cart-summary-table td {
    padding: 10px 0;
    font-size: 14px;
    color: var(--eh-text);
    border-bottom: 1px solid var(--eh-border);
}

.eh-cart-summary-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--eh-secondary);
}

.eh-cart-summary-total td {
    border-bottom: none;
    padding-top: 16px;
    font-size: 1.1rem;
    font-weight: 700 !important;
    color: var(--eh-secondary) !important;
}

.eh-cart-free {
    color: #2e7d32;
    font-weight: 700;
}

.eh-cart-checkout-btn {
    padding: 14px 20px !important;
    font-weight: 600;
    border-radius: 50px !important;
}

.eh-cart-whatsapp-note {
    margin-top: 14px;
    font-size: 13px;
}

.eh-cart-whatsapp-note a {
    color: var(--eh-secondary);
    text-decoration: none;
    font-weight: 600;
}

.eh-cart-empty {
    text-align: center;
    max-width: 420px;
    margin: 24px auto 48px;
    padding: 48px 24px;
}

.eh-cart-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eh-primary-light);
    color: var(--eh-primary-dark);
    border-radius: 50%;
    font-size: 32px;
}

.eh-cart-empty h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
}

.eh-cart-empty p {
    color: var(--eh-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .eh-cart-item {
        grid-template-columns: 80px 1fr;
        gap: 14px;
    }

    .eh-cart-item-aside {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: 8px;
        border-top: 1px dashed var(--eh-border);
    }

    .eh-cart-summary {
        position: static;
    }

    .eh-cart-toolbar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* ---- Confirm modal (cart, etc.) ---- */
.eh-confirm-modal .modal-dialog {
    max-width: 420px;
}

.eh-confirm-modal-content {
    border: none;
    border-radius: var(--eh-radius);
    padding: 8px 8px 24px;
    box-shadow: var(--eh-shadow-lg);
    position: relative;
}

.eh-confirm-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--eh-bg-soft);
    color: var(--eh-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.eh-confirm-modal-close:hover {
    background: var(--eh-border);
    color: var(--eh-secondary);
}

.eh-confirm-modal .modal-body {
    padding: 32px 28px 12px;
}

.eh-confirm-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.eh-confirm-modal-icon--danger {
    background: #fdecea;
    color: #c62828;
}

.eh-confirm-modal-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--eh-secondary) !important;
    margin: 0 0 10px !important;
}

.eh-confirm-modal-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--eh-text-light);
}

.eh-confirm-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 0 24px 8px;
    border: none;
}

.eh-confirm-modal-cancel {
    flex: 1;
    padding: 12px 18px !important;
    border-radius: 50px !important;
    border: 1px solid var(--eh-border) !important;
    background: #fff !important;
    color: var(--eh-secondary) !important;
    font-weight: 600;
}

.eh-confirm-modal-cancel:hover {
    background: var(--eh-bg-soft) !important;
    border-color: #cdd8ca !important;
}

.eh-confirm-modal-confirm {
    flex: 1;
    padding: 12px 18px !important;
    border-radius: 50px !important;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .eh-confirm-modal-footer {
        flex-direction: column-reverse;
    }
}

.eh-product-gallery-wrap {
    background: #f8f8f6;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--eh-border);
}

.eh-product-gallery-wrap .product-gallery-swiper2 {
    width: 100%;
}

.eh-product-gallery-wrap .product-gallery-swiper2 .swiper-slide .dz-media {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.eh-product-gallery-wrap .dz-media img {
    max-height: 520px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.eh-product-gallery-wrap .product-gallery-swiper.thumb-swiper-lg {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 20px;
    width: 100%;
}

.eh-product-gallery-wrap .product-gallery-swiper.thumb-swiper-lg .swiper-slide {
    height: 84px !important;
    width: 84px !important;
    min-width: 84px !important;
}

.eh-product-gallery-wrap .product-gallery-swiper.thumb-swiper-lg .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-product-tabs-section {
    padding: 48px 0 64px;
    background: var(--eh-bg-soft);
}

.eh-product-tabs .nav-link {
    font-weight: 600;
}

.eh-product-description {
    text-align: left !important;
    max-width: 900px;
    margin: 0 auto;
}

.eh-product-desc-body {
    line-height: 1.85;
}

.eh-demo-note {
    font-size: 13px !important;
    padding: 10px 14px;
    background: #fff8e6;
    border-radius: 8px;
    border-left: 3px solid #f5a623;
}

.eh-desc-thumb {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--eh-border);
    background: #fff;
    padding: 12px;
}

.eh-desc-thumb img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.eh-product-info-table {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--eh-border);
}

.eh-product-info-table th {
    width: 200px;
    background: var(--eh-bg-soft);
    font-weight: 600;
    color: var(--eh-secondary);
}

.eh-reviews-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.eh-reviews-wrap .dz-rating,
.eh-reviews-wrap .eh-reviews-stars {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eh-reviews-wrap .dz-rating li {
    display: inline-flex;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.eh-review-stars-row {
    margin: 10px 0 8px;
}

.eh-write-review {
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.eh-write-review-title {
    margin: 0 0 6px;
    font-size: 1.15rem;
    color: var(--eh-secondary);
}

.eh-write-review-note {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--eh-text-light);
}

.eh-star-picker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.eh-star-picker-btn {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    color: #e4e5e8;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
}

.eh-star-picker-btn.is-active,
.eh-star-picker-btn:hover {
    color: #ff8a00;
}

.eh-star-picker-btn:hover {
    transform: scale(1.08);
}

.eh-btn-submit-review {
    min-width: 180px;
}

.eh-review-thanks {
    border-radius: 12px;
    padding: 16px 18px;
}

.eh-review-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eh-review-item cite.fn {
    font-style: normal;
    font-weight: 600;
    color: var(--eh-secondary);
}

.eh-reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--eh-border);
    margin-bottom: 28px;
}

.eh-reviews-avg {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--eh-secondary);
    line-height: 1.1;
}

.eh-reviews-avg small {
    font-size: 14px;
    font-weight: 500;
    color: var(--eh-text-light);
}

.eh-reviews-count {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-demo-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    background: #fff8e6;
    color: #b8860b;
    border-radius: 50px;
}

.eh-review-bar-row {
    display: grid;
    grid-template-columns: 36px 1fr 40px;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--eh-text-light);
}

.eh-review-bar-row .fa-star {
    color: #f5a623;
    font-size: 11px;
}

.eh-review-bar {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.eh-review-bar span {
    display: block;
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.eh-review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--eh-border);
}

.eh-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--eh-primary-light);
    color: var(--eh-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.eh-review-item .comment-author {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.eh-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #2e7d32;
    margin-left: 0;
}

.eh-review-title {
    font-weight: 600;
    color: var(--eh-secondary);
    margin-bottom: 8px;
}

.eh-product-related {
    padding-bottom: 48px;
}

.eh-review-jump {
    color: var(--eh-text-light);
    text-decoration: none;
}

.eh-review-jump:hover {
    color: var(--eh-primary-dark);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .eh-reviews-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .eh-product-gallery-wrap .product-gallery-swiper2 .swiper-slide .dz-media {
        min-height: 380px;
    }

    .eh-product-gallery-wrap .dz-media img {
        max-height: 400px;
    }

    .eh-product-gallery-wrap .product-gallery-swiper.thumb-swiper-lg .swiper-slide {
        height: 68px !important;
        width: 68px !important;
        min-width: 68px !important;
    }
}

@media (max-width: 767.98px) {
    .eh-product-page .eh-product-main {
        padding: 40px 0 36px;
    }

    .eh-product-purchase-row {
        gap: 20px 24px;
    }

    .eh-product-gallery-wrap {
        padding: 16px;
    }

    .eh-product-gallery-wrap .product-gallery-swiper2 .swiper-slide .dz-media {
        min-height: 300px;
    }

    .eh-product-gallery-wrap .dz-media img {
        max-height: 320px;
    }

    .eh-product-cart-box {
        margin-top: 12px;
    }
}

/* ---- Shopify-style checkout ---- */
.eh-body-checkout {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: #fff;
    color: #1a1a1a;
}

.eh-shopify-checkout {
    min-height: 100vh;
}

.eh-shopify-checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
}

.eh-shopify-checkout-logo .eh-logo-text {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.eh-shopify-checkout-logo .eh-logo-text span {
    color: var(--eh-primary, #2d4a36);
}

.eh-shopify-checkout-cart {
    color: #1a1a1a;
    font-size: 1.15rem;
    text-decoration: none;
}

.eh-shopify-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: calc(100vh - 65px);
}

.eh-shopify-checkout-form-col {
    padding: 28px 24px 48px;
    max-width: 640px;
    width: 100%;
    margin-left: auto;
}

.eh-shopify-checkout-summary-col {
    background: #fafafa;
    border-left: 1px solid #e6e6e6;
    padding: 36px 40px;
    position: sticky;
    top: 0;
    height: calc(100vh - 65px);
    overflow-y: auto;
}

.eh-shopify-mobile-summary {
    grid-column: 1 / -1;
    border-bottom: 1px solid #e6e6e6;
    background: #fafafa;
}

.eh-shopify-mobile-summary-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    color: #1773b0;
    cursor: pointer;
}

.eh-shopify-mobile-summary-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.eh-shopify-mobile-summary-chevron {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.eh-shopify-mobile-summary-toggle[aria-expanded="true"] .eh-shopify-mobile-summary-chevron {
    transform: rotate(180deg);
}

.eh-shopify-mobile-summary-body {
    padding: 0 20px 20px;
}

.eh-shopify-block {
    margin-bottom: 28px;
}

.eh-shopify-block h2 {
    margin: 0 0 14px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.eh-shopify-block-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.eh-shopify-block-head h2 {
    margin: 0;
}

.eh-shopify-block-head p {
    margin: 0;
    font-size: 0.8125rem;
    color: #737373;
}

.eh-shopify-field {
    margin-bottom: 10px;
}

.eh-shopify-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.eh-shopify-input {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    padding: 13px 11px;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.eh-shopify-input::placeholder {
    color: #737373;
}

.eh-shopify-input:focus {
    outline: none;
    border-color: #1773b0;
    box-shadow: 0 0 0 1px #1773b0;
}

.eh-shopify-input.is-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 1px #c0392b;
}

.eh-shopify-input:read-only {
    background: #f7f7f7;
    color: #666;
}

.eh-shopify-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.eh-shopify-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.875rem;
    color: #1a1a1a;
    cursor: pointer;
}

.eh-shopify-check input {
    width: 16px;
    height: 16px;
    accent-color: #1773b0;
}

.eh-shopify-error {
    margin-top: 4px;
    font-size: 0.8125rem;
    color: #c0392b;
}

.eh-shopify-shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #1773b0;
    border-radius: 5px;
    background: #f0f5ff;
    font-size: 0.9375rem;
}

.eh-shopify-shipping-option strong {
    font-weight: 600;
}

.eh-shopify-payment-list {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
}

.eh-shopify-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
    border-bottom: 1px solid #d9d9d9;
    background: #f0f5ff;
    cursor: pointer;
}

.eh-shopify-payment-option input {
    accent-color: #1773b0;
}

.eh-shopify-payment-option-label {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
}

.eh-shopify-payment-logos {
    display: flex;
    gap: 6px;
    font-size: 1.5rem;
    color: #666;
}

.eh-shopify-payment-panel {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #e6e6e6;
}

.eh-shopify-stripe-setup {
    padding: 16px;
    border-radius: 5px;
    background: #fff8e6;
    border: 1px solid #f0d78c;
    font-size: 0.875rem;
    color: #555;
}

.eh-shopify-stripe-setup code {
    font-size: 0.8125rem;
}

.eh-shopify-billing-box {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
}

.eh-shopify-billing-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
    border-bottom: 1px solid #d9d9d9;
    cursor: pointer;
    font-size: 0.9375rem;
}

.eh-shopify-billing-option:last-child {
    border-bottom: 0;
}

.eh-shopify-billing-option.is-selected {
    background: #f0f5ff;
    box-shadow: inset 0 0 0 1px #1773b0;
}

.eh-shopify-billing-option input {
    accent-color: #1773b0;
}

.eh-shopify-billing-fields {
    padding: 0 16px 16px;
    background: #fff;
}

.eh-shopify-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 5px;
    background: #fdecea;
    border: 1px solid #f5c2c0;
    color: #9b2c2c;
    font-size: 0.875rem;
}

.eh-shopify-pay-btn {
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 18px 20px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.eh-shopify-pay-btn:hover:not(:disabled) {
    background: #000;
}

.eh-shopify-pay-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.eh-shopify-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 8px;
}

.eh-shopify-footer-links a {
    font-size: 0.75rem;
    color: #1773b0;
    text-decoration: none;
}

.eh-shopify-footer-links a:hover {
    text-decoration: underline;
}

/* Order summary sidebar */
.eh-shopify-summary-items {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eh-shopify-summary-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: start;
}

.eh-shopify-summary-media {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: #fff;
    overflow: hidden;
}

.eh-shopify-summary-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-shopify-summary-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #737373;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fafafa;
}

.eh-shopify-summary-item-title {
    margin: 0 0 4px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
}

.eh-shopify-summary-item-meta {
    margin: 0;
    font-size: 0.75rem;
    color: #737373;
}

.eh-shopify-summary-item-price {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.eh-shopify-summary-totals {
    width: 100%;
    font-size: 0.875rem;
}

.eh-shopify-summary-totals td {
    padding: 8px 0;
}

.eh-shopify-summary-totals td:last-child {
    text-align: right;
}

.eh-shopify-summary-total td {
    padding-top: 16px;
    border-top: 1px solid #e6e6e6;
    font-size: 1.25rem;
    font-weight: 600;
}

.eh-shopify-summary-total small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #737373;
    margin-right: 4px;
}

.eh-shopify-free {
    font-weight: 600;
}

.eh-shopify-summary-hint {
    margin: 14px 0 0;
    font-size: 0.8125rem;
    color: #737373;
}

/* Thank you page */
.eh-checkout-thankyou .eh-shopify-checkout-layout {
    display: block;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 72px;
}

.eh-thankyou-card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
}

.eh-thankyou-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #edf6ef;
    color: #3d8b55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.eh-thankyou-card h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.eh-thankyou-lead {
    margin: 0 0 24px;
    color: #666;
}

.eh-thankyou-order-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 8px;
    background: #fafafa;
    text-align: left;
}

.eh-thankyou-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    margin-bottom: 4px;
}

.eh-thankyou-next {
    text-align: left;
    margin-bottom: 28px;
}

.eh-thankyou-next h3 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.eh-thankyou-next ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eh-thankyou-next li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.eh-thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.eh-thankyou-whatsapp {
    border: 1px solid #25d366;
    color: #1f9d4e;
    background: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.eh-thankyou-whatsapp:hover {
    background: #25d366;
    color: #fff;
}

@media (max-width: 991.98px) {
    .eh-shopify-checkout-layout {
        grid-template-columns: 1fr;
    }

    .eh-shopify-checkout-form-col {
        max-width: none;
        margin: 0;
        padding: 20px 20px 40px;
        order: 2;
    }

    .eh-shopify-checkout-summary-col {
        display: none !important;
    }

    .eh-shopify-row {
        grid-template-columns: 1fr;
    }

    .eh-thankyou-order-box {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .eh-shopify-mobile-summary {
        display: none;
    }
}

/* ---- Checkout page v2 (full site header/footer) ---- */
.eh-checkout-page {
    background: #fcfaf5;
}

.eh-checkout-shell {
    padding: 36px 0 64px;
}

.eh-checkout-test-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #fff8e6;
    border: 1px solid #f0d78c;
    color: #7a5d00;
    font-size: 0.875rem;
    line-height: 1.5;
}

.eh-checkout-test-banner i {
    color: #b8860b;
    font-size: 1.1rem;
    margin-top: 2px;
}

.eh-checkout-test-banner strong {
    display: block;
    color: #5c4600;
    margin-bottom: 2px;
}

.eh-checkout-test-banner code {
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8125rem;
}

.eh-checkout-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.eh-checkout-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ebe6dc;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4a5a4e;
    box-shadow: 0 2px 8px rgba(45, 74, 54, 0.04);
}

.eh-checkout-trust-pill i {
    color: var(--eh-primary);
}

.eh-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.eh-checkout-form-wrap {
    min-width: 0;
}

.eh-checkout-summary-wrap {
    position: sticky;
    top: 100px;
}

.eh-checkout-summary-card {
    background: #fff;
    border: 1px solid #ebe6dc;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(45, 74, 54, 0.06);
}

.eh-checkout-summary-card h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--eh-primary);
}

.eh-checkout-summary-count {
    margin: 0 0 20px;
    font-size: 0.875rem;
    color: #777;
}

.eh-checkout-mobile-summary {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.eh-checkout-mobile-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #ebe6dc;
    border-radius: 12px;
    background: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--eh-primary);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(45, 74, 54, 0.05);
}

.eh-checkout-mobile-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eh-checkout-summary-card--mobile {
    margin-top: 12px;
    border-radius: 12px;
}

.eh-checkout-card {
    background: #fff;
    border: 1px solid #ebe6dc;
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 74, 54, 0.04);
}

.eh-checkout-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid #f3f0e8;
    background: linear-gradient(180deg, #fdfcf9 0%, #fff 100%);
}

.eh-checkout-card-head h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--eh-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eh-checkout-card-head h2 i {
    color: var(--eh-primary);
    font-size: 0.95rem;
}

.eh-checkout-card-head p {
    margin: 4px 0 0;
    font-size: 0.8125rem;
    color: #777;
}

.eh-checkout-card-brands {
    display: flex;
    gap: 8px;
    font-size: 1.6rem;
    color: #888;
    flex-shrink: 0;
}

.eh-checkout-card-body {
    padding: 20px 22px 22px;
}

.eh-checkout-field {
    margin-bottom: 14px;
}

.eh-checkout-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #555;
}

.eh-checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.eh-checkout-input {
    width: 100%;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.9375rem;
    color: var(--eh-text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eh-checkout-input:focus {
    outline: none;
    border-color: var(--eh-primary);
    box-shadow: 0 0 0 3px rgba(45, 74, 54, 0.1);
}

.eh-checkout-input.is-invalid {
    border-color: #c0392b;
}

.eh-checkout-input:read-only {
    background: #f8f6f1;
    color: #666;
}

.eh-checkout-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.eh-checkout-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
}

.eh-checkout-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--eh-primary);
}

.eh-checkout-error {
    margin-top: 4px;
    font-size: 0.8125rem;
    color: #c0392b;
}

.eh-checkout-field-hint {
    margin: 6px 0 0;
    font-size: 0.8125rem;
    color: #777;
    line-height: 1.4;
}

.eh-checkout-shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--eh-primary);
    border-radius: 10px;
    background: #f4f8f4;
    font-size: 0.9375rem;
}

.eh-checkout-shipping-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--eh-text);
}

.eh-checkout-shipping-label i {
    color: var(--eh-primary);
}

.eh-checkout-payment-box {
    border: 1px solid #e0dbd0;
    border-radius: 10px;
    overflow: hidden;
}

.eh-checkout-payment-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
    background: #f4f8f4;
    border-bottom: 1px solid #e0dbd0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
}

.eh-checkout-payment-head input {
    accent-color: var(--eh-primary);
}

.eh-checkout-payment-body {
    padding: 16px;
    background: #fff;
}

.eh-express-checkout {
    margin-bottom: 18px;
}

.eh-express-checkout-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #777;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eh-express-checkout-divider::before,
.eh-express-checkout-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e1d8;
}

.eh-checkout-secure-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid #f0ede6;
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
}

.eh-checkout-secure-note i {
    color: var(--eh-primary);
    margin-top: 2px;
}

.eh-checkout-stripe-setup {
    padding: 16px;
    border-radius: 8px;
    background: #fff8e6;
    border: 1px solid #f0d78c;
    font-size: 0.875rem;
    color: #555;
}

.eh-checkout-billing-box {
    border: 1px solid #e0dbd0;
    border-radius: 10px;
    overflow: hidden;
}

.eh-checkout-billing-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
    border-bottom: 1px solid #e0dbd0;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: background 0.2s ease;
}

.eh-checkout-billing-option:last-child {
    border-bottom: 0;
}

.eh-checkout-billing-option.is-selected {
    background: #f4f8f4;
    box-shadow: inset 0 0 0 1px var(--eh-primary);
}

.eh-checkout-billing-option input {
    accent-color: var(--eh-primary);
}

.eh-checkout-billing-fields {
    padding: 0 16px 16px;
    background: #fff;
}

.eh-checkout-alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fdecea;
    border: 1px solid #f5c2c0;
    color: #9b2c2c;
    font-size: 0.875rem;
    font-weight: 600;
}

.eh-checkout-pay-btn {
    min-height: 54px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px !important;
    margin-top: 6px;
}

.eh-checkout-pay-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.eh-checkout-back-link {
    margin: 16px 0 0;
    font-size: 0.875rem;
}

.eh-checkout-back-link a {
    color: #666;
    font-weight: 600;
    text-decoration: none;
}

.eh-checkout-back-link a:hover {
    color: var(--eh-primary);
}

.eh-checkout-summary-items {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 320px;
    overflow-y: auto;
}

.eh-checkout-summary-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: start;
}

.eh-checkout-summary-media {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f8f6f1;
    overflow: hidden;
}

.eh-checkout-summary-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-checkout-summary-qty {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--eh-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.eh-checkout-summary-title {
    margin: 0 0 4px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--eh-text);
}

.eh-checkout-summary-meta {
    margin: 0;
    font-size: 0.75rem;
    color: #888;
}

.eh-checkout-summary-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--eh-primary);
    white-space: nowrap;
}

.eh-checkout-summary-totals {
    width: 100%;
    font-size: 0.9375rem;
    margin-bottom: 14px;
}

.eh-checkout-summary-totals td {
    padding: 8px 0;
}

.eh-checkout-summary-totals td:last-child {
    text-align: right;
    font-weight: 600;
}

.eh-checkout-summary-total td {
    padding-top: 14px;
    border-top: 1px solid #eee;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--eh-primary);
}

.eh-checkout-free {
    color: #3d8b55;
    font-weight: 700;
}

.eh-checkout-summary-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #f8f6f1;
    font-size: 0.8125rem;
    color: #555;
    margin-bottom: 12px;
}

.eh-checkout-summary-hint--success {
    background: #edf6ef;
    color: #2d5a3d;
}

.eh-checkout-summary-hint i {
    color: var(--eh-primary);
}

.eh-checkout-summary-secure {
    margin: 0;
    text-align: center;
    font-size: 0.8125rem;
    color: #777;
}

.eh-checkout-summary-secure i {
    color: var(--eh-primary);
}

.eh-checkout-thankyou-page .eh-checkout-shell {
    padding-bottom: 72px;
}

.eh-checkout-thankyou-page .eh-thankyou-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 40px;
    background: #fff;
    border: 1px solid #ebe6dc;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(45, 74, 54, 0.08);
}

.eh-checkout-thankyou-page .eh-thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #edf6ef 0%, #d8eede 100%);
    color: #3d8b55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.eh-checkout-thankyou-page .eh-thankyou-card h2 {
    margin: 0 0 10px;
    font-size: 1.75rem;
    color: var(--eh-primary);
}

.eh-checkout-thankyou-page .eh-thankyou-lead {
    margin: 0 auto 28px;
    color: #666;
    font-size: 1rem;
    max-width: 520px;
}

.eh-checkout-thankyou-page .eh-thankyou-order-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 12px;
    background: #f8f6f1;
    text-align: left;
}

.eh-checkout-thankyou-page .eh-thankyou-next {
    text-align: left;
    margin: 0 auto 28px;
    max-width: 520px;
}

.eh-checkout-thankyou-page .eh-thankyou-next h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--eh-text);
}

.eh-checkout-thankyou-page .eh-thankyou-next ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eh-checkout-thankyou-page .eh-thankyou-next li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.eh-checkout-thankyou-page .eh-thankyou-next i {
    color: var(--eh-primary);
    margin-top: 3px;
}

.eh-checkout-thankyou-page .eh-thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.eh-checkout-thankyou-page .eh-thankyou-whatsapp {
    border: 1px solid #25d366 !important;
    color: #1f9d4e !important;
    background: #fff !important;
    font-weight: 600;
    border-radius: 50px !important;
    padding: 12px 24px !important;
}

.eh-checkout-thankyou-page .eh-thankyou-whatsapp:hover {
    background: #25d366 !important;
    color: #fff !important;
}

/* Payment success popup */
body.eh-success-modal-open {
    overflow: hidden;
}

.eh-payment-success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.eh-payment-success-modal.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.eh-payment-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.eh-payment-success-modal__card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
    animation: ehSuccessPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.eh-payment-success-modal.is-closing .eh-payment-success-modal__card {
    animation: ehSuccessOut 0.28s ease forwards;
}

@keyframes ehSuccessPop {
    from { opacity: 0; transform: scale(0.88) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes ehSuccessOut {
    to { opacity: 0; transform: scale(0.95) translateY(10px); }
}

.eh-payment-success-modal__icon {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
}

.eh-payment-success-modal__check {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.35);
    animation: ehCheckBounce 0.6s ease 0.15s both;
}

.eh-payment-success-modal__ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid rgba(34, 197, 94, 0.35);
    animation: ehRingPulse 1.2s ease-out infinite;
}

@keyframes ehCheckBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@keyframes ehRingPulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.15); opacity: 0; }
}

.eh-payment-success-modal__card h2 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    color: var(--eh-primary);
    font-weight: 700;
}

.eh-payment-success-modal__lead {
    margin: 0 0 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.eh-payment-success-modal__summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f6f1;
    border-radius: 12px;
    text-align: left;
}

.eh-payment-success-modal__summary span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 4px;
}

.eh-payment-success-modal__summary strong {
    font-size: 0.95rem;
    color: var(--eh-text);
}

.eh-payment-success-modal__email {
    margin: 0 0 22px;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}

.eh-payment-success-modal__email i {
    color: #16a34a;
    margin-right: 4px;
}

.eh-payment-success-modal__btn {
    width: 100%;
    justify-content: center;
}

.eh-thankyou-items {
    text-align: left;
    margin: 0 auto 28px;
    max-width: 520px;
    padding: 20px;
    background: #faf9f6;
    border-radius: 12px;
    border: 1px solid #ebe6dc;
}

.eh-thankyou-items h3 {
    margin: 0 0 14px;
    font-size: 1rem;
    color: var(--eh-text);
}

.eh-thankyou-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eh-thankyou-items li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eh-thankyou-item-media {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebe6dc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eh-thankyou-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eh-thankyou-item-media span {
    color: var(--eh-primary);
    font-size: 1.2rem;
}

.eh-thankyou-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.eh-thankyou-item-info strong {
    font-size: 0.9rem;
    color: var(--eh-text);
}

.eh-thankyou-item-info span {
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 991.98px) {
    .eh-checkout-shell {
        padding: 24px 0 48px;
    }

    .eh-checkout-grid {
        grid-template-columns: 1fr;
    }

    .eh-checkout-summary-wrap {
        display: none !important;
    }

    .eh-checkout-row {
        grid-template-columns: 1fr;
    }

    .eh-checkout-trust-strip {
        flex-direction: column;
    }

    .eh-checkout-thankyou-page .eh-thankyou-order-box {
        grid-template-columns: 1fr;
    }

    .eh-checkout-thankyou-page .eh-thankyou-card {
        padding: 32px 22px;
    }
}

/* ============================================================
   Auth — Login / Register
   ============================================================ */

.eh-auth-page {
    background: var(--eh-bg-soft);
}

.eh-auth-main {
    padding: 48px 0 80px;
}

.eh-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    gap: 48px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.eh-auth-aside-inner {
    padding: 12px 8px 0 0;
}

.eh-auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--eh-primary);
    margin-bottom: 16px;
}

.eh-auth-aside h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--eh-secondary);
}

.eh-auth-aside > .eh-auth-aside-inner > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--eh-text);
    margin: 0 0 28px;
    max-width: 420px;
}

.eh-auth-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 14px;
}

.eh-auth-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--eh-secondary);
    font-weight: 500;
}

.eh-auth-perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eh-primary-light);
    color: var(--eh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.eh-auth-aside-footer {
    padding-top: 24px;
    border-top: 1px solid var(--eh-border);
}

.eh-auth-aside-footer p {
    font-size: 14px;
    color: var(--eh-text-light);
    margin: 0 0 12px;
}

.eh-auth-card {
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    padding: 36px 32px 32px;
    box-shadow: var(--eh-shadow-lg);
}

.eh-auth-card-head {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--eh-border);
}

.eh-auth-card-head h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--eh-secondary);
    margin: 0 0 8px;
}

.eh-auth-card-head p {
    font-size: 14px;
    color: var(--eh-text-light);
    margin: 0;
    line-height: 1.5;
}

.eh-auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--eh-radius-sm);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.eh-auth-alert--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.eh-auth-alert--error {
    background: #fdecea;
    color: #c62828;
}

.eh-auth-field {
    margin-bottom: 20px;
}

.eh-auth-field-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.eh-auth-field-top .eh-form-label {
    margin-bottom: 0;
}

.eh-auth-input-wrap {
    position: relative;
}

.eh-auth-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eh-text-light);
    font-size: 14px;
    pointer-events: none;
}

.eh-auth-input {
    padding-left: 44px !important;
    padding-right: 44px !important;
}

.eh-auth-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--eh-text-light);
    padding: 6px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.eh-auth-password-toggle:hover {
    color: var(--eh-secondary);
}

.eh-auth-field-error {
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
}

.eh-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.eh-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--eh-text);
    user-select: none;
}

.eh-auth-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--eh-primary);
    margin: 0;
    cursor: pointer;
}

.eh-auth-submit {
    padding: 15px 24px !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px !important;
}

.eh-auth-privacy {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--eh-text-light);
    text-align: center;
    line-height: 1.5;
}

.eh-auth-back {
    text-align: center;
    margin: 20px 0 0;
    font-size: 14px;
}

.eh-auth-back a {
    color: var(--eh-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.eh-auth-back a:hover {
    color: var(--eh-primary);
}

@media (max-width: 991.98px) {
    .eh-auth-main {
        padding: 32px 0 56px;
    }

    .eh-auth-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 480px;
    }

    .eh-auth-aside-inner {
        padding: 0;
        text-align: center;
    }

    .eh-auth-aside > .eh-auth-aside-inner > p {
        margin-left: auto;
        margin-right: auto;
    }

    .eh-auth-perks {
        text-align: left;
    }

    .eh-auth-aside-footer {
        text-align: center;
    }

    .eh-auth-card {
        padding: 28px 22px 24px;
    }
}

