@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --herby-green: #2B5341;
    --herby-green-light: #3A6D56;
    --herby-yellow: #FCD34D;
    --herby-yellow-light: #FEF9C3;
    --herby-red: #EF4444;
}

.herby-pen-root {
    font-family: 'Outfit', sans-serif;
    color: var(--herby-green);
    background: #fff;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
}

.herby-pen-root * { box-sizing: border-box; margin: 0; padding: 0; }
.herby-pen-root img { max-width: 100%; height: auto; }
.herby-pen-root a { text-decoration: none; color: inherit; }
.herby-pen-root button { cursor: pointer; font-family: inherit; }

.herby-lang-switcher {
    position: fixed;
    left: 0;
    top: 20%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 6px;
    border-radius: 0 12px 12px 0;
    border: 1px solid #e5e7eb;
    border-left: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.herby-lang-btn {
    font-size: 11px;
    font-weight: 700;
    padding: 8px;
    border: none;
    background: none;
    border-radius: 8px;
    color: #6b7280;
    transition: all 0.2s;
}

.herby-lang-btn:hover { background: #f3f4f6; }
.herby-lang-btn.active { color: var(--herby-green); background: rgba(43,83,65,0.1); }

.herby-announcement {
    background: var(--herby-green);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--herby-green-light);
}

.herby-marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: herbyMarquee 30s linear infinite;
}

.herby-marquee-group {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 0 16px;
    flex-shrink: 0;
}

.herby-marquee-group span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@keyframes herbyMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.herby-header {
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.herby-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.herby-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.herby-logo-icon { width: 32px; height: 32px; color: var(--herby-green); }

.herby-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--herby-green);
}

.herby-currency {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.herby-currency img { width: 16px; }

.herby-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}

.herby-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1023px) {
    .herby-product-grid { grid-template-columns: 1fr; }
    .herby-gallery { order: 2; }
    .herby-info { order: 1; }
}

.herby-gallery { }

.herby-main-image {
    aspect-ratio: 1;
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.herby-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
}

.herby-money-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.8);
    color: var(--herby-yellow);
    font-weight: 700;
    font-size: 10px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    transform: rotate(-10deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.herby-money-badge .big { font-size: 22px; margin: 2px 0; }
.herby-money-badge .small { font-size: 7px; }

.herby-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.herby-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #f9fafb;
}

.herby-thumb.active { border-color: var(--herby-green); }
.herby-thumb:hover { border-color: #e5e7eb; }
.herby-thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }

.herby-thumb-video {
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    cursor: pointer;
    transition: background 0.2s;
}

.herby-thumb-video:hover { background: #f3f4f6; }
.herby-thumb-video svg { width: 24px; height: 24px; color: #9ca3af; }

.herby-info { display: flex; flex-direction: column; gap: 24px; }

.herby-review-card {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.herby-review-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.herby-review-card p { color: #4b5563; line-height: 1.6; margin-bottom: 8px; }

.herby-review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.herby-review-author span { font-weight: 600; font-style: italic; }

.herby-stars { display: flex; color: var(--herby-yellow); gap: 1px; }
.herby-stars svg { width: 12px; height: 12px; fill: currentColor; }

.herby-special-offer {
    display: inline-block;
    border: 2px solid var(--herby-green);
    color: var(--herby-green);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    text-transform: uppercase;
}

.herby-trustpilot {
    display: flex;
    align-items: center;
    gap: 8px;
}

.herby-trustpilot-stars {
    display: flex;
    background: #00b67a;
    padding: 2px 4px;
    border-radius: 4px;
    color: #fff;
    gap: 2px;
}

.herby-trustpilot-stars svg { width: 14px; height: 14px; fill: currentColor; }
.herby-trustpilot span { font-size: 14px; font-weight: 600; }

.herby-product-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--herby-green);
    line-height: 1.1;
}

.herby-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(43,83,65,0.05);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(43,83,65,0.1);
}

.herby-avatars { display: flex; }
.herby-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -8px;
}
.herby-avatars img:first-child { margin-left: 0; }

.herby-social-proof p { font-size: 14px; }
.herby-social-proof strong { font-weight: 700; }

.herby-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.herby-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 500;
}

.herby-benefits li .emoji { font-size: 20px; flex-shrink: 0; }

.herby-scarcity {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.herby-scarcity-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--herby-red);
    font-size: 14px;
    font-weight: 600;
}

.herby-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--herby-red);
    animation: herbyPulse 2s infinite;
}

@keyframes herbyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.herby-timer {
    background: #FFF4E8;
    border: 1px solid #F3DAB9;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B06020;
}

.herby-timer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.herby-timer-left svg { width: 16px; height: 16px; }
.herby-timer-right { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; }

.herby-bundles { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.herby-bundle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.herby-bundle:hover { border-color: rgba(43,83,65,0.3); }

.herby-bundle.selected {
    border: 2px solid var(--herby-green);
    background: rgba(43,83,65,0.03);
}

.herby-bundle-badge {
    position: absolute;
    top: -12px;
    left: 16px;
    background: var(--herby-yellow);
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.herby-bundle-price { font-weight: 700; font-size: 24px; }
.herby-bundle-original { font-size: 14px; color: #9ca3af; text-decoration: line-through; }

.herby-bundle-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.herby-bundle-name { font-weight: 700; font-size: 18px; }
.herby-bundle-save { font-size: 14px; font-weight: 700; color: #16a34a; }
.herby-bundle-desc { font-size: 12px; color: #6b7280; }

.herby-bundle-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
}

.herby-bundle.selected .herby-bundle-radio {
    border-color: var(--herby-green);
}

.herby-bundle.selected .herby-bundle-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--herby-green);
}

.herby-order-form {
    margin-top: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.herby-input-wrap { position: relative; }

.herby-input-wrap input,
.herby-input-wrap textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    padding: 12px 24px;
    padding-right: 48px;
    padding-left: 24px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}

[dir="rtl"] .herby-input-wrap input,
[dir="rtl"] .herby-input-wrap textarea {
    padding-right: 24px;
    padding-left: 48px;
    text-align: right;
}

.herby-input-wrap textarea {
    border-radius: 16px;
    height: 128px;
    resize: none;
    padding-top: 16px;
}

.herby-input-wrap input:focus,
.herby-input-wrap textarea:focus {
    border-color: var(--herby-green);
    box-shadow: 0 0 0 1px var(--herby-green);
}

.herby-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 16px;
}

[dir="rtl"] .herby-input-icon {
    right: auto;
    left: 16px;
}

.herby-input-wrap textarea + .herby-input-icon {
    top: 24px;
    transform: none;
}

.herby-form-message {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.herby-form-message.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.herby-form-message.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.herby-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    background: #f0f0f0;
    border: none;
    color: #000;
    transition: all 0.2s;
    animation: herbyPulseSubtle 2s infinite ease-in-out;
}

.herby-submit-btn:hover { background: #e0e0e0; }
.herby-submit-btn:active { transform: scale(0.95); }
.herby-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

@keyframes herbyPulseSubtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.herby-form-trust {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
}

.herby-form-trust div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.herby-form-trust svg { width: 16px; height: 16px; color: #991b1b; }

.herby-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
    padding: 0 16px 20px;
    background: linear-gradient(to top, #fff, #fff 60%, transparent);
    padding-top: 48px;
    display: flex;
    justify-content: center;
}

.herby-mobile-cta-btn {
    width: 100%;
    max-width: 380px;
    height: 56px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 9999px;
    background: #325844;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: auto;
    animation: herbyPulseSubtle 2s infinite ease-in-out;
    transition: background 0.2s;
}

.herby-mobile-cta-btn:hover { background: #234937; }

@media (min-width: 768px) {
    .herby-mobile-cta { display: none; }
}

.herby-sections {
    margin-top: 96px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.herby-section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.herby-review-carousel-section {
    background: #f2fcf5;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 64px 16px;
}

.herby-review-carousel-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.herby-review-carousel-header {
    text-align: center;
    margin-bottom: 32px;
}

.herby-review-carousel-header .sub {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.herby-review-carousel-header .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
}

.herby-review-carousel-header .rating svg { width: 16px; height: 16px; fill: #16a34a; color: #16a34a; }
.herby-review-carousel-header .rating span { font-weight: 700; font-size: 14px; color: #1f2937; }

.herby-review-carousel-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1f2937;
    margin-top: 16px;
}

.herby-review-carousel-title .highlight {
    color: #166534;
    position: relative;
}

.herby-review-carousel-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #166534;
    border-radius: 2px;
}

.herby-review-scroll {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 32px;
    scroll-snap-type: x mandatory;
}

.herby-review-scroll::-webkit-scrollbar { display: none; }
.herby-review-scroll { -ms-overflow-style: none; scrollbar-width: none; }

.herby-review-scroll-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    min-width: 320px;
    width: 320px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    height: 500px;
}

.herby-review-scroll-card .text {
    flex: 1;
    overflow-y: auto;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
    margin-bottom: 16px;
}

.herby-review-scroll-card .text::-webkit-scrollbar { display: none; }

.herby-review-scroll-card .author {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    text-align: right;
}

.herby-review-scroll-card .author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f3f4f6;
}

.herby-review-scroll-card .author .meta .verified {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 4px;
    align-items: center;
}

.herby-review-scroll-card .author .meta .verified span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 700;
}

.herby-review-scroll-card .author .meta .verified .stars {
    display: flex;
    color: #facc15;
    gap: 1px;
}

.herby-review-scroll-card .author .meta .verified .stars svg { width: 12px; height: 12px; fill: currentColor; }
.herby-review-scroll-card .author .meta .name { font-weight: 700; color: #111827; }

.herby-carousel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
}

.herby-guarantee-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.1);
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.herby-heal-btn {
    padding: 18px 32px;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    animation: herbyPulseSubtle 2s infinite ease-in-out;
    transition: background 0.2s;
}

.herby-heal-btn:hover { background: #f9fafb; }

.herby-text-section { display: flex; flex-direction: column; gap: 16px; }
.herby-text-section p { color: #4b5563; line-height: 1.7; font-size: 18px; }
.herby-text-section p strong { color: var(--herby-green); }

.herby-green-box {
    background: var(--herby-green);
    color: #fff;
    padding: 32px;
    border-radius: 24px;
}

@media (min-width: 768px) {
    .herby-green-box { padding: 48px; }
}

.herby-green-box h2 { color: var(--herby-yellow); }

.herby-green-box .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 16px;
}

.herby-perfect-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--herby-yellow);
    margin-bottom: 16px;
    margin-top: 24px;
}

.herby-perfect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.herby-perfect-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.herby-check-icon { color: var(--herby-yellow); flex-shrink: 0; }
.herby-check-icon svg { width: 20px; height: 20px; }

.herby-quit-toxins {
    padding-top: 16px;
    font-size: 20px;
    font-weight: 700;
}

.herby-steps { display: flex; flex-direction: column; gap: 24px; color: #4b5563; }

.herby-step {
    display: flex;
    gap: 24px;
}

.herby-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(43,83,65,0.1);
    color: var(--herby-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.herby-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--herby-green);
    margin-bottom: 4px;
}

.herby-step p { font-size: 18px; }

.herby-ingredients-list {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4b5563;
    font-size: 18px;
}

.herby-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #f9fafb;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #f3f4f6;
}

@media (max-width: 767px) {
    .herby-info-grid { grid-template-columns: 1fr; gap: 32px; }
}

.herby-info-grid h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--herby-green);
    margin-bottom: 16px;
}

.herby-info-grid p { color: #4b5563; font-size: 16px; }

.herby-info-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4b5563;
    font-size: 16px;
}

.herby-guarantee-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 0;
}

.herby-guarantee-section img { width: 128px; }
.herby-guarantee-section p { color: #4b5563; font-size: 18px; }

.herby-social-proof-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
}

.herby-social-proof-section .avatars {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.herby-social-proof-section .avatars img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
}

.herby-social-proof-section .count {
    font-size: 24px;
    font-weight: 700;
}

.herby-social-proof-section .rating-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.herby-social-proof-section .rating-line svg {
    width: 20px;
    height: 20px;
    fill: var(--herby-yellow);
    color: var(--herby-yellow);
}

.herby-craving-img {
    width: 100%;
    text-align: center;
    padding: 32px 0;
}

.herby-craving-img img {
    max-width: 768px;
    width: 100%;
    border-radius: 24px;
    margin: 0 auto;
    display: block;
}

.herby-stats-section {
    background: var(--herby-green);
    color: #fff;
    padding: 32px;
    border-radius: 24px;
}

@media (min-width: 768px) {
    .herby-stats-section { padding: 48px; }
}

.herby-stats-section h2 {
    text-align: center;
    color: var(--herby-yellow);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 48px;
}

.herby-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

@media (max-width: 767px) {
    .herby-stats-grid { grid-template-columns: 1fr; }
}

.herby-stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--herby-yellow);
}

.herby-stat-desc { font-size: 18px; margin-top: 8px; }

.herby-breathe-section { text-align: center; padding-top: 40px; }

.herby-breathe-gif {
    border-radius: 24px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 32px;
}

.herby-breathe-gif img { width: 100%; height: auto; }

.herby-breathe-text { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.herby-breathe-text p { color: #4b5563; font-size: 18px; max-width: 640px; margin: 0 auto; }

.herby-breathe-plant {
    font-weight: 700;
    font-size: 20px;
    color: var(--herby-green);
    padding-top: 16px;
}

.herby-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 767px) {
    .herby-ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .herby-ingredients-grid { grid-template-columns: repeat(3, 1fr); }
}

.herby-ingredient {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.herby-ingredient-img {
    background: #f9fafb;
    border-radius: 50%;
    width: 128px;
    height: 128px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #f3f4f6;
}

.herby-ingredient-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.herby-ingredient h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--herby-green);
}

.herby-ingredient p { font-size: 14px; color: #6b7280; }

.herby-switch-section { padding: 64px 0; }

.herby-switch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

@media (max-width: 767px) {
    .herby-switch-grid { grid-template-columns: 1fr; }
}

.herby-switch-col {
    padding: 32px;
}

@media (min-width: 768px) {
    .herby-switch-col { padding: 48px; }
}

.herby-switch-col.green { background: #f2fcf5; }

.herby-switch-col.gray {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .herby-switch-col.gray { border-top: none; border-left: 1px solid #e5e7eb; }
}

.herby-switch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.herby-switch-header h3 { font-size: 24px; font-weight: 700; }
.herby-switch-col.green .herby-switch-header h3 { color: var(--herby-green); }
.herby-switch-col.gray .herby-switch-header h3 { color: #4b5563; }
.herby-switch-header .emoji { font-size: 24px; }
.herby-switch-header svg { width: 32px; height: 32px; fill: var(--herby-green); color: var(--herby-green); }

.herby-switch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.herby-switch-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 18px;
}

.herby-switch-col.green .herby-switch-list li { color: var(--herby-green); }
.herby-switch-col.gray .herby-switch-list li { color: #6b7280; }

.herby-switch-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.herby-switch-icon.check { background: var(--herby-green); }
.herby-switch-icon.check svg { width: 16px; height: 16px; color: #fff; }
.herby-switch-icon.cross { background: #fee2e2; }
.herby-switch-icon.cross svg { width: 16px; height: 16px; color: var(--herby-red); }

.herby-would-pay {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.herby-would-pay h2 { color: var(--herby-green); }
.herby-would-pay > p { color: #4b5563; font-size: 18px; max-width: 640px; }

.herby-would-pay-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 24px;
    width: 100%;
}

@media (max-width: 767px) {
    .herby-would-pay-images { grid-template-columns: 1fr; }
}

.herby-would-pay-images img { width: 100%; border-radius: 16px; }

.herby-would-pay h3 { font-size: 24px; font-weight: 700; padding-top: 32px; }
.herby-would-pay .loved { font-size: 20px; font-weight: 700; color: var(--herby-yellow); }

.herby-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
}

.herby-trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.herby-trust-pill svg { width: 16px; height: 16px; color: var(--herby-green); }

.herby-big-cta {
    max-width: 380px;
    width: 100%;
    padding: 24px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    background: #2e5d48;
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(43,83,65,0.2);
    animation: herbyPulseSubtle 2s infinite ease-in-out;
    transition: background 0.2s;
    margin-top: 32px;
}

.herby-big-cta:hover { background: #234937; }

.herby-customer-reviews { display: flex; flex-direction: column; gap: 48px; }

.herby-customer-reviews-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.herby-customer-reviews-header .stars-row {
    display: flex;
    color: var(--herby-yellow);
    gap: 2px;
}

.herby-customer-reviews-header .stars-row svg { width: 24px; height: 24px; fill: currentColor; }
.herby-customer-reviews-header .score { font-weight: 600; font-size: 20px; }
.herby-customer-reviews-header .based { color: #6b7280; }

.herby-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 767px) {
    .herby-reviews-grid { grid-template-columns: 1fr; }
}

.herby-review-grid-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.herby-review-grid-card .top {
    display: flex;
    gap: 16px;
}

.herby-review-grid-card .top img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.herby-review-grid-card .top .meta { display: flex; flex-direction: column; gap: 4px; }
.herby-review-grid-card .top .meta .stars { display: flex; color: var(--herby-yellow); gap: 1px; }
.herby-review-grid-card .top .meta .stars svg { width: 14px; height: 14px; fill: currentColor; }
.herby-review-grid-card .top .meta .rname { font-weight: 700; color: var(--herby-green); }

.herby-review-grid-card .top .meta .verified-line {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.herby-review-grid-card .top .meta .verified-line svg { width: 12px; height: 12px; color: #3b82f6; }

.herby-review-grid-card .review-text {
    color: #374151;
    font-size: 14px;
    line-height: 1.7;
}

.herby-collection { display: flex; flex-direction: column; gap: 40px; padding: 48px 0; }
.herby-collection-header { text-align: center; }

.herby-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1023px) {
    .herby-collection-grid { grid-template-columns: repeat(2, 1fr); }
}

.herby-collection-item { cursor: pointer; }

.herby-collection-item .img-wrap {
    aspect-ratio: 1;
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #f3f4f6;
    transition: border-color 0.2s;
}

.herby-collection-item:hover .img-wrap { border-color: rgba(43,83,65,0.3); }

.herby-collection-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s;
}

.herby-collection-item:hover .img-wrap img { transform: scale(1.05); }
.herby-collection-item h3 { font-weight: 700; color: var(--herby-green); margin-bottom: 4px; font-size: 14px; }

.herby-collection-item .prices { display: flex; align-items: center; gap: 8px; }
.herby-collection-item .prices .current { font-weight: 700; }
.herby-collection-item .prices .original { font-size: 14px; color: #9ca3af; text-decoration: line-through; }

.herby-faq { max-width: 768px; margin: 0 auto; padding-bottom: 96px; }
.herby-faq-header { text-align: center; margin-bottom: 32px; }

.herby-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.herby-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
    transition: color 0.2s;
    cursor: pointer;
}

.herby-accordion-trigger:hover { color: var(--herby-green); }

.herby-accordion-trigger .chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: #6b7280;
}

.herby-accordion-item.open .herby-accordion-trigger .chevron {
    transform: rotate(180deg);
}

.herby-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.herby-accordion-item.open .herby-accordion-content {
    max-height: 500px;
}

.herby-accordion-content-inner {
    padding-bottom: 16px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.herby-footer-marquee {
    background: #111827;
    color: #fff;
    padding: 16px 0;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.herby-footer-marquee .track {
    display: flex;
    width: max-content;
    animation: herbyMarquee 30s linear infinite;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.herby-footer-marquee .group {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-shrink: 0;
}

.herby-footer-marquee .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--herby-yellow);
}

.herby-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f8faf9;
    padding-top: 64px;
    padding-bottom: 32px;
    border-top: 1px solid #e5e7eb;
}

.herby-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.herby-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .herby-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.herby-footer-brand { display: flex; flex-direction: column; gap: 24px; }

.herby-footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.herby-footer-brand .logo svg { width: 32px; height: 32px; fill: var(--herby-green); color: var(--herby-green); }
.herby-footer-brand .logo span { font-size: 28px; font-weight: 700; color: var(--herby-green); }
.herby-footer-brand .desc { color: #4b5563; font-size: 14px; line-height: 1.7; padding-right: 16px; }

.herby-footer-socials { display: flex; gap: 16px; padding-top: 8px; }

.herby-footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(43,83,65,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--herby-green);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.herby-footer-social:hover { background: var(--herby-green); color: #fff; }
.herby-footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.herby-footer-col h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--herby-green);
    margin-bottom: 16px;
}

.herby-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.herby-footer-col ul li a {
    color: #4b5563;
    font-size: 14px;
    transition: color 0.2s;
}

.herby-footer-col ul li a:hover { color: var(--herby-green); }

.herby-disclaimer {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
}

.herby-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 16px;
}

.herby-footer-bottom .copy { font-size: 14px; color: #6b7280; font-weight: 500; }

.herby-payment-methods { display: flex; gap: 8px; }

.herby-payment-badge {
    width: 40px;
    height: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

[dir="rtl"] .herby-lang-switcher {
    left: auto;
    right: 0;
    border-radius: 12px 0 0 12px;
    border-right: none;
    border-left: 1px solid #e5e7eb;
}

[dir="rtl"] .herby-input-wrap input,
[dir="rtl"] .herby-input-wrap textarea {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .herby-accordion-trigger {
    text-align: right;
}

[dir="rtl"] .herby-review-scroll-card .text {
    text-align: right;
}
