.ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* --- Global Layout --- */
.product-page-wrapper {
    display: block;
    width: 100%;
    background: white;
    overflow-x: hidden;
}

.product-container {
    max-width: 100% !important;
    margin: 50px 80px 100px 80px !important; /* top right bottom left */
    padding: 0 20px;
    background: white;
    width: auto !important;
}

/* --- Banner Section --- */
.product-page-banner {
    position: relative; 
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-page-banner img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* --- Banner Overlay --- */
.banner-overlay {
    position: relative;
    z-index: 2;
    margin-left: 80px;
    margin-right: 30%;
    padding: 50px;
    background: linear-gradient(111.55deg, rgba(20, 36, 63, 0.9) 1%, rgba(20, 36, 63, 0.63) 91.78%);
    border-radius: 4px;
}

.banner-subtitle {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.banner-subtitle span {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.accent-line {
    width: 40%;
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #EEEEEE 30.38%, rgba(227, 30, 36, 0) 100%);
    border-image-slice: 1;
}

.banner-overlay h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-overlay p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
}

/* --- Product Grid: 3 items per row --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card_grid {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    overflow: hidden; /* keeps image corners rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-thumbnail {
    height: 350px;
    background: #F4F4F4;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    background: #F4F4F4;
    object-fit: contain;
}
/* --- Product Title --- */
.product-title_grid {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    color: #000000;
    margin: 20px 20px 13px 20px; /* top, right, bottom, left */
}

/* --- Short Description --- */
.product-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #161616;
    margin: 0 20px 15px 20px; /* optional bottom spacing */
}

.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px; /* Top/Bottom 10px, Left/Right 24px */
    border: 1px solid; 
    border-radius: 8px; /* Rounded corners */
    border-image-source: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    border-image-slice: 1;
    margin-left: 20px;
    margin-bottom: 25px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none;
}

.read-more img {
    width: 10px;
    height: 12px;
    margin-left: 12px;
    display: inline-block;
    vertical-align: middle;
}



/* Optional hover effect */
.product-card_grid:hover .read-more {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

