/* Dried Herbs Page Styles */
.dried-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 2rem;
}

.dried-hero-bg,
.dried-hero-overlay {
    position: absolute;
    inset: 0;
}

.dried-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dried-hero-overlay {
    background: linear-gradient(110deg, rgba(15, 32, 28, 0.85) 0%, rgba(45, 90, 74, 0.62) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.dried-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dried-hero-content {
    max-width: 720px;
    color: var(--white);
    text-align: left;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.dried-hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1.1rem;
    color: var(--white);
    line-height: 1.12;
}

.dried-hero-content p {
    font-size: 1.08rem;
    line-height: 1.85;
    max-width: 62ch;
}

.glass-panel {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(247, 195, 95, 0.2);
    color: #ffe3a1;
    border: 1px solid rgba(255, 227, 161, 0.45);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-metrics {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-metric {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 0.85rem 0.75rem;
}

.hero-metric-value {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffe3a1;
    margin-bottom: 0.2rem;
}

.hero-metric-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
}

.dried-intro {
    padding: 4rem 0 2rem;
    background: var(--white);
}

.dried-intro p {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.85;
    font-size: 1.05rem;
}

.dried-catalogue {
    padding: 3rem 0 5rem;
    background: var(--neutral-light);
}

.dried-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.dried-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dried-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.dried-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    cursor: zoom-in;
}

.dried-card-content {
    padding: 1.25rem;
}

.dried-card-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.65rem;
    font-size: 1.35rem;
}

.dried-card-content p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

.dried-details {
    margin-top: 0.95rem;
    border-top: 1px solid rgba(45, 90, 74, 0.15);
    padding-top: 0.85rem;
}

.dried-details p {
    margin: 0.45rem 0;
    font-size: 0.92rem;
    line-height: 1.65;
}

.dried-details strong {
    color: var(--primary-green);
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: min(1200px, 94vw);
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.32);
}

.image-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.image-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.34);
}

.image-lightbox-nav.prev {
    left: 16px;
}

.image-lightbox-nav.next {
    right: 16px;
}

.dried-cta {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.dried-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.dried-cta p {
    max-width: 760px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .dried-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dried-hero {
        min-height: 60vh;
        padding-top: 4rem;
    }

    .dried-hero-content {
        padding: 2.2rem 1.15rem;
    }

    .dried-hero-content h1 {
        font-size: 2rem;
    }

    .dried-hero-content p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .dried-intro {
        padding: 3rem 0 1rem;
    }

    .dried-catalogue {
        padding: 2rem 0 4rem;
    }

    .dried-grid {
        grid-template-columns: 1fr;
    }

    .dried-card img {
        height: 220px;
    }

    .dried-cta {
        padding: 3.5rem 0;
    }

    .dried-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .dried-hero-content {
        padding: 1.75rem 0.9rem;
    }

    .dried-hero-content h1 {
        font-size: 1.7rem;
    }

    .dried-card-content {
        padding: 1rem;
    }
}
