/* --- Balanced, Modern Product Card Styling --- */

/* 1. Main Product Card Container */
.product-box .tp-product-container {
    border: 1px solid #E4E7ED;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
    padding-bottom: 10px;
}

/* 2. Card Hover Effect */
.product-box:hover .tp-product-container {
    border-color: #D1D5DB !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-4px);
}

/* 3. Primary Button (Solid, Modern) */
.product-box .footer-btns .btn-product-card-select-variant {
    background-color: #2B2D42 !important; /* Dark, professional navy/black */
    color: #ffffff !important;
    border-radius: 8px !important; 
    border: none !important;
    font-weight: 600;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

/* 4. Primary Button Hover */
.product-box .footer-btns .btn-product-card-select-variant:hover {
    background-color: #1A1B28 !important; /* Slightly darker on hover */
}

/* 5. Wishlist Button (Heart icon) */
.product-box .img-and-btns .add-to-wishlist button {
    background-color: #ffffff !important;
    border-radius: 50%;
    color: #8D99AE !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.product-box .img-and-btns .add-to-wishlist button:hover {
    color: #EF233C !important; /* Turns red on hover */
    transform: scale(1.05);
}

/* 6. Product Title Styling */
.product-box .tp-content-wrapper .tp-content-product h2 {
    font-size: 15px !important;
    font-weight: 600;
    color: #2B2D42 !important;
    margin-bottom: 6px;
}

/* 7. Price Styling */
.product-box .tp-price-product .price-new {
    color: #2B2D42 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* 8. Discount / Old Price */
.product-box .tp-price-product .price-old {
    color: #8D99AE !important;
    text-decoration: line-through;
    font-size: 13px !important;
}

.product-box .tp-price-product .discount {
    background-color: #EF233C !important;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

/* Desktop / Tablet */
.tp-feature-items {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
}

/* Mobile */
@media (max-width: 767px) {
    .tp-feature-items {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }

    .tp-feature-items .feature-box {
        padding: 10px;
        text-align: center;
    }

    .tp-feature-items .feature-box .icon img {
        width: 40px;
        height: 40px;
    }

    .tp-feature-items .feature-box .title {
        font-size: 13px;
        margin-top: 8px;
    }

    .tp-feature-items .feature-box p {
        display: none;
    }
}