.product-card {
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 450px;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-inner-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 200px);
}
.product-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow:
        20px 20px 40px rgba(0, 0, 0, 0.1),
        -20px -20px 40px rgba(255, 255, 255, 0.3);
}


.product-image-wrapper {
    width: 100%;
    height: 200px;
    background-color: #f3f4f6;
    flex-shrink: 0;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 250px;

}

.product-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
}


.product-inner-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 16px;
}



.product-info {
    flex-grow: 1;
    padding: 15px;
}


.product-info .product-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 8px;
}

.product-info .product-content {
    font-weight: 400;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.product-info .product-content li {
    padding-bottom: 4px;
}

.price {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-top: 6px;
}

.price span {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.product-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 0 10px 10px 10px;
}


.product-button .add {
    width: 160px;
    height: 45px;
    background-color: #69B42EFF;
    border: 1px solid #69B42EFF;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.product-button .add:hover {
    background-color: #69B42EFF;
    border: 1px solid #69B42EFF;
}

.product-button .share {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid #69B42EFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.share img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    background: black;
}

.product-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background-color: #f3f4f6;
    border-radius: 50%;
    font-size: 1rem;
    color: #9ca3af;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}



.product-heart.active {
    background-color: #ffffff;
    border: 1px solid #69B42EFF;
    color: #69B42EFF;
}

.product-heart.active i {
    color: #69B42EFF;
}



/* Responsive */
@media (max-width: 1198px) {
    .product-card {
        width: 100%;
        height: 100%;

    }
}

@media (max-width: 1200px) {
    .product-card {
        width: 100%;
        height: 100%;
    }

    .product-button .add {
        font-size: 0.95rem;
    }
    .content_box .content.active {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 878px) {
    .content_box .content.active {
        gap: 1px;
    }



    .product-card {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 547px) {


    .product-card {
        width: 100%;
        height: 100%;
    }
}
.product-title, .detail-content, .detail-content{
    font-family: "Poppins", serif;

}
.product-title{padding-top: 15px}


.product-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background-color: #f3f4f6;
    border-radius: 50%;
    font-size: 1rem;
    color: #9ca3af;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}



.product-heart.active {
    background-color: #ffffff;
    border: 1px solid #69B42EFF;
    color: #69B42EFF;
}

.product-heart.active i {
    color: #69B42EFF;
}
i.fa-solid.fa-heart-circle-check.active {
    color: #69b42e;
}
