/* =====================================================
   PRODUCT HERO - Static Background
   ===================================================== */

   .iyeg-product-hero {
    position: fixed;
    top: var(--iyeg-header-height, 7.5rem);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--iyeg-header-height, 7.5rem));
    z-index: 0;
    overflow: hidden;
}

.iyeg-product-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iyeg-product-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.iyeg-product-hero__content {
    position: absolute;
    z-index: 3;
    padding: 4rem 8%;
    max-width: 800px;
}

.iyeg-product-hero__content--bottom-left {
    bottom: 4rem;
    left: 0;
    text-align: left;
}

.iyeg-product-hero__content--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem 5%;
}

.iyeg-product-hero__content--bottom-right {
    bottom: 4rem;
    right: 0;
    text-align: right;
    padding-right: 8%;
}

.iyeg-product-hero__title {
    font-family: "Barlow Semi Condensed", "Inter", sans-serif;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.iyeg-product-hero__subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.75rem;
    opacity: 0.9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

/* Spacer to push content below hero */
.iyeg-product-hero__spacer {
    display: block;
    width: 100%;
    height: calc(100vh - var(--iyeg-header-height, 7.5rem));
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .iyeg-product-hero__content {
        padding: 3rem 6%;
    }
}

@media (max-width: 768px) {
    .iyeg-product-hero__content {
        padding: 2rem 5%;
        max-width: 90%;
    }

    .iyeg-product-hero__content--bottom-left {
        bottom: 2rem;
    }

    .iyeg-product-hero__content--bottom-right {
        bottom: 2rem;
        padding-right: 5%;
    }
}

@media (max-width: 480px) {
    .iyeg-product-hero__content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .iyeg-product-hero__content--bottom-left {
        bottom: 1.5rem;
    }

    .iyeg-product-hero__content--bottom-right {
        bottom: 1.5rem;
        padding-right: 1.5rem;
    }
}