/* Product Header Styles */
.product-breadcrumb {
    color: #fff;
    padding: 0;
}

.product-breadcrumb a,
.product-breadcrumb span {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.product-header-container {
    background-color: #1A21C7;
    padding: 0 0 0 66px;
    border: solid #fff;
    border-width: 0 14px;
    margin-bottom: 0;
}

.product-header-inner-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-header {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.product-header-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 44px;
    flex: 1;
}

.product-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-intro h1 {
    font-family: 'OptimaProRoman', sans-serif;
    font-size: 56px;
    line-height: 68px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.back-to-products {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
}

.back-to-products:hover {
    text-decoration: none;
    color: #fff;
}

.back-to-products:focus {
    text-decoration: none;
    color: #fff;
}

.back-to-products svg {
    min-height: 32px;
    min-width: 32px;
}

.back-to-products:hover svg {
    fill: #fff;
    stroke: #000;
}

/* Product Statistics */
/* .product-stats {
    width: 100%;
    display: flex;
    gap: 84px;
    align-items: center;
    min-height: 590px;
} */

.product-stat {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.product-stat-title {
    font-family: 'OptimaProBold', sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.product-stat-value {
    font-family: 'OptimaProRoman', sans-serif;
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

/* Reset header margins */
header {
    margin: 0;
}

/* Featured Image */
/* .product-featured-img {
    width: 100%;
    height: 590px;
    object-fit: cover;
} */
.product-header-image {
    flex: 1;
    width: 100%;
}
.product-header-image img{
    aspect-ratio: 3/2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet Styles */
@media screen and (max-width: 1280px) {
    .product-header {
        flex-direction: column;
        gap: 40px;
    }

    .product-header-container {
        padding: 0px 0px 0px 0px;
    }

    .product-header-inner {
        padding: 0px 26px;
    }
    .product-header-image img{
        aspect-ratio: 4/2;
    }
}

/* Mobile Styles */
@media screen and (max-width: 744px) {
    .product-header {
        gap: 24px;
    }

    .product-header-container {
        border-width: 0px 6px;
    }

    .product-header-inner {
        padding: 0px 18px;
    }

    .product-header-inner-content {
        gap: 16px;
    }

    .product-intro {
        gap: 16px;
    }

    .product-intro h1 {
        font-size: 40px;
        line-height: 48px;
    }
    .product-header-image img{
        aspect-ratio: 3/2;
    }
    /* .product-featured-img {
        height: 270px;
    } */

    /* .product-stats {
        min-height: 270px;
    } */
}
