/* Products Page — Design Match */

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span:last-child { color: var(--gold); }

/* Hero — full background */
.products-hero {
    position: relative;
    min-height: 72vh;
    min-height: 72svh;
    display: flex;
    align-items: center;
    padding: 110px 0 64px;
    overflow: hidden;
    background: var(--green-darker);
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--green-darker);
}

.products-hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.03);
    background: var(--green-darker);
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 12, 0.94) 0%,
            rgba(7, 18, 12, 0.88) 38%,
            rgba(7, 18, 12, 0.5) 62%,
            rgba(7, 18, 12, 0.22) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 18, 12, 0.35) 0%,
            transparent 35%,
            transparent 70%,
            rgba(7, 18, 12, 0.45) 100%
        );
    pointer-events: none;
}

.products-hero-grid {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin-right: auto;
    text-align: left;
}

.products-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: clamp(24px, 5vw, 64px);
    padding-right: 24px;
}

.products-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.products-hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 28px);
    color: var(--gold);
    margin-bottom: 20px;
}

.products-hero-desc {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
}

.products-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 520px;
    justify-items: start;
}

.products-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.products-hero-feature svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.products-hero-feature span {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
    .products-hero-bg-video {
        display: none;
    }

    .products-hero-bg {
        background: var(--green-darker) url('/images/products-hero-ginger.png') center / cover no-repeat;
    }
}

/* Product Variants */
.products-variants {
    padding: 80px 0 90px;
    background: #F9F6F1;
}

.products-section-head {
    text-align: center;
    margin-bottom: 44px;
}

.products-section-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}

.products-section-label-row .section-label {
    margin-bottom: 0;
    white-space: nowrap;
}

.products-section-line {
    flex: 1;
    max-width: 140px;
    height: 1px;
    background: var(--gold);
}

.products-section-head p {
    font-size: 15px;
    color: #666;
}

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

.products-partner-stores {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, #fafcfb 0%, #fff 100%);
    border-top: 1px solid rgba(26, 92, 58, 0.08);
}

.products-partner-stores .products-section-head {
    margin-bottom: 36px;
}

.variant-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 22px 18px 26px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.variant-card--popular {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.popular-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    border-radius: 3px;
    white-space: nowrap;
}

.variant-image {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 4px 8px;
    overflow: hidden;
}

.variant-image img,
.variant-product-img {
    width: 100%;
    max-width: 140px;
    height: 118px;
    max-height: 118px;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.variant-card h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.variant-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.variant-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    color: #555;
    padding: 5px 0;
    line-height: 1.4;
}

.variant-card li svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: var(--gold);
    margin-top: 1px;
}

.btn-variant {
    width: 100%;
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    background: var(--white);
    color: var(--green-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
}

.btn-variant:hover {
    background: #F9F6F1;
}

.btn-variant--dark {
    background: #111;
    color: var(--white);
    border-color: #111;
}

.btn-variant--dark:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

/* Bulk Packaging */
.products-bulk {
    padding: 0 0 100px;
    background: #F9F6F1;
}

.products-bulk-card {
    background: var(--white);
    border-radius: 24px;
    padding: 64px 56px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.07);
}

.products-bulk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.products-bulk-content .section-label {
    margin-bottom: 12px;
}

.products-bulk-content .section-title {
    font-size: clamp(30px, 3.5vw, 44px);
    margin-bottom: 22px;
}

.products-bulk-content .section-text {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 8px;
}

.products-bulk-list {
    list-style: none;
    margin: 28px 0 36px;
}

.products-bulk-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #444;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.products-bulk-list li:last-child { border-bottom: none; }

.products-bulk-list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--gold);
    margin-top: 2px;
}

.btn-bulk-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: #111;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
}

.btn-bulk-dark:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.products-bulk-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 340px;
    padding: 12px;
    overflow: hidden;
    border-radius: 16px;
    background: #faf8f4;
}

.products-bulk-visual img,
.products-bulk-image {
    width: 100%;
    max-width: 480px;
    height: 320px;
    max-height: 320px;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 12px;
}

/* Why Choose */
.products-why {
    padding: 52px 0 60px;
    background: #F5F0E6;
    border-top: 1px solid rgba(201, 169, 98, 0.4);
    border-bottom: 1px solid rgba(201, 169, 98, 0.4);
}

.products-why-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(17px, 2.5vw, 21px);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 36px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.products-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.products-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.products-why-item svg {
    width: 42px;
    height: 42px;
    color: var(--gold);
}

.products-why-item span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.45;
}

/* Responsive */
@media (max-width: 1100px) {
    .variants-grid,
    .store-grid { grid-template-columns: repeat(2, 1fr); }
    .products-why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .products-hero {
        min-height: 62vh;
        min-height: 62svh;
    }

    .products-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(7, 18, 12, 0.9) 0%,
            rgba(7, 18, 12, 0.8) 50%,
            rgba(7, 18, 12, 0.4) 100%
        );
    }

    .products-hero-grid {
        max-width: 100%;
    }

    .products-bulk-grid {
        grid-template-columns: 1fr;
    }

    .products-hero-desc { max-width: 100%; }
    .products-hero-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .products-bulk-card { padding: 44px 32px; }

    .products-bulk-visual {
        min-height: 280px;
    }

    .products-bulk-visual img,
    .products-bulk-image {
        height: 260px;
        max-height: 260px;
    }
}

@media (max-width: 768px) {
    .products-hero { padding: 110px 0 56px; min-height: auto; }
    .variants-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .products-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-why-grid { grid-template-columns: 1fr; }
    .products-hero-features { grid-template-columns: 1fr 1fr; }
    .products-section-line { max-width: 50px; }
}
