/* ============================================================
   hero-product.css – Product Hero (Clean, Isolated)
   ============================================================ */

.hero-product-wrapper {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-product-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-product-background picture,
.hero-product-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg,
        rgba(255,248,240,0.92) 0%,
        rgba(255,248,240,0.6) 60%,
        rgba(255,248,240,0.2) 100%
    );
}

/* Zone-specific overlays – you can add these if needed */
.hero-product-wrapper.zone-b .hero-product-overlay {
    background: linear-gradient(90deg,
        rgba(27,79,114,0.85) 0%,
        rgba(27,79,114,0.5) 60%,
        rgba(27,79,114,0.1) 100%
    );
}

.hero-product-wrapper.zone-c .hero-product-overlay {
    background: linear-gradient(90deg,
        rgba(253,246,238,0.85) 0%,
        rgba(253,246,238,0.4) 60%,
        rgba(253,246,238,0) 100%
    );
}

/* ─── Grid ────────────────────────────────────────────────── */
.hero-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* ─── Left Content ──────────────────────────────────────────── */
.hero-product-content {
    max-width: 640px;
}

.hero-product-headline {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 44px;
    font-weight: 700;
    color: #003366;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-product-subheadline {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 17px;
    color: #415A77;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 580px;
}

.hero-product-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-product-features .feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #003366;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-product-actions .btn {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 50px;
    min-height: 56px;
}

/* ─── Right Visual (Tin) ────────────────────────────────────── */
.hero-product-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-product-tin-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 420px;
}

.hero-product-tin {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-product-tin:hover {
    transform: scale(1.04) rotate(-2deg);
}

/* ─── Brand Badge (Glass) ──────────────────────────────────── */
.hero-product-badge-wrapper {
    display: inline-block;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 8px 20px 8px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.hero-product-badge-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.hero-product-badge-wrapper.gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.20), rgba(212,165,116,0.25));
    border-color: rgba(212,165,116,0.50);
    box-shadow: 0 4px 24px rgba(212,165,116,0.20);
}

.hero-product-badge {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 28px;
    font-weight: 700;
    color: #003366;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-product-badge-sub {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #7B9E87;
    background: rgba(123,158,135,0.15);
    padding: 2px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.hero-product-badge-wrapper.gold .hero-product-badge-sub {
    color: #C47B2E;
    background: rgba(196,123,46,0.15);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-product-grid {
        gap: 40px;
        min-height: 60vh;
    }
    .hero-product-headline {
        font-size: 36px;
    }
    .hero-product-tin-wrapper {
        max-width: 340px;
    }
    .hero-product-tin {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-product-wrapper {
        min-height: auto;
    }
    .hero-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 0;
        min-height: auto;
    }
    .hero-product-content {
        max-width: 100%;
        order: 2;
    }
    .hero-product-visual {
        order: 1;
        justify-content: center;
        padding: 20px 0;
    }
    .hero-product-headline {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .hero-product-subheadline {
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .hero-product-features {
        justify-content: center;
        gap: 8px;
        margin-bottom: 24px;
    }
    .hero-product-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .hero-product-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
        min-height: 50px;
    }
    .hero-product-tin-wrapper {
        max-width: 260px;
    }
    .hero-product-tin {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-product-headline {
        font-size: 24px;
    }
    .hero-product-subheadline {
        font-size: 15px;
    }
    .hero-product-tin-wrapper {
        max-width: 200px;
    }
    .hero-product-tin {
        max-width: 180px;
    }
    .hero-product-features .feature-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    .hero-product-actions .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
        max-width: 280px;
    }
}