/*================================================
 product list
=================================================*/
.product-list {
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* card 2 */
.product-card {
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid #e6e6e2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

.product-card .card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #ddd;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.025);
}

.product-card .card-content {
    padding: 15px 20px;
}

.product-card .card-content .card-title {
    color: #000;
    margin: 0;
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-card .card-content .card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin: 9px 0 0;
    color: #707070;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .card-content .title-divider {
    width: 90px;
    height: 4px;
    margin: 8px 0 8px;
    background: #8b1717;
    border-radius: 20px;
}

.product-card .card-content .bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.product-card .card-content .bullet-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    color: #444;
    font-size: 15px;
    line-height: 1.45;
}

.product-card .card-content .bullet-list li::before {
    content: "•";
    position: absolute;
    left: 2px;
    top: -1px;
    color: var(--accent);
    font-size: 20px;
    font-weight: 800;
}

.product-card .card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #292828;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #F5F5F5;
}
.product-card .card-footer .address-bar,
.product-card .card-footer .price-bar{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.product-card .card-footer .address-bar .first-box,
.product-card .card-footer .price-bar .first-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-card .card-footer .price-bar .first-box .price-container .price{
    font-size: 24px;
    font-weight: 700;
}
.product-card .card-footer .price-bar .yard .unit,
.product-card .card-footer .price-bar .first-box .price-container .unit{
    font-size: 14px;
}
.product-card .card-footer svg.icon{
    width: 35px;
    height: 35px;
}
.product-card .card-footer .price-bar{
    border-top: 1px solid #F5F5F5;
    padding-top: 5px;
}
.product-card .card-footer .price-bar .yard .price{
    font-size: 18px;
    font-weight: 550;
    color: #f2b90b;
}

@media only screen and (max-width:991px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:767px) {

}

@media only screen and (max-width:576px) {
    .product-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width:495px) {

}

@media only screen and (max-width:425px) {
    .product-card .card-footer svg.icon{
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width:375px) {
    .product-card .card-image {
        height: 200px;
    }

    .product-card .card-content .card-subtitle {
        font-size: 14px;
    }

    .product-card .card-content {
        padding: 15px;
    }
    .product-card .card-footer .price-bar .first-box .price-container .price{
        font-size: 20px;
    }
    .product-card .card-footer .price-bar .yard .price{
        font-size: 16px;
    }
    .product-card .card-footer .price-bar .yard .unit,
    .product-card .card-footer .price-bar .first-box .price-container .unit{
        font-size: 12px;
    }
}

@media only screen and (max-width:365px) {
    
}

@media only screen and (max-width:345px) {
    .product-card .card-footer svg.icon{
        width: 26px;
        height: 26px;
    }
    .product-card .card-footer .price-bar .first-box .price-container .price{
        font-size: 18px;
    }
    .product-card .card-footer .price-bar .yard .unit,
    .product-card .card-footer .price-bar .first-box .price-container .unit{
        font-size: 10px;
    }
}

@media only screen and (max-width:330px) {}