/* Shop Archive - Category Style Product Cards */

/* Đảm bảo các box có chiều cao bằng nhau */
.products .product-small {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products .product-small .col-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products .product-small .box {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

/* Title styles */
.products .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    min-height: auto;
}

.products .woocommerce-loop-product__title a {
    color: #0073e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.products .woocommerce-loop-product__title a:hover {
    color: #005bb5;
}

/* Box Image - Fixed height */
.products .box-image {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    background-image: url('/wp-content/uploads/2026/01/prod_img_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
    margin: 0;
}

.products .box-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Box Text - Content area */
.products .box-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.products .box-text-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products .box-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

/* MORE+ button */
.products .more-button {
    margin-top: auto;
}

.products .button-more {
    display: inline-block;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.products .button-more:hover {
    color: #0091db;
}

/* Blue line animation on hover - below box-text-inner */
.products .box-text-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0091db 0%, #004496 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.products .product-small:hover .box-text-inner::after {
    transform: scaleX(1);
    transform-origin: left;
}

.products .product-small:not(:hover) .box-text-inner::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* Responsive */
@media (max-width: 768px) {
    .products .box-image {
        height: 250px;
    }
    
    .products .woocommerce-loop-product__title {
        font-size: 16px;
    }
    
    .products .box-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 549px) {
    .products .box-image {
        height: 200px;
    }
    
    .products .woocommerce-loop-product__title {
        font-size: 15px;
    }
    
    .products .box-text {
        padding: 20px 25px 20px 25px !important;
    }
}
