/* ================================================================
   ENERGIE PŘÍRODY – Produktové popisy v0.7 Premium
   Kompletní CSS pro Shoptet · 30 modulů
   Verze: 0.7.1 · Datum: 2025-03-04
   Font: Inter (Google Fonts – nutno načíst v šabloně Shoptetu)
   ================================================================ */

/* ----------------------------------------------------------------
   ZÁKLAD – proměnné, reset, typografie
   ---------------------------------------------------------------- */
:root {
    --ep-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ep-primary: #6AB023;
    --ep-primary-dark: #3D6B0F;
    --ep-primary-light: #EDF5E1;
    --ep-text: #1A1A1A;
    --ep-text-light: #6B6B6B;
    --ep-border: #E8E6E1;
    --ep-bg: #FAFAF8;
    --ep-bg-warm: #F8F6F0;
    --ep-white: #FFFFFF;
    --ep-radius: 16px;
    --ep-radius-sm: 10px;
    --ep-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --ep-shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --ep-shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --ep-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ep-product {
    font-family: var(--ep-font);
    color: var(--ep-text);
    line-height: 1.65;
    font-size: 15px;
}
.ep-product *, .ep-product *::before, .ep-product *::after {
    box-sizing: border-box;
}
.ep-section {
    margin-bottom: 28px;
}
.ep-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ep-primary-dark);
    margin-bottom: 6px;
}
.ep-section-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--ep-text);
    margin: 0 0 18px 0;
    line-height: 1.3;
}
.ep-pill {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(106,176,35,0.08);
    color: var(--ep-primary-dark);
    border: 1px solid rgba(106,176,35,0.15);
    transition: all var(--ep-transition);
}
.ep-pill:hover {
    background: rgba(106,176,35,0.18);
    transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   KRÁTKÝ POPIS (shortDescription)
   ---------------------------------------------------------------- */
.ep-short-benefits { margin: 12px 0; }
.ep-short-benefit { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; }
.ep-short-benefit svg { flex-shrink: 0; margin-top: 3px; }
.ep-short-benefit span { font-size: 14px; line-height: 1.5; color: var(--ep-text); }
.ep-short-cta { margin-top: 12px; font-size: 14px; color: var(--ep-text); }


/* ================================================================
   M01 HERO INTRO
   ================================================================ */
.ep-hero {
    position: relative;
    padding: 44px 40px;
    background: linear-gradient(135deg, #f7faf2 0%, #eef5e4 50%, #f0f7e6 100%);
    border-radius: var(--ep-radius);
    overflow: hidden;
}
.ep-hero::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,176,35,0.08) 0%, transparent 70%);
}
.ep-hero::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,176,35,0.05) 0%, transparent 70%);
}
.ep-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ep-primary-dark);
    background: rgba(106,176,35,0.12);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.ep-hero-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px 0;
    color: var(--ep-text);
    position: relative;
    z-index: 2;
}
.ep-hero-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ep-text-light);
    max-width: 600px;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
}
.ep-hero-lead strong {
    color: var(--ep-text);
    font-weight: 600;
}
.ep-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.ep-hero-decoration {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 1;
}


/* ================================================================
   M02 OBRÁZEK PRODUKTU (Zigzag)
   ================================================================ */
.ep-zigzag-row {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 24px;
    background: var(--ep-bg);
    border-radius: var(--ep-radius);
    border: 1px solid var(--ep-border);
}
.ep-zigzag-img {
    flex-shrink: 0;
    width: 240px;
}
.ep-zigzag-img img {
    width: 100%;
    height: auto;
    border-radius: var(--ep-radius-sm);
    background: var(--ep-white);
    padding: 12px;
    box-shadow: var(--ep-shadow-sm);
}
.ep-zigzag-text { flex: 1; }
.ep-zigzag-text h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--ep-text);
}
.ep-zigzag-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ep-text-light);
    margin: 0;
}


/* ================================================================
   M03 BENEFIT KARTY
   ================================================================ */
.ep-benefits-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ep-benefit-card {
    position: relative;
    padding: 24px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    background: var(--ep-white);
    transition: all var(--ep-transition);
    overflow: hidden;
}
.ep-benefit-card:hover {
    border-color: rgba(106,176,35,0.3);
    box-shadow: var(--ep-shadow-md);
    transform: translateY(-2px);
}
.ep-benefit-card-bg {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 80px;
    height: 80px;
    color: var(--ep-primary);
    opacity: 0.05;
}
.ep-benefit-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.ep-benefit-card-icon,
.ep-benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--ep-primary-light) 0%, #e8f3d9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
}
.ep-benefit-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.ep-benefit-card p {
    font-size: 13px;
    color: var(--ep-text-light);
    margin: 0;
    line-height: 1.6;
}


/* ================================================================
   M04 TABULKA SLOŽENÍ
   ================================================================ */
.ep-table-wrapper { overflow-x: auto; }
.ep-table-premium {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ep-table-premium th {
    background: var(--ep-bg);
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--ep-border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ep-text-light);
}
.ep-table-premium td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--ep-border);
}
.ep-table-premium tr:hover td {
    background: rgba(106,176,35,0.03);
}
.ep-table-note {
    font-size: 11px;
    color: #999;
    font-style: italic;
    margin-top: 8px;
}


/* ================================================================
   M05 DÁVKOVÁNÍ
   ================================================================ */
.ep-dosage-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ep-dose-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    background: var(--ep-white);
    position: relative;
    transition: all var(--ep-transition);
}
.ep-dose-card:hover { border-color: var(--ep-primary); }
.ep-dose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ep-primary), transparent);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity var(--ep-transition);
}
.ep-dose-card:hover::before { opacity: 1; }
.ep-dose-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--ep-primary);
    line-height: 1;
}
.ep-dose-unit { font-size: 14px; font-weight: 600; margin-top: 6px; }
.ep-dose-detail { font-size: 12px; color: var(--ep-text-light); margin-top: 8px; line-height: 1.5; }


/* ================================================================
   M06 ODBORNÝ TIP
   ================================================================ */
.ep-expert-premium {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: var(--ep-radius);
    background: var(--ep-bg-warm);
    border: 1px solid var(--ep-border);
}
.ep-expert-photo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ep-primary-light), #e8f3d9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
}
.ep-expert-content { flex: 1; }
.ep-expert-meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ep-primary-dark);
    margin-bottom: 8px;
}
.ep-expert-text {
    font-size: 14px;
    color: var(--ep-text-light);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}


/* ================================================================
   M07 UPOZORNĚNÍ
   ================================================================ */
.ep-warnings-premium {
    padding: 24px 28px;
    border-radius: var(--ep-radius);
    background: linear-gradient(135deg, #FFFCF5 0%, #FFF8EC 100%);
    border: 1px solid #F0E4C8;
    display: flex;
    gap: 16px;
}
.ep-warnings-icon { flex-shrink: 0; color: #D4A017; }
.ep-warnings-content { flex: 1; }
.ep-warnings-title { font-size: 15px; font-weight: 700; margin: 0 0 10px 0; }
.ep-warnings-list { margin: 0; padding-left: 18px; }
.ep-warnings-list li { font-size: 13px; color: var(--ep-text-light); margin-bottom: 4px; line-height: 1.5; }


/* ================================================================
   M08 SLOŽENÍ (kompaktní)
   ================================================================ */
.ep-composition-premium {
    padding: 20px 24px;
    background: var(--ep-bg);
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
}
.ep-composition-premium p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ep-text-light);
    margin: 0;
}


/* ================================================================
   M09 FAQ
   ================================================================ */
.ep-faq-premium {
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    overflow: hidden;
}
.ep-faq-item { border-bottom: 1px solid var(--ep-border); }
.ep-faq-item:last-child { border-bottom: none; }
.ep-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding: 18px 24px;
    cursor: pointer;
    transition: all var(--ep-transition);
}
.ep-faq-question:hover { background: var(--ep-bg); color: var(--ep-primary-dark); }
.ep-faq-toggle {
    flex-shrink: 0;
    transition: transform var(--ep-transition);
    color: var(--ep-primary);
}
.ep-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ep-faq-answer p { padding: 0 24px 18px; font-size: 14px; color: var(--ep-text-light); line-height: 1.7; margin: 0; }
.ep-faq-item.ep-open .ep-faq-answer { max-height: 500px; }
.ep-faq-item.ep-open .ep-faq-toggle { transform: rotate(180deg); }


/* ================================================================
   M10 HIGHLIGHT BOX
   ================================================================ */
.ep-highlight-premium {
    display: flex;
    gap: 16px;
    padding: 24px 28px;
    border-radius: var(--ep-radius);
    background: linear-gradient(135deg, #f7faf2 0%, #eef5e4 100%);
    border: 1px solid rgba(106,176,35,0.15);
}
.ep-highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(106,176,35,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
}
.ep-highlight-content h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px 0; }
.ep-highlight-content p { font-size: 14px; color: var(--ep-text-light); line-height: 1.7; margin: 0; }


/* ================================================================
   M11 KROKY (postup užívání)
   ================================================================ */
.ep-steps-premium {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ep-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--ep-radius-sm);
    background: var(--ep-white);
    border: 1px solid var(--ep-border);
    transition: all var(--ep-transition);
}
.ep-step-item:hover { border-color: rgba(106,176,35,0.3); }
.ep-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ep-primary);
    color: var(--ep-white);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ep-step-item h3 { font-size: 15px; font-weight: 600; margin: 0 0 4px 0; }
.ep-step-item p { font-size: 13px; color: var(--ep-text-light); margin: 0; line-height: 1.6; }


/* ================================================================
   M12 TRUST BADGES
   ================================================================ */
.ep-trust-premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}
.ep-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px;
    background: var(--ep-bg);
    border: 1px solid var(--ep-border);
    transition: all var(--ep-transition);
}
.ep-trust-badge:hover {
    border-color: rgba(106,176,35,0.3);
    transform: translateY(-1px);
    box-shadow: var(--ep-shadow-sm);
}
.ep-trust-badge svg,
.ep-trust-icon { color: var(--ep-primary); }


/* ================================================================
   M13 STATISTIKY
   ================================================================ */
.ep-stats-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ep-stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--ep-bg);
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    transition: all var(--ep-transition);
}
.ep-stat-item:hover { border-color: rgba(106,176,35,0.3); }
.ep-stat-number,
.ep-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--ep-primary);
    line-height: 1;
}
.ep-stat-unit { font-size: 12px; font-weight: 600; color: var(--ep-text); margin-top: 6px; }
.ep-stat-label,
.ep-stat-desc { font-size: 11px; color: var(--ep-text-light); margin-top: 4px; }


/* ================================================================
   M14 SROVNÁVACÍ TABULKA
   ================================================================ */
.ep-compare-premium {
    overflow-x: auto;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
}
.ep-compare-premium table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ep-compare-premium th,
.ep-compare-premium td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--ep-border);
    text-align: center;
}
.ep-compare-premium th { background: var(--ep-bg); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.ep-compare-premium td:first-child { text-align: left; font-weight: 500; }
.ep-compare-ours {
    background: rgba(106,176,35,0.04);
    border-left: 2px solid var(--ep-primary);
    border-right: 2px solid var(--ep-primary);
}


/* ================================================================
   M15 SPOTLIGHT INGREDIENCE
   ================================================================ */
.ep-spotlight-premium {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: linear-gradient(135deg, #FAFAF8 0%, #F5F3ED 100%);
    border-radius: var(--ep-radius);
}
.ep-spotlight-visual {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ep-primary-light), #e8f3d9);
    border-radius: 50%;
    color: var(--ep-primary);
}
.ep-spotlight-content { flex: 1; }
.ep-spotlight-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ep-primary-dark);
    margin-bottom: 6px;
}
.ep-spotlight-content h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px 0; }
.ep-spotlight-content p { font-size: 14px; color: var(--ep-text-light); line-height: 1.7; margin: 0 0 12px 0; }
.ep-spotlight-facts { display: flex; flex-wrap: wrap; gap: 8px; }
.ep-spotlight-fact {
    font-size: 13px;
    padding: 8px 14px;
    background: var(--ep-white);
    border-radius: var(--ep-radius-sm);
    border-left: 3px solid var(--ep-primary);
}
.ep-spotlight-fact-label { font-weight: 600; margin-right: 4px; }


/* ================================================================
   M16 DOPORUČENÉ KOMBINACE
   ================================================================ */
.ep-combos-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ep-combo-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    background: var(--ep-white);
    transition: all var(--ep-transition);
}
.ep-combo-card:hover { border-color: rgba(106,176,35,0.3); }
.ep-combo-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ep-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
}
.ep-combo-card h3 { font-size: 14px; font-weight: 600; margin: 0 0 4px 0; }
.ep-combo-card p { font-size: 12px; color: var(--ep-text-light); margin: 0; line-height: 1.5; }


/* ================================================================
   M17 TIMELINE
   ================================================================ */
.ep-timeline-premium {
    position: relative;
    padding-left: 28px;
}
.ep-timeline-premium::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ep-border);
}
.ep-timeline-item {
    position: relative;
    padding-bottom: 24px;
}
.ep-timeline-item:last-child { padding-bottom: 0; }
.ep-timeline-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ep-primary);
    border: 3px solid var(--ep-white);
    box-shadow: var(--ep-shadow-sm);
}
.ep-timeline-period {
    font-size: 12px;
    font-weight: 700;
    color: var(--ep-primary-dark);
    margin-bottom: 4px;
}
.ep-timeline-content p { font-size: 14px; color: var(--ep-text-light); margin: 0; line-height: 1.6; }


/* ================================================================
   M18 VIDEO
   ================================================================ */
.ep-video-premium {
    border-radius: var(--ep-radius);
    overflow: hidden;
    border: 1px solid var(--ep-border);
}
.ep-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.ep-video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.ep-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
}
.ep-video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ep-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
    box-shadow: var(--ep-shadow-lg);
}
.ep-video-label { padding: 12px 16px; font-size: 13px; color: var(--ep-text-light); background: var(--ep-bg); }


/* ================================================================
   M19 RECENZE ZÁKAZNÍKŮ
   ================================================================ */
.ep-reviews-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ep-review-card {
    padding: 24px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    background: var(--ep-white);
}
.ep-review-stars { color: #F5A623; font-size: 14px; margin-bottom: 10px; }
.ep-review-text { font-size: 14px; color: var(--ep-text-light); line-height: 1.6; font-style: italic; margin: 0 0 12px 0; }
.ep-review-author { font-size: 12px; font-weight: 600; color: var(--ep-text); }


/* ================================================================
   M20 PŮVOD / PŘÍBĚH
   ================================================================ */
.ep-origin-premium {
    display: flex;
    gap: 24px;
    padding: 28px;
    border-radius: var(--ep-radius);
    background: var(--ep-bg-warm);
    border: 1px solid var(--ep-border);
}
.ep-origin-visual {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ep-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
}
.ep-origin-content { flex: 1; }
.ep-origin-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ep-primary-dark);
    margin-bottom: 6px;
}
.ep-origin-content h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px 0; }
.ep-origin-content p { font-size: 14px; color: var(--ep-text-light); line-height: 1.7; margin: 0; }


/* ================================================================
   M21 SKLADOVÁNÍ
   ================================================================ */
.ep-storage-premium {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 24px;
    border-radius: var(--ep-radius-sm);
    background: var(--ep-bg);
    border: 1px solid var(--ep-border);
}
.ep-storage-icon { flex-shrink: 0; color: var(--ep-primary); }
.ep-storage-premium p { font-size: 13px; color: var(--ep-text-light); line-height: 1.6; margin: 0; }


/* ================================================================
   M22 DENNÍ RITUÁL
   ================================================================ */
.ep-ritual-premium {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
}
.ep-ritual-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-radius: var(--ep-radius-sm);
    background: var(--ep-white);
    border: 1px solid var(--ep-border);
    min-width: 100px;
    transition: all var(--ep-transition);
}
.ep-ritual-step.ep-ritual-active,
.ep-ritual-step.ep-active {
    border-color: var(--ep-primary);
    background: var(--ep-primary-light);
}
.ep-ritual-icon { color: var(--ep-primary); }
.ep-ritual-time { font-size: 11px; font-weight: 700; color: var(--ep-primary-dark); }
.ep-ritual-label { font-size: 12px; color: var(--ep-text-light); text-align: center; }


/* ================================================================
   M23 PRO KOHO NENÍ (Honest Disclaimer)
   ================================================================ */
.ep-notfor-premium {
    display: flex;
    gap: 16px;
    padding: 24px 28px;
    border-radius: var(--ep-radius);
    background: #FFF5F5;
    border: 1px solid #F0D4D4;
}
.ep-notfor-icon { flex-shrink: 0; color: #C62828; }
.ep-notfor-content { flex: 1; }
.ep-notfor-content h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px 0; }
.ep-notfor-list { margin: 0; padding-left: 18px; }
.ep-notfor-list li { font-size: 13px; color: var(--ep-text-light); margin-bottom: 4px; line-height: 1.5; }


/* ================================================================
   M24 ROZBOR KAPSLE
   ================================================================ */
.ep-capsule-premium {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 28px;
    border-radius: var(--ep-radius);
    background: var(--ep-bg);
    border: 1px solid var(--ep-border);
}
.ep-capsule-visual {
    flex-shrink: 0;
    position: relative;
    width: 120px;
    height: 180px;
}
.ep-capsule-shape {
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: linear-gradient(180deg, rgba(106,176,35,0.15), rgba(106,176,35,0.05));
    border: 2px solid rgba(106,176,35,0.2);
}
.ep-capsule-ingredients { flex: 1; }
.ep-capsule-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--ep-border);
    font-size: 14px;
}
.ep-capsule-item:last-child { border-bottom: none; }
.ep-capsule-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ep-capsule-highlight { font-weight: 600; color: var(--ep-primary-dark); }


/* ================================================================
   M25 VĚDECKÉ ZÁZEMÍ
   ================================================================ */
.ep-science-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ep-science-card {
    padding: 20px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    background: var(--ep-white);
}
.ep-science-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--ep-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-primary);
    margin-bottom: 12px;
}
.ep-science-card h3 { font-size: 14px; font-weight: 600; margin: 0 0 6px 0; }
.ep-science-card p { font-size: 12px; color: var(--ep-text-light); margin: 0; line-height: 1.5; }
.ep-science-meta { font-size: 11px; color: #999; margin-top: 8px; }


/* ================================================================
   M26 SLOVNÍČEK
   ================================================================ */
.ep-glossary-premium {
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    overflow: hidden;
}
.ep-glossary-item {
    padding: 16px 24px;
    border-bottom: 1px solid var(--ep-border);
}
.ep-glossary-item:last-child { border-bottom: none; }
.ep-glossary-item dt {
    font-size: 14px;
    font-weight: 600;
    color: var(--ep-primary-dark);
    margin-bottom: 4px;
}
.ep-glossary-item dd {
    font-size: 13px;
    color: var(--ep-text-light);
    margin: 0;
    line-height: 1.6;
}


/* ================================================================
   M27 BALENÍ A VÝHODNOST
   ================================================================ */
.ep-packages-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ep-package-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    background: var(--ep-white);
    position: relative;
    transition: all var(--ep-transition);
}
.ep-package-card:hover { border-color: rgba(106,176,35,0.3); }
.ep-package-best {
    border-color: var(--ep-primary);
    box-shadow: 0 0 0 1px var(--ep-primary);
}
.ep-package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--ep-primary);
    color: var(--ep-white);
    padding: 3px 12px;
    border-radius: 10px;
}
.ep-package-size { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.ep-package-price { font-size: 14px; color: var(--ep-text-light); }


/* ================================================================
   M28 ALERGENNÍ MATICE
   ================================================================ */
.ep-allergens-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
}
.ep-allergen-chip {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--ep-border);
}
.ep-allergen-free {
    background: var(--ep-primary-light);
    color: var(--ep-primary-dark);
    border-color: rgba(106,176,35,0.2);
}
.ep-allergen-warn {
    background: #FFF8E1;
    color: #F57F17;
    border-color: #FFE082;
}


/* ================================================================
   M29 EXPANDABLE INGREDIENCE
   ================================================================ */
.ep-expand-premium {
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    overflow: hidden;
}
.ep-expand-item { border-bottom: 1px solid var(--ep-border); }
.ep-expand-item:last-child { border-bottom: none; }
.ep-expand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: background var(--ep-transition);
    font-size: 14px;
}
.ep-expand-header:hover { background: var(--ep-bg); }
.ep-expand-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ep-expand-toggle {
    flex-shrink: 0;
    margin-left: auto;
    transition: transform var(--ep-transition);
    color: var(--ep-primary);
}
.ep-expand-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ep-expand-body p { padding: 0 20px 16px 42px; font-size: 13px; color: var(--ep-text-light); line-height: 1.7; margin: 0; }
.ep-expand-item.ep-open .ep-expand-body { max-height: 300px; }
.ep-expand-item.ep-open .ep-expand-toggle { transform: rotate(180deg); }


/* ================================================================
   M30 CTA BANNER
   ================================================================ */
.ep-cta-premium {
    text-align: center;
    padding: 36px 32px;
    border-radius: var(--ep-radius);
    background: linear-gradient(135deg, #f7faf2 0%, #eef5e4 50%, #f0f7e6 100%);
    border: 1px solid rgba(106,176,35,0.15);
}
.ep-cta-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ep-primary-dark);
    margin-bottom: 8px;
}
.ep-cta-title { font-size: 22px; font-weight: 800; margin: 0 0 8px 0; }
.ep-cta-text { font-size: 14px; color: var(--ep-text-light); margin: 0 0 20px 0; }
.ep-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--ep-primary);
    color: var(--ep-white);
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--ep-transition);
    text-decoration: none;
}
.ep-cta-btn:hover {
    background: var(--ep-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--ep-shadow-md);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .ep-hero { padding: 28px 24px; }
    .ep-hero-title { font-size: 22px; }

    .ep-zigzag-row { flex-direction: column; text-align: center; }
    .ep-zigzag-img { width: 180px; margin: 0 auto; }

    .ep-benefits-premium { grid-template-columns: 1fr; }
    .ep-stats-premium { grid-template-columns: repeat(2, 1fr); }
    .ep-dosage-premium { grid-template-columns: 1fr; }
    .ep-combos-premium { grid-template-columns: 1fr; }
    .ep-reviews-premium { grid-template-columns: 1fr; }
    .ep-science-premium { grid-template-columns: 1fr; }
    .ep-packages-premium { grid-template-columns: 1fr; }

    .ep-spotlight-premium { flex-direction: column; text-align: center; }
    .ep-spotlight-visual { margin: 0 auto; }
    .ep-spotlight-facts { justify-content: center; }

    .ep-origin-premium { flex-direction: column; text-align: center; }
    .ep-origin-visual { margin: 0 auto; }

    .ep-expert-premium { flex-direction: column; text-align: center; }
    .ep-expert-photo { margin: 0 auto; }

    .ep-capsule-premium { flex-direction: column; text-align: center; }
    .ep-capsule-visual { margin: 0 auto; }

    .ep-highlight-premium { flex-direction: column; }
    .ep-warnings-premium { flex-direction: column; }
    .ep-notfor-premium { flex-direction: column; }
    .ep-storage-premium { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .ep-stats-premium { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ep-stat-item { padding: 16px 12px; }
    .ep-stat-number,
    .ep-stat-value { font-size: 26px; }
    .ep-ritual-premium { gap: 6px; }
    .ep-ritual-step { min-width: 80px; padding: 12px 10px; }
}

/* ================================================================
   IKONY – CSS-only (Shoptet odstraňuje inline SVG z popisů)
   Ikony jsou řešeny přes ::before pseudo-elementy v CSS
   ================================================================ */

/* Benefit card icons - generic checkmark */
.ep-benefit-card-icon::before,
.ep-benefit-icon::before {
    content: "✦";
    font-size: 18px;
    color: var(--ep-primary);
}

/* Hero badge icon */
.ep-hero-badge::before {
    content: "◆";
    font-size: 10px;
    margin-right: 2px;
}

/* Warning icon */
.ep-warnings-icon::before {
    content: "⚠";
    font-size: 22px;
}

/* Expert photo icon */
.ep-expert-photo::before {
    content: "💡";
    font-size: 24px;
}

/* FAQ toggle arrow */
.ep-faq-question::after {
    content: "›";
    font-size: 22px;
    font-weight: 300;
    color: var(--ep-primary);
    transition: transform var(--ep-transition);
    margin-left: auto;
    padding-left: 12px;
}
.ep-faq-item.ep-open .ep-faq-question::after {
    transform: rotate(90deg);
}
/* Hide the original SVG toggle (now empty) */
.ep-faq-toggle { display: none; }

/* Expandable toggle arrow */
.ep-expand-header::after {
    content: "›";
    font-size: 20px;
    font-weight: 300;
    color: var(--ep-primary);
    transition: transform var(--ep-transition);
    margin-left: auto;
    padding-left: 12px;
}
.ep-expand-item.ep-open .ep-expand-header::after {
    transform: rotate(90deg);
}
.ep-expand-toggle { display: none; }

/* Trust badge icons */
.ep-trust-badge::before {
    content: "✓";
    font-size: 14px;
    font-weight: 700;
    color: var(--ep-primary);
}

/* Highlight icon */
.ep-highlight-icon::before {
    content: "ℹ";
    font-size: 20px;
    color: var(--ep-primary);
}

/* Short description checkmarks */
.ep-short-benefit::before {
    content: "✓";
    font-size: 14px;
    font-weight: 700;
    color: var(--ep-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Storage icon */
.ep-storage-icon::before {
    content: "📦";
    font-size: 18px;
}

/* Steps number - already has number in HTML, no icon needed */

/* Capsule, Spotlight, Origin visual icons */
.ep-spotlight-visual::before {
    content: "🔬";
    font-size: 32px;
}
.ep-origin-visual::before {
    content: "🌍";
    font-size: 28px;
}

/* Not-for icon */
.ep-notfor-icon::before {
    content: "✕";
    font-size: 20px;
    font-weight: 700;
    color: #C62828;
}

/* Science icon */
.ep-science-icon::before {
    content: "📊";
    font-size: 18px;
}
