/* ==========================================================================
   Elixer Water DE — Design System + Homepage + Product Pages
   ========================================================================== */

:root {
    --ewd-primary: #012753;
    --ewd-primary-light: #2B6CB0;
    --ewd-accent: #05BBD0;
    --ewd-accent-light: #e0f7fa;
    --ewd-accent-dark: #049aad;
    --ewd-orange: #fb7202;

    --ewd-text: #1a2332;
    --ewd-text-light: #4a5568;
    --ewd-text-muted: #a0aec0;

    --ewd-bg: #ffffff;
    --ewd-bg-light: #f7fafc;
    --ewd-bg-dark: #edf2f7;

    --ewd-border: #e2e8f0;
    --ewd-radius: 14px;
    --ewd-radius-sm: 10px;
    --ewd-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    --ewd-shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);
    --ewd-shadow-cyan: 0 4px 16px rgba(5, 187, 208, 0.2);

    --ewd-success: #38a169;
    --ewd-error: #e53e3e;

    --ewd-transition: 0.2s ease;
}

/* ==========================================================================
   Header & Mega Menu
   ========================================================================== */

.ewd-header { width: 100%; z-index: 1000; position: relative; }
.ewd-header, .ewd-header * { box-sizing: border-box; }

/* Top bar */
.ewd-header__topbar {
    background: var(--ewd-primary);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    letter-spacing: 0.02em;
    padding: 6px 0;
}
.ewd-header__topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.ewd-header__topbar-inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.ewd-header__topbar-inner svg {
    width: 13px;
    height: 13px;
    opacity: 0.8;
}

/* Main header */
.ewd-header__main {
    background: #fff;
    border-bottom: 1px solid var(--ewd-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.ewd-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

/* Logo */
.ewd-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.ewd-header__logo-img {
    height: 35px;
    width: auto;
    max-height: 35px;
    margin: 0;
    padding: 0;
    display: block;
}
.ewd-header__logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--ewd-primary);
    letter-spacing: -0.02em;
}

/* Burger */
.ewd-header__burger {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--ewd-primary);
    line-height: 1;
}
.ewd-burger__close { display: none; }
.ewd-header__burger.is-active .ewd-burger__open { display: none; }
.ewd-header__burger.is-active .ewd-burger__close { display: block; }

/* Navigation */
.ewd-header__nav { margin-left: auto; }
.ewd-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ewd-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ewd-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--ewd-transition), color var(--ewd-transition);
    white-space: nowrap;
}
.ewd-nav__link:hover {
    background: var(--ewd-bg-light);
    color: var(--ewd-accent-dark);
}
.ewd-nav__link svg {
    transition: transform 0.2s;
}
.ewd-nav__item--has-mega:hover .ewd-nav__link svg {
    transform: rotate(180deg);
}

/* Cart */
.ewd-header__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ewd-primary);
    padding: 8px;
    border-radius: 50%;
    transition: background var(--ewd-transition);
    flex-shrink: 0;
}
.ewd-header__cart:hover {
    background: var(--ewd-bg-light);
}
.ewd-header__cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--ewd-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}

/* Mega menu dropdown */
.ewd-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 420px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 999;
}
.ewd-nav__item--has-mega { position: relative; }
.ewd-nav__item--has-mega:hover > .ewd-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.ewd-mega__inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--ewd-border);
    padding: 24px;
    overflow: hidden;
}

/* Mega column */
.ewd-mega__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ewd-text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ewd-border);
}
.ewd-mega__heading svg {
    width: 18px;
    height: 18px;
    color: var(--ewd-accent);
    stroke: var(--ewd-accent);
}
.ewd-mega__products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ewd-mega__products li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}
.ewd-mega__products li a:hover {
    background: var(--ewd-bg-light);
}
.ewd-mega__products li a strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ewd-primary);
}
.ewd-mega__products li a span {
    display: block;
    font-size: 12px;
    color: var(--ewd-text-light);
    line-height: 1.4;
    margin-top: 1px;
}
.ewd-mega__viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--ewd-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--ewd-accent-dark);
    text-decoration: none;
    transition: color 0.15s;
}
.ewd-mega__viewall:hover { color: var(--ewd-primary); }
.ewd-mega__viewall svg { width: 14px; height: 14px; }

/* Mega menu — position adjustments for edge items */
.ewd-nav__item--has-mega:first-child .ewd-mega { left: 0; transform: none; }
.ewd-nav__item--has-mega:nth-child(4) .ewd-mega { left: auto; right: 0; transform: none; }

/* ---- Mobile styles ---- */
@media (max-width: 1024px) {
    .ewd-header__burger { display: flex; order: -1; }
    .ewd-header__inner { gap: 16px; }
    .ewd-header__cart { margin-left: auto; }
    .ewd-nav__item--secondary { display: none; }

    .ewd-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 80px 24px 24px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 4px 0 24px rgba(0,0,0,0.1);
    }
    .ewd-header__nav.is-open { transform: translateX(0); }

    .ewd-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .ewd-nav__link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        justify-content: space-between;
    }
    .ewd-nav__item--secondary { display: list-item; }

    /* Mega in mobile: accordion */
    .ewd-mega {
        position: static;
        transform: none;
        min-width: 0;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }
    .ewd-nav__item--has-mega.is-open > .ewd-mega { display: block; }
    .ewd-mega__inner {
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 8px 8px;
        background: var(--ewd-bg-light);
        border-radius: 10px;
        margin-bottom: 4px;
    }
    .ewd-mega__heading { display: none; }
    .ewd-mega__products li a { padding: 10px 12px; }

}

/* Backdrop (appended to body — z-index below header so nav stays clickable) */
.ewd-header__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
}
.ewd-header__backdrop.is-visible { display: block; }

@media (max-width: 768px) {
    .ewd-header__topbar-inner { gap: 16px; font-size: 11px; }
    .ewd-header__topbar-inner span:last-child { display: none; }
}

@media (max-width: 480px) {
    .ewd-header__topbar-inner span:nth-child(2) { display: none; }
    .ewd-header__nav { width: 280px; }
}


/* ==========================================================================
   Base
   ========================================================================== */

.ewd-hp-section,
.ewd-hp-section * {
    box-sizing: border-box;
}

.ewd-hp-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ewd-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.ewd-hp-section img {
    max-width: 100%;
    height: auto;
}

.ewd-hp-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ewd-primary);
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.3;
}

.ewd-hp-subtitle {
    font-size: 16px;
    color: var(--ewd-text-light);
    text-align: center;
    margin: 0 auto 36px;
    max-width: 620px;
    line-height: 1.6;
}

.ewd-hp-grid {
    display: grid;
    gap: 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ewd-hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--ewd-radius-sm);
    padding: 13px 28px;
    transition: background var(--ewd-transition), color var(--ewd-transition), transform 0.1s ease, box-shadow var(--ewd-transition);
}

.ewd-hp-btn-primary {
    background: var(--ewd-accent);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--ewd-shadow-cyan);
}

.ewd-hp-btn-primary:hover {
    background: var(--ewd-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(1, 39, 83, 0.25);
}

.ewd-hp-btn-primary:active {
    transform: scale(0.97);
}

.ewd-hp-btn-outline {
    background: transparent;
    color: var(--ewd-primary);
    border: 2px solid var(--ewd-border);
}

.ewd-hp-btn-outline:hover {
    border-color: var(--ewd-accent);
    color: var(--ewd-accent);
}

/* ==========================================================================
   1. Hero
   ========================================================================== */

.ewd-hp-hero {
    text-align: center;
    padding: 48px 24px 0;
}

.ewd-hp-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--ewd-primary);
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.ewd-hp-hero-title span {
    color: var(--ewd-accent);
}

.ewd-hp-hero-subtitle {
    font-size: 18px;
    color: var(--ewd-text-light);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.ewd-hp-hero .ewd-hp-btn-primary {
    font-size: 17px;
    padding: 16px 36px;
}

/* Trust bar */

.ewd-hp-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 32px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--ewd-border);
}

.ewd-hp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ewd-text-light);
}

.ewd-hp-trust-item svg {
    color: var(--ewd-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   2. Social Proof Bar
   ========================================================================== */

.ewd-hp-social-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--ewd-primary);
    border-radius: var(--ewd-radius);
    overflow: hidden;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.ewd-hp-stat {
    text-align: center;
    padding: 28px 16px;
    position: relative;
}

.ewd-hp-stat + .ewd-hp-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.ewd-hp-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--ewd-accent);
    letter-spacing: -0.5px;
}

.ewd-hp-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* ==========================================================================
   3. Bestsellers Slider
   ========================================================================== */

.ewd-hp-bestsellers {
    max-width: 1200px;
    margin: 0 auto;
}

.ewd-hp-slider-wrap {
    position: relative;
}

.ewd-hp-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
}

.ewd-hp-slider::-webkit-scrollbar {
    display: none;
}

.ewd-hp-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 240px;
    scroll-snap-align: start;
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--ewd-transition), box-shadow var(--ewd-transition), border-color var(--ewd-transition);
}

.ewd-hp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ewd-shadow-lg);
    border-color: var(--ewd-accent);
}

.ewd-hp-card-thumb {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--ewd-bg-light);
}

.ewd-hp-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ewd-hp-card:hover .ewd-hp-card-thumb img {
    transform: scale(1.06);
}

.ewd-hp-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ewd-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.ewd-hp-card-badge--sale {
    background: var(--ewd-orange);
}

.ewd-hp-card-info {
    padding: 16px;
}

.ewd-hp-card-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 6px;
    line-height: 1.3;
}

.ewd-hp-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--ewd-primary);
}

.ewd-hp-card-price del {
    font-size: 13px;
    font-weight: 400;
    color: var(--ewd-text-muted);
    margin-right: 4px;
}

.ewd-hp-card-price ins {
    text-decoration: none;
    color: var(--ewd-accent);
}

.ewd-hp-card-stars {
    display: flex;
    gap: 2px;
    margin-top: 6px;
}

.ewd-hp-card-stars svg {
    color: #f5a623;
}

/* Slider arrows */

.ewd-hp-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all var(--ewd-transition);
    z-index: 2;
    box-shadow: var(--ewd-shadow);
    color: var(--ewd-primary);
}

.ewd-hp-slider-wrap:hover .ewd-hp-slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.ewd-hp-slider-arrow:hover {
    background: var(--ewd-accent);
    border-color: var(--ewd-accent);
    color: #fff;
}

.ewd-hp-slider-prev {
    left: -24px;
}

.ewd-hp-slider-next {
    right: -24px;
}

.ewd-hp-cta {
    text-align: center;
    margin-top: 32px;
}

/* ==========================================================================
   4. Product Highlight
   ========================================================================== */

.ewd-hp-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ewd-hp-highlight-img {
    border-radius: var(--ewd-radius);
    overflow: hidden;
    background: var(--ewd-bg-light);
}

.ewd-hp-highlight-img img {
    width: 100%;
    height: auto;
    display: block;
}

.ewd-hp-highlight-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--ewd-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}

.ewd-hp-highlight-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ewd-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ewd-hp-highlight-desc {
    font-size: 16px;
    color: var(--ewd-text-light);
    margin: 0 0 24px;
    line-height: 1.6;
}

.ewd-hp-highlight-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ewd-hp-highlight-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ewd-text);
}

.ewd-hp-highlight-features li svg {
    flex-shrink: 0;
    color: var(--ewd-success);
}

.ewd-hp-highlight-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--ewd-primary);
    margin-bottom: 20px;
}

/* ==========================================================================
   5. Comparison Table
   ========================================================================== */

.ewd-hp-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.ewd-hp-comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ewd-hp-comparison-col {
    background: var(--ewd-bg);
    border: 2px solid var(--ewd-border);
    border-radius: var(--ewd-radius);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: border-color var(--ewd-transition), box-shadow var(--ewd-transition);
}

.ewd-hp-comparison-col:hover {
    border-color: var(--ewd-accent);
    box-shadow: var(--ewd-shadow-lg);
}

.ewd-hp-comparison-premium {
    border-color: var(--ewd-accent);
    box-shadow: 0 0 0 1px var(--ewd-accent), var(--ewd-shadow-cyan);
}

.ewd-hp-comparison-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: var(--ewd-bg-dark);
    color: var(--ewd-text-light);
}

.ewd-hp-comparison-premium .ewd-hp-comparison-badge {
    background: var(--ewd-accent);
    color: #fff;
}

.ewd-hp-comparison-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 8px;
}

.ewd-hp-comparison-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--ewd-primary);
    margin-bottom: 24px;
}

.ewd-hp-comparison-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ewd-hp-comparison-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ewd-text);
}

.ewd-hp-comparison-features li.included svg {
    color: var(--ewd-success);
}

.ewd-hp-comparison-features li.not-included {
    color: var(--ewd-text-muted);
}

.ewd-hp-comparison-features li.not-included svg {
    color: var(--ewd-text-muted);
}

/* ==========================================================================
   6. How It Works
   ========================================================================== */

.ewd-hp-process-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.ewd-hp-process-step {
    padding: 32px 24px;
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius);
    transition: transform var(--ewd-transition), box-shadow var(--ewd-transition);
}

.ewd-hp-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--ewd-shadow-lg);
}

.ewd-hp-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--ewd-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 16px;
}

.ewd-hp-process-icon {
    color: var(--ewd-accent);
    margin-bottom: 12px;
}

.ewd-hp-process-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 8px;
}

.ewd-hp-process-step p {
    font-size: 14px;
    color: var(--ewd-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   7. Categories
   ========================================================================== */

.ewd-hp-categories-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ewd-hp-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 28px;
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius);
    text-decoration: none;
    color: inherit;
    transition: transform var(--ewd-transition), box-shadow var(--ewd-transition), border-color var(--ewd-transition);
}

.ewd-hp-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ewd-shadow-lg);
    border-color: var(--ewd-accent);
}

.ewd-hp-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--ewd-accent-light);
    border-radius: var(--ewd-radius-sm);
    margin-bottom: 16px;
    color: var(--ewd-accent);
}

.ewd-hp-category-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 8px;
}

.ewd-hp-category-card p {
    font-size: 13px;
    color: var(--ewd-text-light);
    margin: 0 0 16px;
    line-height: 1.5;
}

.ewd-hp-category-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--ewd-accent);
    margin-top: auto;
}

/* ==========================================================================
   8. Benefits
   ========================================================================== */

.ewd-hp-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ewd-hp-benefit-card {
    padding: 28px 24px;
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius);
    transition: transform var(--ewd-transition), box-shadow var(--ewd-transition), border-color var(--ewd-transition);
}

.ewd-hp-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ewd-shadow-lg);
    border-color: var(--ewd-accent);
}

.ewd-hp-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--ewd-accent-light);
    border-radius: var(--ewd-radius-sm);
    margin-bottom: 16px;
    color: var(--ewd-accent);
}

.ewd-hp-benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 6px;
}

.ewd-hp-benefit-card p {
    font-size: 14px;
    color: var(--ewd-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   9. Reviews
   ========================================================================== */

.ewd-hp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
}

.ewd-hp-review-card {
    padding: 28px;
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius);
    transition: transform var(--ewd-transition), box-shadow var(--ewd-transition);
}

.ewd-hp-review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ewd-shadow);
}

.ewd-hp-review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.ewd-hp-review-stars svg {
    color: #f5a623;
}

.ewd-hp-review-text {
    font-size: 14px;
    color: var(--ewd-text);
    line-height: 1.6;
    margin: 0 0 16px;
    font-style: italic;
}

.ewd-hp-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ewd-hp-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ewd-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ewd-hp-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ewd-primary);
}

.ewd-hp-review-product {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--ewd-text-muted);
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */

.ewd-hp-faq {
    max-width: 800px;
    margin: 0 auto;
}

.ewd-hp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ewd-hp-faq-item {
    background: var(--ewd-bg);
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius-sm);
    overflow: hidden;
    transition: border-color var(--ewd-transition);
}

.ewd-hp-faq-item[open] {
    border-color: var(--ewd-accent);
}

.ewd-hp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ewd-primary);
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}

.ewd-hp-faq-question::-webkit-details-marker {
    display: none;
}

.ewd-hp-faq-chevron {
    flex-shrink: 0;
    transition: transform var(--ewd-transition);
    color: var(--ewd-accent);
}

.ewd-hp-faq-item[open] .ewd-hp-faq-chevron {
    transform: rotate(180deg);
}

.ewd-hp-faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--ewd-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   11. SEO Content
   ========================================================================== */

.ewd-hp-seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.ewd-hp-seo-inner h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 12px;
    line-height: 1.3;
}

.ewd-hp-seo-inner h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 32px 0 10px;
    line-height: 1.3;
}

.ewd-hp-seo-inner p {
    font-size: 15px;
    color: var(--ewd-text-light);
    margin: 0 0 16px;
    line-height: 1.7;
}

/* ==========================================================================
   12. CTA Banner
   ========================================================================== */

.ewd-hp-cta-banner {
    text-align: center;
    background: var(--ewd-primary);
    border-radius: var(--ewd-radius);
    padding: 48px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.ewd-hp-cta-banner h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.ewd-hp-cta-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 28px;
}

.ewd-hp-cta-banner .ewd-hp-btn-primary {
    background: var(--ewd-accent);
    font-size: 17px;
    padding: 16px 36px;
}

.ewd-hp-cta-banner .ewd-hp-btn-primary:hover {
    background: #fff;
    color: var(--ewd-primary);
}

/* ==========================================================================
   Product Page — Sticky ATC Bar
   ========================================================================== */

.ewd-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid var(--ewd-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ewd-sticky.is-visible {
    transform: translateY(0);
}

.ewd-sticky__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
}

.ewd-sticky__img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.ewd-sticky__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ewd-sticky__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ewd-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ewd-sticky__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--ewd-primary);
}

.ewd-sticky__price del {
    color: #aaa;
    font-weight: 400;
    font-size: 11px;
}

.ewd-sticky__price ins {
    text-decoration: none;
    color: var(--ewd-accent);
}

.ewd-sticky__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    background: var(--ewd-accent);
    color: #fff;
    text-decoration: none;
    border-radius: var(--ewd-radius-sm);
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    transition: background var(--ewd-transition);
}

.ewd-sticky__btn:hover {
    background: var(--ewd-primary);
    color: #fff;
}

/* ==========================================================================
   Product Page — USP Block
   ========================================================================== */

.ewd-usps {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ewd-primary);
    border-radius: var(--ewd-radius);
    padding: 32px;
    margin: 32px 0;
    color: #fff;
}

.ewd-usps__heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #fff;
    line-height: 1.3;
}

.ewd-usps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ewd-usps__grid--single {
    grid-template-columns: 1fr;
}

.ewd-usp {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--ewd-radius-sm);
    padding: 16px;
    transition: background var(--ewd-transition);
}

.ewd-usp:hover {
    background: rgba(255, 255, 255, 0.12);
}

.ewd-usp__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(5, 187, 208, 0.2);
    border-radius: var(--ewd-radius-sm);
    color: var(--ewd-accent);
}

.ewd-usp__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ewd-usp__title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.ewd-usp__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.ewd-usps__closing {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 600;
    color: var(--ewd-accent);
    line-height: 1.5;
}

/* ==========================================================================
   Product Page — FAQ (reuses homepage FAQ styling)
   ========================================================================== */

.ewd-faq {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 32px 0;
}

.ewd-faq__heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--ewd-primary);
    margin: 0 0 16px;
    line-height: 1.3;
}

.ewd-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ewd-faq__item {
    background: #fff;
    border: 1px solid var(--ewd-border);
    border-radius: var(--ewd-radius-sm);
    overflow: hidden;
    transition: border-color var(--ewd-transition);
}

.ewd-faq__item[open] {
    border-color: var(--ewd-accent);
}

.ewd-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ewd-primary);
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}

.ewd-faq__question::-webkit-details-marker {
    display: none;
}

.ewd-faq__chevron {
    flex-shrink: 0;
    transition: transform var(--ewd-transition);
    color: var(--ewd-accent);
}

.ewd-faq__item[open] .ewd-faq__chevron {
    transform: rotate(180deg);
}

.ewd-faq__answer {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--ewd-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   Product Page — Inline Product Card
   ========================================================================== */

.ewd-product {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fafb 0%, #fff 100%);
    border: 2px solid var(--ewd-accent);
    border-radius: var(--ewd-radius);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(5, 187, 208, 0.12);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ewd-product:hover {
    box-shadow: 0 8px 32px rgba(5, 187, 208, 0.18);
    transform: translateY(-2px);
}

.ewd-product__image {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    overflow: hidden;
}

.ewd-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ewd-product:hover .ewd-product__image img {
    transform: scale(1.06);
}

.ewd-product__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.ewd-product__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    gap: 4px;
}

.ewd-product__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ewd-primary);
    text-decoration: none;
    line-height: 1.3;
}

.ewd-product__title:hover {
    color: var(--ewd-accent);
}

.ewd-product__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--ewd-primary);
    line-height: 1.2;
}

.ewd-product__price del {
    color: #b0b0b0;
    font-weight: 400;
    font-size: 13px;
    margin-right: 4px;
}

.ewd-product__price ins {
    text-decoration: none;
    color: var(--ewd-accent);
}

.ewd-product__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 12px;
    margin-top: 2px;
}

.ewd-product__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #556;
}

.ewd-product__trust-item svg {
    color: var(--ewd-accent);
    flex-shrink: 0;
}

.ewd-product__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    white-space: nowrap;
    background: var(--ewd-accent);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: var(--ewd-radius-sm);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 6px;
    transition: background var(--ewd-transition), transform 0.1s ease, box-shadow var(--ewd-transition);
    box-shadow: 0 4px 12px rgba(5, 187, 208, 0.3);
}

.ewd-product__btn:hover {
    background: var(--ewd-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 38, 83, 0.25);
}

.ewd-product__btn:active {
    transform: scale(0.97);
}

/* ==========================================================================
   Product Page — Payment Badges
   ========================================================================== */

.ewd-payments {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.ewd-payments__text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #777;
}

.ewd-payments__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ewd-payments__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background: #f5f7f9;
    border: 1px solid var(--ewd-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ewd-primary);
}

/* ==========================================================================
   Product Page — Social Proof
   ========================================================================== */

.ewd-proof {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fffbf0;
    border: 1px solid #f5e6c8;
    border-radius: 8px;
    margin: 12px 0;
}

.ewd-proof__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ewd-primary);
    margin-left: 2px;
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */

.ewd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ewd-reveal.ewd-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive: Tablet (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    .ewd-hp-hero-title {
        font-size: 34px;
    }

    .ewd-hp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ewd-hp-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .ewd-hp-slider-arrow {
        display: none;
    }

    .ewd-hp-highlight {
        gap: 32px;
    }
}

/* ==========================================================================
   Responsive: Tablet Portrait / Large Mobile (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
    .ewd-hp-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ewd-hp-title {
        font-size: 22px;
    }

    .ewd-hp-hero {
        padding: 32px 16px 0;
    }

    .ewd-hp-hero-title {
        font-size: 28px;
    }

    .ewd-hp-hero-subtitle {
        font-size: 15px;
    }

    .ewd-hp-social-proof {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--ewd-radius-sm);
        margin: 0 16px;
    }

    .ewd-hp-stat + .ewd-hp-stat:nth-child(odd)::before {
        display: none;
    }

    .ewd-hp-stat {
        padding: 20px 12px;
    }

    .ewd-hp-stat-value {
        font-size: 22px;
    }

    .ewd-hp-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
    }

    .ewd-hp-highlight {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ewd-hp-comparison-table {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ewd-hp-process-grid {
        grid-template-columns: 1fr;
    }

    .ewd-hp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ewd-hp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ewd-hp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .ewd-hp-cta-banner {
        padding: 32px 20px;
        margin: 0 16px;
        border-radius: var(--ewd-radius-sm);
    }

    .ewd-hp-cta-banner h2 {
        font-size: 22px;
    }

    /* Product page responsive */
    .ewd-product {
        flex-wrap: wrap;
    }

    .ewd-product__image {
        width: 90px;
        height: 90px;
        border-radius: var(--ewd-radius-sm);
        margin: 12px 0 12px 12px;
    }

    .ewd-product__body {
        flex: 1;
        padding: 12px 14px;
        gap: 2px;
    }

    .ewd-product__title {
        font-size: 14px;
    }

    .ewd-product__price {
        font-size: 17px;
    }

    .ewd-product__btn {
        align-self: stretch;
        justify-content: center;
        padding: 11px 20px;
        font-size: 14px;
    }

    .ewd-usps {
        padding: 20px 16px;
    }

    .ewd-usps__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ewd-faq__question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .ewd-faq__answer {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    .ewd-payments__logos {
        gap: 6px;
    }

    .ewd-payments__logo {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* ==========================================================================
   Responsive: Small Mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .ewd-hp-hero-title {
        font-size: 24px;
    }

    .ewd-hp-trust-bar {
        gap: 8px 16px;
    }

    .ewd-hp-trust-item {
        font-size: 11px;
    }

    .ewd-hp-card {
        flex: 0 0 75%;
        min-width: 0;
    }

    .ewd-hp-categories-grid {
        grid-template-columns: 1fr;
    }

    .ewd-hp-comparison-col {
        padding: 24px 20px;
    }

    .ewd-hp-highlight-content h2 {
        font-size: 24px;
    }

    .ewd-hp-seo-inner h2 {
        font-size: 20px;
    }

    .ewd-hp-seo-inner h3 {
        font-size: 17px;
    }
}

/* ==========================================================================
   CUSTOM PRODUCT PAGE TEMPLATE
   ========================================================================== */

.ewd-page {
    background: #fff;
}

.ewd-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Breadcrumbs */
.ewd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
    font-size: 13px;
    color: #888;
}
.ewd-breadcrumbs a {
    color: var(--ewd-primary-light, #2B6CB0);
    text-decoration: none;
}
.ewd-breadcrumbs a:hover {
    text-decoration: underline;
}

/* Hero: Gallery + Info */
.ewd-product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 24px 0 48px;
}

/* Gallery */
.ewd-product-gallery {
    position: sticky;
    top: 24px;
}
.ewd-gallery-main {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}
.ewd-gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
}
.ewd-gallery-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ewd-gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.ewd-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 2;
    color: var(--ewd-primary, #012753);
    padding: 0;
    line-height: 1;
}
.ewd-gallery-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: var(--ewd-primary, #012753);
}
.ewd-gallery-arrow:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.ewd-gallery-prev {
    left: 12px;
}
.ewd-gallery-next {
    right: 12px;
}
.ewd-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.ewd-gallery-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #f8f9fa;
    padding: 0;
    transition: border-color 0.2s;
}
.ewd-gallery-thumb.active,
.ewd-gallery-thumb:hover {
    border-color: var(--ewd-accent, #05BBD0);
}
.ewd-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.ewd-product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ewd-product-badge {
    display: inline-block;
    background: var(--ewd-accent, #05BBD0);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    align-self: flex-start;
}
.ewd-product-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    line-height: 1.25;
    margin: 0;
}
.ewd-product-promo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
}
.ewd-product-promo svg {
    flex-shrink: 0;
    color: #059669;
}
.ewd-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}
.ewd-product-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
}
.ewd-product-price del {
    font-size: 20px;
    color: #999;
    font-weight: 400;
}
.ewd-product-price ins {
    text-decoration: none;
}
.ewd-product-tax {
    font-size: 13px;
    color: #888;
}
/* Rating + weekly sales inline row */
.ewd-product-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ewd-product-meta-sep {
    color: #ccc;
    font-size: 13px;
}
.ewd-product-features {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ewd-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.ewd-product-features li svg {
    flex-shrink: 0;
    color: var(--ewd-accent, #05BBD0);
    margin-top: 2px;
}
.ewd-product-atc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ewd-accent, #05BBD0);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}
.ewd-product-atc:hover {
    background: #04a8ba;
    transform: translateY(-1px);
    color: #fff;
}
.ewd-product-oos {
    display: inline-block;
    font-size: 15px;
    color: #999;
    padding: 14px 0;
}

/* Product About / Long Description */
.ewd-product-about {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 0;
}
.ewd-product-about h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0 0 16px;
}
.ewd-product-about h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    margin: 28px 0 12px;
}
.ewd-product-about p {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 16px;
}

/* Specs Table */
.ewd-product-specs {
    padding: 48px 0;
    border-top: 1px solid #eee;
}
.ewd-product-specs h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0 0 24px;
    text-align: center;
}
.ewd-specs-grid {
    max-width: 680px;
    margin: 0 auto;
}
.ewd-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.ewd-spec-label {
    color: #666;
    font-weight: 500;
}
.ewd-spec-value {
    color: #222;
    font-weight: 600;
    text-align: right;
    max-width: 55%;
}

/* Related Products */
.ewd-related {
    padding: 48px 0;
    border-top: 1px solid #eee;
}
.ewd-related h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0 0 24px;
    text-align: center;
}
.ewd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Klarna installment message */
.ewd-product-price-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ewd-product-klarna {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Shipping info (stock + delivery combined) */
.ewd-product-shipping-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    font-size: 13px;
}
.ewd-ship-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.ewd-ship-stock .ewd-stock__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ewd-ship-stock--green { color: #16a34a; }
.ewd-ship-stock--green .ewd-stock__dot { background: #16a34a; }
.ewd-ship-stock--yellow { color: #ca8a04; }
.ewd-ship-stock--yellow .ewd-stock__dot { background: #ca8a04; }
.ewd-ship-stock--orange { color: #ea580c; }
.ewd-ship-stock--orange .ewd-stock__dot { background: #ea580c; }
.ewd-ship-delivery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555;
}
.ewd-ship-delivery svg {
    flex-shrink: 0;
    color: var(--ewd-success, #38a169);
}
/* Payment methods (compact inline) */
.ewd-payments-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}
.ewd-payments-compact svg {
    flex-shrink: 0;
    color: #aaa;
}

/* Lieferumfang (What's in the box) */
.ewd-product-lieferumfang {
    padding: 48px 0;
    border-top: 1px solid #eee;
}
.ewd-product-lieferumfang h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0 0 24px;
    text-align: center;
}
.ewd-product-lieferumfang h2 svg {
    color: var(--ewd-accent, #05BBD0);
}
.ewd-lieferumfang-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ewd-lieferumfang-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    padding: 10px 16px;
    background: var(--ewd-bg-light, #f7fafc);
    border-radius: 8px;
}
.ewd-lieferumfang-list li svg {
    flex-shrink: 0;
    color: var(--ewd-accent, #05BBD0);
}

/* Sustainability section */
.ewd-sustainability {
    padding: 40px 0;
    border-top: 1px solid #eee;
}
.ewd-sustainability__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 680px;
    margin: 0 auto;
    padding: 24px 28px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}
.ewd-sustainability__icon {
    flex-shrink: 0;
    color: #059669;
}
.ewd-sustainability__content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 4px;
}
.ewd-sustainability__content p {
    font-size: 14px;
    color: #047857;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   PRODUCT PAGE — Section Layout (alternating backgrounds)
   ========================================================================== */

/* Base section: full-width with vertical padding */
.ewd-pp-section {
    width: 100%;
    padding: 56px 0;
}
.ewd-pp-section:first-child {
    padding-top: 0;
}

/* Section background variants */
.ewd-pp-section--white {
    background: #fff;
}
.ewd-pp-section--grey {
    background: #f7fafc;
}
.ewd-pp-section--blue {
    background: #f0f7ff;
}
.ewd-pp-section--navy {
    background: linear-gradient(135deg, var(--ewd-primary, #012753) 0%, #1a4a7a 100%);
    color: #fff;
}
.ewd-pp-section--cta {
    background: linear-gradient(135deg, var(--ewd-accent, #05BBD0) 0%, #0495a5 100%);
    color: #fff;
    text-align: center;
}

/* Container: centered max-width */
.ewd-pp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ewd-pp-container--narrow {
    max-width: 820px;
}

/* Section titles */
.ewd-pp-section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0 0 28px;
    line-height: 1.3;
}
.ewd-pp-section-title--center {
    text-align: center;
}

/* --- Trust bar (Section 2) --- */
.ewd-pp-trustbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ewd-pp-trustbar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.ewd-pp-trustbar__item svg {
    flex-shrink: 0;
    color: var(--ewd-accent, #05BBD0);
}
.ewd-pp-trustbar__item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
}
.ewd-pp-trustbar__item span {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 1px;
}

/* --- USP Card Grid (Section 3) --- */
.ewd-pp-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ewd-pp-usp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ewd-pp-usp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.ewd-pp-usp-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(5, 187, 208, 0.1);
    border-radius: 50%;
    margin-bottom: 14px;
    color: var(--ewd-accent, #05BBD0);
}
.ewd-pp-usp-card__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    margin-bottom: 6px;
}
.ewd-pp-usp-card__text {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
}
.ewd-pp-usp-closing {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin: 28px 0 0;
    line-height: 1.6;
}

/* --- About / Long Description (Section 4) --- */
.ewd-pp-about {
    max-width: 820px;
    margin: 0 auto;
}
.ewd-pp-about h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0 0 16px;
}
.ewd-pp-about h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    margin: 28px 0 12px;
}
.ewd-pp-about p {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 16px;
}
.ewd-pp-about ul,
.ewd-pp-about ol {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    padding-left: 20px;
    margin: 0 0 16px;
}

/* --- Specs & Lieferumfang Grid (Section 5) --- */
.ewd-pp-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.ewd-pp-specs-table {
    border-radius: 10px;
    overflow: hidden;
}
.ewd-pp-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.ewd-pp-spec-row--even {
    background: #f7fafc;
}
.ewd-pp-spec-label {
    color: #666;
    font-weight: 500;
}
.ewd-pp-spec-value {
    color: #222;
    font-weight: 600;
    text-align: right;
    max-width: 55%;
}

/* Lieferumfang column */
.ewd-pp-lieferumfang .ewd-pp-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ewd-pp-lieferumfang .ewd-pp-section-title svg {
    color: var(--ewd-accent, #05BBD0);
}
.ewd-pp-lieferumfang-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ewd-pp-lieferumfang-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    padding: 12px 16px;
    background: #f7fafc;
    border-radius: 8px;
}
.ewd-pp-lieferumfang-list li svg {
    flex-shrink: 0;
    color: var(--ewd-accent, #05BBD0);
}

/* --- Sustainability (Section 8 — navy) --- */
.ewd-pp-eco {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.ewd-pp-eco__icon {
    flex-shrink: 0;
    opacity: 0.85;
}
.ewd-pp-eco strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.ewd-pp-eco p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    opacity: 0.9;
}

/* --- CTA Section (Section 9) --- */
.ewd-pp-section--cta h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.ewd-pp-section--cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 24px;
}
.ewd-pp-section--cta .ewd-hp-btn {
    display: inline-flex;
}

/* --- Weekly Sales Counter (inline social proof) --- */
.ewd-weekly-sales {
    font-size: 13px;
    font-weight: 500;
    color: #7c3aed;
}


/* --- Sticky ATC Bar (bottom of viewport) --- */
.ewd-sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    z-index: 990;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 10px 0;
}
.ewd-sticky-atc.is-visible {
    transform: translateY(0);
}
.ewd-sticky-atc__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ewd-sticky-atc__thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: contain;
    background: #f7fafc;
    flex-shrink: 0;
}
.ewd-sticky-atc__info {
    flex: 1;
    min-width: 0;
}
.ewd-sticky-atc__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ewd-sticky-atc__info span {
    font-size: 16px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
}
.ewd-sticky-atc__info span del {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}
.ewd-sticky-atc__info span ins {
    text-decoration: none;
}
.ewd-sticky-atc__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ewd-accent, #05BBD0);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}
.ewd-sticky-atc__btn:hover {
    background: #04a8ba;
    color: #fff;
}

/* --- Free Shipping Progress Bar (cart) --- */
.ewd-shipping-bar {
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    margin-bottom: 16px;
}
.ewd-shipping-bar--reached {
    background: #ecfdf5;
    border-color: #6ee7b7;
}
.ewd-shipping-bar__text {
    font-size: 13px;
    color: #166534;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ewd-shipping-bar__track {
    height: 6px;
    background: #d1fae5;
    border-radius: 3px;
    overflow: hidden;
}
.ewd-shipping-bar__fill {
    height: 100%;
    background: #16a34a;
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* ==========================================================================
   PRODUCT PAGE — Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .ewd-product-hero {
        gap: 32px;
    }
    .ewd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ewd-pp-trustbar {
        grid-template-columns: repeat(2, 1fr);
    }
    .ewd-pp-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ewd-pp-section {
        padding: 40px 0;
    }
    .ewd-product-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ewd-product-gallery {
        position: static;
    }
    .ewd-product-title {
        font-size: 24px;
    }
    .ewd-product-price {
        font-size: 28px;
    }
    .ewd-product-atc {
        width: 100%;
    }
    .ewd-pp-trustbar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .ewd-pp-trustbar__item {
        padding: 12px 14px;
    }
    .ewd-pp-usp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ewd-pp-usp-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }
    .ewd-pp-usp-card__icon {
        margin-bottom: 0;
    }
    .ewd-pp-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ewd-pp-section-title {
        font-size: 21px;
    }
    .ewd-pp-eco {
        flex-direction: column;
        text-align: center;
    }
    .ewd-pp-spec-row {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ewd-pp-section {
        padding: 32px 0;
    }
    .ewd-pp-container {
        padding: 0 16px;
    }
    .ewd-product-title {
        font-size: 21px;
    }
    .ewd-product-price {
        font-size: 24px;
    }
    .ewd-gallery-thumb {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
    }
    .ewd-related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .ewd-pp-trustbar {
        grid-template-columns: 1fr;
    }
    .ewd-pp-section-title {
        font-size: 19px;
    }
    .ewd-pp-section--cta h2 {
        font-size: 22px;
    }
    .ewd-sticky-atc__thumb {
        display: none;
    }
    .ewd-sticky-atc__info strong {
        font-size: 12px;
    }
    .ewd-sticky-atc__info span {
        font-size: 14px;
    }
    .ewd-sticky-atc__btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ==========================================================================
   CATEGORY ARCHIVE PAGES
   ========================================================================== */

.ewd-category {
    --ewd-primary: #012753;
    --ewd-primary-light: #2B6CB0;
    --ewd-accent: #05BBD0;
    --ewd-text: #1a2a3a;
    --ewd-text-light: #5a6a7a;
    --ewd-bg: #f8fafc;
    --ewd-card-bg: #ffffff;
    --ewd-radius: 12px;
    color: var(--ewd-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Breadcrumbs */
.ewd-breadcrumbs {
    background: var(--ewd-bg);
    padding: 14px 0;
    font-size: 13px;
    color: var(--ewd-text-light);
}
.ewd-breadcrumbs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ewd-breadcrumbs a {
    color: var(--ewd-primary-light);
    text-decoration: none;
}
.ewd-breadcrumbs a:hover {
    text-decoration: underline;
}
.ewd-breadcrumbs__sep {
    margin: 0 8px;
    color: #ccc;
}

/* Hero */
.ewd-category__hero {
    background: linear-gradient(135deg, var(--ewd-primary) 0%, #1a4a7a 100%);
    color: #fff;
    padding: 56px 24px;
    text-align: center;
}
.ewd-category__hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ewd-category__h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.25;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.ewd-category__intro {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    color: #fff !important;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Product Grid */
.ewd-category__products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}
.ewd-category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

/* Product Card */
.ewd-category__card {
    background: var(--ewd-card-bg);
    border-radius: var(--ewd-radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}
.ewd-category__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ewd-category__card-image {
    display: block;
    position: relative;
    background: var(--ewd-bg);
    aspect-ratio: 1/1;
    overflow: hidden;
}
.ewd-category__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.3s ease;
}
.ewd-category__card:hover .ewd-category__card-image img {
    transform: scale(1.04);
}
.ewd-category__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ewd-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.ewd-category__card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ewd-category__card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.ewd-category__card-title a {
    color: var(--ewd-primary);
    text-decoration: none;
}
.ewd-category__card-title a:hover {
    color: var(--ewd-primary-light);
}
.ewd-category__card-desc {
    font-size: 14px;
    color: var(--ewd-text-light);
    line-height: 1.55;
    margin: 0 0 14px 0;
    flex: 1;
}
.ewd-category__card-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--ewd-primary);
    margin-bottom: 12px;
}
.ewd-category__card-price del {
    font-size: 15px;
    color: #999;
    font-weight: 400;
    margin-right: 4px;
}
.ewd-category__card-price ins {
    text-decoration: none;
}
.ewd-category__card-trust {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--ewd-text-light);
    margin-bottom: 16px;
}
.ewd-category__card-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.ewd-category__card-trust svg {
    flex-shrink: 0;
    color: var(--ewd-accent);
}
.ewd-category__card-actions {
    display: flex;
    gap: 10px;
}
.ewd-category__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}
.ewd-category__btn--details {
    background: transparent;
    color: var(--ewd-primary);
    border: 1.5px solid var(--ewd-primary);
}
.ewd-category__btn--details:hover {
    background: var(--ewd-primary);
    color: #fff;
}
.ewd-category__btn--cart {
    background: var(--ewd-accent);
    color: #fff;
    border: 1.5px solid var(--ewd-accent);
}
.ewd-category__btn--cart:hover {
    background: #04a8bb;
    border-color: #04a8bb;
}
.ewd-category__card-oos {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

/* Trust Bar */
.ewd-category__trust {
    background: var(--ewd-bg);
    padding: 40px 24px;
    border-top: 1px solid #e8ecf0;
}
.ewd-category__trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ewd-category__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ewd-category__trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ewd-primary);
}
.ewd-category__trust-item span {
    display: block;
    font-size: 13px;
    color: var(--ewd-text-light);
}

/* Responsive — Category */
@media (max-width: 1024px) {
    .ewd-category__trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .ewd-category__h1 {
        font-size: 26px;
    }
    .ewd-category__hero {
        padding: 40px 20px;
    }
    .ewd-category__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ewd-category__card-actions {
        flex-direction: column;
    }
    .ewd-category__trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .ewd-category__h1 {
        font-size: 22px;
    }
    .ewd-category__intro {
        font-size: 15px;
    }
    .ewd-category__trust-inner {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SHOP PAGE — Section headers per category
   ========================================================================== */

.ewd-shop__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 0;
}
.ewd-shop__section:last-of-type {
    padding-bottom: 48px;
}
.ewd-shop__section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}
.ewd-shop__section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 0;
}
.ewd-shop__section-title a {
    color: inherit;
    text-decoration: none;
}
.ewd-shop__section-title a:hover {
    color: var(--ewd-primary-light, #2B6CB0);
}
.ewd-shop__section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ewd-accent, #05BBD0);
    text-decoration: none;
    white-space: nowrap;
}
.ewd-shop__section-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ewd-shop__section {
        padding: 32px 20px 0;
    }
    .ewd-shop__section-header {
        flex-direction: column;
        gap: 8px;
    }
    .ewd-shop__section-title {
        font-size: 20px;
    }
}

/* ==========================================================================
   BLOG — Archive Page
   ========================================================================== */

body.blog .loop-entry .entry-content-wrap {
    background: var(--ewd-bg, #fff);
    border: 1px solid var(--ewd-border, #e2e8f0);
    border-radius: var(--ewd-radius, 14px);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.blog .loop-entry .entry-content-wrap:hover {
    transform: translateY(-4px);
    box-shadow: var(--ewd-shadow-lg, 0 4px 24px rgba(0,0,0,0.08));
    border-color: var(--ewd-accent, #05BBD0);
}

/* Card thumbnail */
body.blog .loop-entry .post-thumbnail {
    overflow: hidden;
}
body.blog .loop-entry .post-thumbnail img {
    transition: transform 0.4s ease;
    width: 100%;
    height: auto;
}
body.blog .loop-entry .entry-content-wrap:hover .post-thumbnail img {
    transform: scale(1.06);
}

/* Card title */
body.blog .loop-entry .entry-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    line-height: 1.3;
    margin-bottom: 8px;
}
body.blog .loop-entry .entry-title a {
    color: inherit;
    text-decoration: none;
}
body.blog .loop-entry .entry-title a:hover {
    color: var(--ewd-accent, #05BBD0);
}

/* Card excerpt */
body.blog .loop-entry .entry-summary p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: var(--ewd-text-light, #4a5568);
    line-height: 1.6;
}

/* Card metadata */
body.blog .loop-entry .entry-meta {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    color: var(--ewd-text-muted, #a0aec0);
}
body.blog .loop-entry .entry-meta a {
    color: var(--ewd-text-muted, #a0aec0);
    text-decoration: none;
}
body.blog .loop-entry .entry-meta a:hover {
    color: var(--ewd-accent, #05BBD0);
}

/* Footer / read more */
body.blog .loop-entry .entry-footer {
    font-size: 13px;
}
body.blog .loop-entry .entry-footer a {
    color: var(--ewd-accent, #05BBD0);
    font-weight: 600;
    text-decoration: none;
}
body.blog .loop-entry .entry-footer a:hover {
    color: var(--ewd-primary, #012753);
}

/* Pagination */
body.blog nav.pagination .page-numbers {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: var(--ewd-radius-sm, 10px);
    transition: all 0.2s ease;
}
body.blog nav.pagination .page-numbers.current,
body.blog nav.pagination .page-numbers:hover {
    background: var(--ewd-accent, #05BBD0);
    color: #fff;
    border-color: var(--ewd-accent, #05BBD0);
}

/* ==========================================================================
   BLOG — Single Post
   ========================================================================== */

/* Post title */
body.single-post .entry-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    line-height: 1.25;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured image */
body.single-post .post-thumbnail img {
    border-radius: var(--ewd-radius, 14px);
}

/* Content typography */
body.single-post .entry-content {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--ewd-text, #1a2332);
    line-height: 1.8;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

body.single-post .entry-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ewd-primary, #012753);
    margin: 40px 0 16px;
    line-height: 1.3;
}

body.single-post .entry-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    margin: 32px 0 12px;
    line-height: 1.3;
}

body.single-post .entry-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
    margin: 24px 0 10px;
}

body.single-post .entry-content p {
    font-size: 16px;
    color: var(--ewd-text-light, #4a5568);
    margin: 0 0 20px;
    line-height: 1.8;
}

body.single-post .entry-content ul,
body.single-post .entry-content ol {
    font-size: 16px;
    color: var(--ewd-text-light, #4a5568);
    line-height: 1.8;
    padding-left: 24px;
    margin: 0 0 20px;
}

body.single-post .entry-content li {
    margin-bottom: 6px;
}

/* Images within content */
body.single-post .entry-content img {
    border-radius: var(--ewd-radius, 14px);
}
body.single-post .entry-content figure {
    margin: 28px 0;
}
body.single-post .entry-content figcaption {
    font-size: 13px;
    color: var(--ewd-text-muted, #a0aec0);
    text-align: center;
    margin-top: 8px;
}

/* Blockquotes */
body.single-post .entry-content blockquote {
    background: var(--ewd-bg-light, #f7fafc);
    border-left: 4px solid var(--ewd-accent, #05BBD0);
    border-radius: 0 var(--ewd-radius-sm, 10px) var(--ewd-radius-sm, 10px) 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-style: normal;
}
body.single-post .entry-content blockquote p {
    color: var(--ewd-text, #1a2332);
    font-weight: 500;
    margin: 0;
}

/* Links */
body.single-post .entry-content a {
    color: var(--ewd-accent-dark, #049aad);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}
body.single-post .entry-content a:hover {
    color: var(--ewd-primary, #012753);
}

/* Tables */
body.single-post .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}
body.single-post .entry-content th {
    background: var(--ewd-primary, #012753);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}
body.single-post .entry-content td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--ewd-border, #e2e8f0);
}
body.single-post .entry-content tr:nth-child(even) td {
    background: var(--ewd-bg-light, #f7fafc);
}

/* Post metadata footer */
body.single-post .entry-footer {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    color: var(--ewd-text-muted, #a0aec0);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Related posts */
body.single-post .entry-related .loop-entry .entry-content-wrap {
    border: 1px solid var(--ewd-border, #e2e8f0);
    border-radius: var(--ewd-radius, 14px);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.single-post .entry-related .loop-entry .entry-content-wrap:hover {
    transform: translateY(-3px);
    box-shadow: var(--ewd-shadow-lg, 0 4px 24px rgba(0,0,0,0.08));
}
body.single-post .entry-related .loop-entry .entry-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ewd-primary, #012753);
}
body.single-post .entry-related .loop-entry .entry-title a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   BLOG — CTA Banner (after post content)
   ========================================================================== */

.ewd-blog-cta {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--ewd-primary, #012753);
    border-radius: var(--ewd-radius, 14px);
    padding: 48px 32px;
    text-align: center;
    margin: 48px 0 0;
}
.ewd-blog-cta .ewd-blog-cta__title,
body.single-post .entry-content .ewd-blog-cta__title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.ewd-blog-cta .ewd-blog-cta__text,
body.single-post .entry-content .ewd-blog-cta__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px;
    line-height: 1.6;
}
.ewd-blog-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ewd-blog-cta__link {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.ewd-blog-cta__link:hover {
    border-color: #fff !important;
    color: #fff !important;
}
.ewd-blog-cta__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.ewd-blog-cta__trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ewd-blog-cta__trust svg {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   BLOG — Reading Progress Bar
   ========================================================================== */

.ewd-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--ewd-accent, #05BBD0);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ==========================================================================
   BLOG — Responsive
   ========================================================================== */

@media (max-width: 768px) {
    body.single-post .entry-title {
        font-size: 26px;
    }
    body.single-post .entry-content h2 {
        font-size: 21px;
        margin-top: 32px;
    }
    body.single-post .entry-content h3 {
        font-size: 17px;
        margin-top: 24px;
    }
    .ewd-blog-cta {
        padding: 32px 20px;
    }
    .ewd-blog-cta__title {
        font-size: 20px;
    }
    .ewd-blog-cta__trust {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    body.single-post .entry-title {
        font-size: 22px;
    }
    body.single-post .entry-content {
        font-size: 15px;
    }
    body.single-post .entry-content p {
        font-size: 15px;
    }
    body.single-post .entry-content h2 {
        font-size: 19px;
    }
    body.single-post .entry-content h3 {
        font-size: 16px;
    }
    .ewd-blog-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    .ewd-blog-cta__buttons .ewd-hp-btn {
        width: 100%;
    }
    body.blog .loop-entry .entry-title {
        font-size: 15px;
    }
}
