/* --- Herbal Botanical Detox Add-On Page --- */

#herbal-detox-page {
    padding: 2.5rem 0 4rem;
}

#herbal-detox-page .herbal-layout {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hero */
.herbal-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 82px;
}

.herbal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(60, 21, 24, 0.72) 0%,
        rgba(74, 103, 65, 0.55) 50%,
        rgba(60, 21, 24, 0.65) 100%
    );
}

.herbal-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 2.5rem 1.5rem;
    color: var(--white);
}

.herbal-hero__badge {
    display: inline-block;
    background: var(--golden-ochre);
    color: var(--dark-sienna);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.herbal-hero__content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    margin-bottom: 0.75rem;
}

.herbal-hero__content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.25rem;
}

.herbal-hero__price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-heading);
}

.herbal-hero__price span:first-child {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ivory-yellow);
}

.herbal-hero__price span:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Panels */
.herbal-panel {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(60, 21, 24, 0.08);
}

.herbal-panel__title {
    text-align: center;
    color: var(--rust);
    font-size: 1.35rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--golden-ochre);
    margin-bottom: 1.75rem;
}

/* Benefit cards */
.herbal-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.herbal-benefit {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(92, 55, 76, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.herbal-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(60, 21, 24, 0.1);
}

.herbal-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(213, 137, 54, 0.15), rgba(74, 103, 65, 0.12));
    color: var(--rust);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.herbal-benefit h4 {
    font-size: 1.05rem;
    color: var(--burgundy-plum);
    margin-bottom: 0.35rem;
}

.herbal-benefit p {
    font-size: 0.9rem;
    color: var(--dark-sienna);
    line-height: 1.55;
}

/* Herb tags */
.herbal-intro {
    text-align: center;
    color: var(--dark-sienna);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.herb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.herb-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(74, 103, 65, 0.12), rgba(213, 137, 54, 0.1));
    color: var(--burgundy-plum);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(74, 103, 65, 0.2);
}

/* FAQ */
.herbal-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.herbal-faq__item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--golden-ochre);
}

.herbal-faq__item h4 {
    color: var(--burgundy-plum);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.herbal-faq__item h4 i {
    color: var(--rust);
    font-size: 0.9rem;
}

.herbal-faq__item p {
    font-size: 0.95rem;
    color: var(--dark-sienna);
    margin: 0;
    line-height: 1.65;
}

/* Safety */
.herbal-safety {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.herbal-safety__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
}

.herbal-safety__item--alert {
    background: rgba(213, 137, 54, 0.08);
    border: 1px solid rgba(213, 137, 54, 0.25);
}

.herbal-safety__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(92, 55, 76, 0.1);
    color: var(--burgundy-plum);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.herbal-safety__item--alert .herbal-safety__icon {
    background: rgba(164, 66, 0, 0.12);
    color: var(--rust);
}

.herbal-safety__item h4 {
    color: var(--burgundy-plum);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.herbal-safety__item p {
    font-size: 0.92rem;
    color: var(--dark-sienna);
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.herbal-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(92, 55, 76, 0.06), rgba(213, 137, 54, 0.08));
    border: 2px solid rgba(213, 137, 54, 0.3);
}

.herbal-cta__note {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 1.25rem;
}

.herbal-cta__chip {
    background: var(--white);
    color: var(--burgundy-plum);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    border: 1px solid rgba(92, 55, 76, 0.15);
}

.herbal-cta__chip--muted {
    opacity: 0.65;
    text-decoration: line-through;
}

.herbal-cta p {
    color: var(--dark-sienna);
    margin-bottom: 0.75rem;
}

.herbal-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.herbal-cta__link {
    color: var(--rust);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.herbal-cta__link:hover {
    border-bottom-color: var(--rust);
}

/* Responsive */
@media (min-width: 544px) {
    .herbal-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .herbal-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .herbal-benefit {
        transition: none;
    }

    .herbal-benefit:hover {
        transform: none;
    }
}
