.page-title {
    margin-top: 100px !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 100px 50px;
    margin-top: -50px !important;
}

.page-title h3 {
    font-size: 45px;
    font-weight: 400;
    color: var(--black);
}

.product-sec-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 80vh;
}

.product-item-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--lgray);
    padding: 50px 40px;
    text-align: center;
}

.product-title {
    font-size: 64px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    font-family: 'Garamond Regular';
}

.product-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 40px;
    font-family: 'Garamond Regular';
    opacity: 0.8;
}

.shop-now-btn {
    background-color: var(--dtc1);
    border: 1px solid var(--black);
    color: var(--white);
    padding: 25px 50px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.shop-now-btn:hover {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.product-item-img {
    position: relative;
    background: linear-gradient(135deg, #8B1538 0%, #A0204F 50%, #B91C5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-item-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.page-title h3 {
    font-size: 60px !important;
}

.product-description {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    line-height: 1.4;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.product-description p {
    margin: 0;
    font-weight: 300;
    font-size: 45px;
}




@media (max-width: 767.98px) {
    .product-sec-items {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
        margin: 0px 20px;
    }

    .product-item-img {
        order: -1;
        min-height: 00vh;
    }

    .product-item-txt {
        order: 1;
        padding: 40px 20px;
    }

    .product-title {
        font-size: 3rem;
    }

    .product-subtitle {
        font-size: 1.2rem;
    }

    .product-item-img img {
    width: 100%;
    height: auto;
}

    .product-description {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .product-description p {
        font-size: 30px;
    }

    .shop-now-btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    .page-title {
        padding-left: 20px;
        margin-top: -40px !important;
    }
}

/* Empowered Banner Styles */
.page-banner-container {
    padding: 0px 70px;
    margin-bottom: 100px;
    margin-top: 50px;
}

.empowered-pg-banner {
    background-image: url('../web-img/page-banners/empowered.avif');
}
.entranced-pg-banner {
    background-image: url('../web-img/page-banners/entranced.avif');
}
.embraced-pg-banner {
    background-image: url('../web-img/page-banners/embraced.avif');
}
.elegant-pg-banner {
    background-image: url('../web-img/page-banners/elegant.avif');
}
.product-pg-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 60px;
    position: relative;
}
.product-pg-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.product-pg-banner h3 {
    font-size: 72px;
    font-weight: 400;
    color: white;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.product-pg-banner p {
    font-size: 35px;
    line-height: 10px;
    font-weight: 300;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    max-width: 500px;
}

@media (max-width: 767.98px) {
    .product-pg-banner {
        min-height: 50vh;
        padding: 60px 30px;
    }

    .product-pg-banner h3 {
        font-size: 48px;
    }

    .product-pg-banner p {
        font-size: 30px;
        max-width: 100%;
    }

    .page-banner-container {
        padding: 0px 0px;
        margin-bottom: 10px;
        margin-top: 0px;
    }

    .product-pg-banner {
        min-height: 200px;
    }
}
