/* ========================================
   Template 3 — Fresh Emerald
   Teal/emerald accents, warm amber highlights
   ======================================== */

:root {
    --accent: #0d9488;
    --accent-light: #2dd4bf;
    --accent-dark: #0f766e;
    --accent-glow: rgba(13,148,136,0.25);
    --warm: #f59e0b;
    --warm-light: #fbbf24;
    --bg: #f0fdf4;
    --surface: #fff;
    --text: #134e4a;
    --text-muted: #5f7a76;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 4px 24px rgba(13,148,136,0.06);
    --shadow-lg: 0 12px 40px rgba(13,148,136,0.10);
}

* { box-sizing: border-box; }

body {
    min-width: 480px;
    background: var(--bg);
    font: 400 15px/1.6 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.content-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg);
}

/* ========================================
   Hero
   ======================================== */
.hero-section {
    background: var(--surface);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image {
    position: relative;
    background: #e6f7f2;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56%;
    background: linear-gradient(180deg, rgba(9, 30, 28, 0) 0%, rgba(9, 30, 28, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

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

.discount-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--warm), #d97706);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    letter-spacing: -0.5px;
    box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}

.hero-info {
    padding: 24px 20px 28px;
}

.label-hit {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.hero-info h1 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.price-new small {
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   Action block — timer + CTA together
   ======================================== */
.action-block {
    margin: 12px 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #0f766e 50%, #115e59 100%);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.timer-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.timer-inline.compact {
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.timer-icon { font-size: 18px; }

.countdown__timer {
    display: inline-flex;
    gap: 4px;
}

.countdown__item {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.countdown__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--warm-light);
    font-variant-numeric: tabular-nums;
}

.countdown__label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.countdown__item + .countdown__item::before {
    content: ':';
    font-size: 20px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    margin-right: 4px;
}

.cta-btn {
    display: block;
    width: 100%;
    background: #fff;
    color: var(--accent);
    font-weight: 800;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cta-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ========================================
   Description
   ======================================== */
.product-description {
    background: var(--surface);
    margin: 12px 16px;
    border-radius: var(--radius);
    padding: 32px 20px;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 20px;
    color: var(--text);
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.desc-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

.desc-text strong {
    color: var(--text);
    font-weight: 700;
}

.desc-text ul {
    padding-left: 20px;
    margin: 12px 0;
}

.desc-text li {
    margin-bottom: 8px;
}

.desc-text li::marker {
    color: var(--accent);
}

.desc-text img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CKEditor MediaEmbed (figure.media + iframe) — адаптивне відео.
   aspect-ratio замість height:auto, бо iframe не має intrinsic size. */
.desc-text figure.media,
.specs-content figure.media {
    margin: 16px auto;
    width: 100%;
    max-width: 100%;
}
.desc-text figure.media iframe,
.specs-content figure.media iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

/* ========================================
   Specifications
   ======================================== */
.specs-section {
    background: #0f2e2b;
    margin: 12px 16px;
    border-radius: var(--radius);
    padding: 32px 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.specs-section .section-title {
    color: #fff;
}

.specs-section .section-title::after {
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
}

.specs-image {
    margin: 0 -20px 20px;
}

.specs-image img {
    width: 100%;
    display: block;
}

.specs-content {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

.specs-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.specs-content table th,
.specs-content table td {
    padding: 12px 16px;
    text-align: left;
    border: none;
}

.specs-content table th {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specs-content table td {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.specs-content table tr:last-child td { border-bottom: none; }
.specs-content table tr:hover td { background: rgba(13,148,136,0.1); }

.specs-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   How to Order
   ======================================== */
.how-to-order {
    background: var(--surface);
    margin: 12px 16px;
    border-radius: var(--radius);
    padding: 32px 16px;
    box-shadow: var(--shadow);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.step:hover {
    background: #d1fae5;
}

.step-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.step-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent, #0f766e);
    display: block;
}

.step-body {
    flex: 1;
    min-width: 0;
}

.step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.step-body h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text);
}

.step-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   Order Section
   ======================================== */
.order-section {
    margin: 12px 16px 0;
    padding-bottom: 12px;
}

.order-card {
    background: #0f2e2b;
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
}

.order__title {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    text-align: center;
    letter-spacing: 0.2px;
}

.order-product-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.order-product-mini img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.order-product-mini h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.order-product-mini .price-row {
    gap: 10px;
}

.order-product-mini .price-old {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.order-product-mini .price-new {
    font-size: 20px;
    color: var(--accent-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-mini-timer {
    margin: -2px 0 12px;
    padding: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.order-mini-timer__label {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    line-height: 1.3;
}

.order-mini-timer__value {
    font-size: 16px;
    font-weight: 800;
    color: #e4f8f2;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.form-field-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    display: block;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-input:focus {
    border-color: var(--accent-light);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.2);
}

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 5px;
    padding-left: 4px;
    font-weight: 600;
}

.field.error {
    border-color: #ff6b6b !important;
    background: rgba(255,107,107,0.06) !important;
}

.order-form .cta-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-size: 16px;
    padding: 18px;
    margin-top: 4px;
}

.order-form .cta-btn:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.button-submit2:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cta-btn.success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

/* ========================================
   Footer
   ======================================== */
.landing-page .footer {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 20px 32px;
    text-align: center;
}

.footer a {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
}

.footer a:hover { color: var(--accent); }

.menu-menu-1-container { margin-top: 8px; }
.menu-menu-1-container a { margin: 0 8px; }

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section,
.action-block,
.product-description,
.specs-section,
.how-to-order,
.order-card {
    animation: fadeUp 0.5s ease both;
}

.action-block { animation-delay: 0.1s; }
.product-description { animation-delay: 0.15s; }
.specs-section { animation-delay: 0.2s; }
.how-to-order { animation-delay: 0.25s; }
.order-card { animation-delay: 0.3s; }

/* ========================================
   Shared spacing for new LP blocks
   ======================================== */
.content-wrap .lp-block {
    margin-bottom: 16px;
}

.content-wrap .lp-block:last-child {
    margin-bottom: 0;
}

/* ========================================
   Hero extras
   ======================================== */
.hero__subtitle {
    margin: -4px 0 14px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hero__signals {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    overflow: hidden;
}

.hero__signal {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.hero__signal-label {
    font-size: 11px;
    color: #e8f2f0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.hero__signal-value {
    font-size: 13px;
    line-height: 1.1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.hero__signal--stock .hero__signal-label,
.hero__signal--stock .hero__signal-value {
    color: #fde68a;
}

.hero__signals--overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 6px 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(6, 22, 20, 0.25) 0%, rgba(6, 22, 20, 0.55) 100%);
}

.order-submit-note {
    margin: 10px 0 0;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.order-submit-note--form {
    color: rgba(255,255,255,0.75);
}

/* ========================================
   Pain / Solution
   ======================================== */
.pain-solution {
    background: var(--surface);
    margin: 0 16px;
    border-radius: var(--radius);
    padding: 26px 20px;
    box-shadow: var(--shadow);
}

.pain-solution__section + .pain-solution__section {
    margin-top: 18px;
}

.pain-solution__divider {
    height: 1px;
    margin: 18px 0;
    background: linear-gradient(90deg, transparent 0%, #cfeee7 20%, #b8e7de 80%, transparent 100%);
}

.pain-solution__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pain-solution__list li {
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.55;
}

.pain-solution__section--problem .pain-solution__list li {
    background: #fff7ed;
    border-left: 3px solid #fb923c;
    color: #7c2d12;
}

.pain-solution__section--solution .pain-solution__list li {
    background: #ecfeff;
    border-left: 3px solid #14b8a6;
    color: #134e4a;
}

.pain-solution__solution-title {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.35;
    color: var(--text);
}

.pain-solution__product-name {
    color: var(--accent-dark);
    font-weight: 800;
}

/* ========================================
   Reviews
   ======================================== */
.reviews {
    background: var(--surface);
    margin: 0 16px;
    border-radius: var(--radius);
    padding: 26px 20px;
    box-shadow: var(--shadow);
}

.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 14px;
}

.reviews__summary-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.reviews__summary-right {
    text-align: right;
}

.reviews__summary-stars {
    color: #f59e0b;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.reviews__summary-score {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: var(--text);
}

.reviews__summary-count,
.reviews__summary-recommend {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.25;
}

.reviews__list {
    display: grid;
    gap: 12px;
}

.reviews-card {
    border: 1px solid #d8eee8;
    border-radius: 12px;
    padding: 12px;
    background: #f9fffd;
}

.reviews-card__top {
    display: flex;
    gap: 10px;
}

.reviews-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #d1fae5;
    color: #0f766e;
    font-size: 19px;
    font-weight: 800;
    line-height: 44px;
    text-align: center;
}

.reviews-card__main {
    flex: 1;
    min-width: 0;
}

.reviews-card__name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.reviews-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.reviews-card__stars {
    color: #f59e0b;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.reviews-card__meta {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 13px;
}

.reviews-card__verified {
    margin-top: 7px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 600;
}

.reviews-card__text {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    background: var(--surface);
    margin: 0 16px;
    border-radius: var(--radius);
    padding: 26px 20px;
    box-shadow: var(--shadow);
}

.faq__list {
    display: grid;
    gap: 10px;
}

.faq__item {
    border: 1px solid #d8eee8;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fffd;
}

.faq__question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.faq__icon {
    font-size: 20px;
    color: var(--accent-dark);
    line-height: 1;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
    padding: 0 14px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.faq__item.is-open .faq__answer {
    max-height: 260px;
    opacity: 1;
    padding: 0 14px 14px;
}

.faq__item.is-open .faq__icon {
    font-size: 22px;
}

.faq__item.is-open .faq__icon {
    color: var(--accent);
}

/* ========================================
   Sticky order bar
   ======================================== */
.sticky-order-bar {
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%) translateY(120%);
    width: min(480px, calc(100vw - 16px));
    box-sizing: border-box;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.25s ease;
    background: #ffffff;
    border: 1px solid #d8eee8;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.18);
    padding: 8px 10px 9px;
}

.sticky-order-bar.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.sticky-order-bar__main {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sticky-order-bar__prices {
    min-width: 0;
}

.sticky-order-bar__price-new {
    color: var(--accent-dark);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
}

.sticky-order-bar__price-old {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: line-through;
}

.sticky-order-bar__btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    flex-shrink: 0;
}

.sticky-order-bar__signals {
    margin-top: 6px;
    padding: 6px 0 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #e5e7eb;
}

.sticky-order-bar__signal {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.sticky-order-bar__signal:first-child {
    justify-content: flex-start;
    text-align: left;
}

.sticky-order-bar__signal:nth-child(2) {
    justify-content: center;
    text-align: center;
}

.sticky-order-bar__signal:last-child {
    justify-content: flex-end;
    text-align: right;
}

.sticky-order-bar__signal-label {
    display: inline;
    color: var(--text-muted);
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

.sticky-order-bar__signal-value {
    display: inline;
    color: var(--accent-dark);
    font-size: 12px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

/* ========================================
   Recent order popup
   ======================================== */
.recent-order-popup {
    position: fixed;
    right: max(10px, calc(50% - 240px + 10px));
    left: auto;
    top: 14px;
    z-index: 60;
    max-width: 300px;
    border: 1px solid #d8eee8;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.2);
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.recent-order-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.recent-order-popup__icon {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 1px;
}

.recent-order-popup__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-order-popup__meta {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: right;
    flex: 0 0 auto;
    margin-left: 10px;
}

.recent-order-popup__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.recent-order-popup__product {
    margin-top: 1px;
    font-size: 13px;
    color: var(--accent-dark);
}

/* ========================================
   Footer tweaks
   ======================================== */
.footer__shop-name {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.footer__contact {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
}

.menu-menu-1-container {
    margin-top: 8px;
    overflow-x: auto;
}

.menu-menu-1-container a {
    margin: 0;
    white-space: nowrap;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer__copyright {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

@media (max-width: 520px) {
    .hero__signals {
        gap: 6px;
    }

    .hero__signal-label {
        font-size: 10px;
    }

    .hero__signal-value {
        font-size: 12px;
    }

    .sticky-order-bar {
        width: min(480px, calc(100vw - 12px));
    }

    .sticky-order-bar__signals {
        gap: 6px;
    }
}
