/* Comming Soon */
.product-coming-soon{
    text-align: center;
    margin: 20px;

}
.product-coming-soon h3{
    margin-bottom: 8px;
}
.product-coming-soon a{
    text-align: center;
    color: white;
    background: #b1124a;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.product-coming-soon a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
}
.product-coming-soon a:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(177, 18, 74, 0.35);
}

.product-coming-soon a:hover::before {
    left: 130%;
    transition: 0.7s;
}
/* =========================================================
TOP SECTION
========================================================= */
/* Icons */
.product-list-product-icon {
    display: none !important;

}

.product-listing-sec {
    padding: 80px 0;
}

.product-list-top-section {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    border: 1px solid #e9e9e9;
}

.product-list-top-left {
    display: flex;
    gap: 20px;
    /* flex:1; */
}

.product-list-top-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d90062, #a0004b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
}

.product-list-top-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-list-top-content p {
    color: #555;
    line-height: 1.8;
    max-width: 650px;
}

.product-list-features {
    display: flex;
    gap: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.product-list-feature {
    border-left: 1px solid #e2e2e2;
    padding-left: 28px;
    min-width: 190px;
}

.product-list-feature i {
    font-size: 26px;
    color: #c00059;
    margin-bottom: 12px;
    display: block;
}

.product-list-feature h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.product-list-feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
FILTERS
========================================================= */

.product-list-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    /* flex-wrap:wrap; */
}

.product-list-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-list-tab-btn {
    border: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    white-space: nowrap;
}

.product-list-tab-btn.active {
    background: linear-gradient(135deg, #d90062, #a0004b);
    color: #fff;
    border-color: transparent;
}

.product-list-sort-box select {
    border: none;
    outline: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 600;
    min-width: 180px;
}

/* =========================================================
PRODUCT LIST
========================================================= */

.product-list-products {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-list-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8e8e8;

    display: grid;
    /* grid-template-columns:350px 1fr 1fr 230px; */
    align-items: center;
    grid-template-columns: 2.4fr 2fr 1.6fr 1fr;
}

.product-list-product-image {
    height: 100%;
    box-shadow: -7px 1px 9px 0px;
}

.product-list-product-image img {
    /* height: 100%; */
    height: 250px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    width: 100%;
}

.product-list-product-info {
    display: flex;
    gap: 18px;
    padding: 28px;
}

.product-list-product-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d90062, #a0004b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.product-list-product-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-list-product-text p {
    color: #555;
    line-height: 1.8;
}

.product-list-product-specs {
    padding: 28px 20px;
}

.product-list-product-specs ul {
    list-style: none;
}

.product-list-product-specs li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

.product-list-product-specs li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c00059;
    position: absolute;
    left: 0;
    top: 9px;
}

.product-list-product-buttons {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.product-list-btn {
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    transition: .3s;
    font-size: 13px;
}

.product-list-btn-primary {
    background: linear-gradient(135deg, #d90062, #a0004b);
    color: #fff;
}

.product-list-btn-outline {
    border: 2px solid #c00059;
    color: #c00059;
    background: #fff;
}

.product-list-btn:hover {
    transform: translateY(-2px);
}

/* =========================================================
HIDE FILTER ITEMS
========================================================= */

.product-list-product-card.hide {
    display: none;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1200px) {

    .product-list-product-card {
        display: grid;
        grid-template-columns: 1fr 0.7fr;
        grid-template-areas:
            "image info"
            "specs buttons";
    }

    /* Assign areas */
    .product-list-product-image {
        grid-area: image;
    }

    .product-list-product-info {
        grid-area: info;
    }

    .product-list-product-specs {
        grid-area: specs;
    }

    .product-list-product-buttons {
        grid-area: buttons;
    }

    /* Optional: spacing fix */
    .product-list-product-specs,
    .product-list-product-buttons {
        border-top: 1px solid #eee;
    }


    .product-list-product-specs {
        border-top: 1px solid #eee;
    }

    .product-list-product-buttons {
        border-top: 1px solid #eee;
    }

    .product-list-product-specs,
    .product-list-product-buttons {
        grid-column: span 1;
    }

    .product-list-top-section {
        flex-wrap: wrap;
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:991px) {

    .product-list-top-section {
        flex-direction: column;
    }

    .product-list-features {
        flex-wrap: wrap;
    }

    .product-list-feature {
        width: calc(50% - 15px);
        border: none;
        padding-left: 0;
    }

}

@media(max-width:768px) {
    .product-listing-sec {
        padding: 40px 8px;
    }

    .product-list-container {
        padding: 18px 14px;
    }

    .product-list-top-section {
        padding: 24px;
        border-radius: 18px;
    }

    .product-list-top-left {
        flex-direction: row;
        align-items: center;
    }

    .product-list-top-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 28px;
    }

    .product-list-top-content h1 {
        font-size: 30px;
    }

    .product-list-features {
        flex-direction: row;
        gap: 15px;
    }

    .product-list-feature {
        /* width:100%; */
    }

    .product-list-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .product-list-tabs {
        flex-wrap: wrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .product-list-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-list-tab-btn {
        flex: 0 0 auto;
    }

    .product-list-sort-box select {
        width: 100%;
        min-width: 100%;
    }

    /* .product-list-product-card{
    grid-template-columns:1fr;
} */

    .product-list-product-image {
        height: 220px;
        box-shadow: unset;
    }

    .product-list-product-card {
        border: 2px solid #e8e8e8;
    }

    .product-list-product-info {
        padding: 22px;
    }

    .product-list-product-specs {
        padding: 0 22px 22px;
    }

    .product-list-product-buttons {
        padding: 0 22px 22px;
    }

    .product-list-product-specs,
    .product-list-product-buttons {
        grid-column: auto;
        border: none;
    }

    .product-list-product-text h3 {
        font-size: 22px;
    }

}

@media (max-width: 1200px) {
    .product-list-product-card {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: "image" "info" "specs" "buttons";
    }
}

@media (max-width:576px) {
    .product-list-top-content p {
        font-size: 14px;
    }

}

@media(max-width:480px) {

    .product-list-product-info {
        flex-direction: column;
    }

    .product-list-product-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .product-list-top-content h1 {
        font-size: 26px;
    }

    .product-list-btn {
        font-size: 14px;
    }

    .product-list-feature h4 {
        font-size: 14px;
    }

    .product-list-feature p {
        font-size: 12px;
    }

    .product-list-feature {
        width: 135px;
        min-width: 100px;
    }

    .product-list-features {
        justify-content: space-around;
    }
}