/* ==========================================================================
   CYNSERA CUSTOM SHOP CSS
   ========================================================================== */

/* 1. Category Circles Styling */
.wrap-product-category.category-circles .item .thumb {
    border-radius: 50% !important;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}
.wrap-product-category.category-circles .item .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}
.wrap-product-category.category-circles .item:hover .thumb {
    border-color: #333;
    transform: scale(1.05);
}
.wrap-product-category.category-circles .title a {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: block;
    margin-top: 10px;
}

/* 2. Product Card Improvements */
.products li.product {
    margin-bottom: 30px;
}
.products li.product .inner {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.products li.product .inner:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.products li.product .product-thumbnail {
    position: relative;
    overflow: hidden;
}
.products li.product .product-thumbnail img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    display: block;
}
.products li.product .product-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.products li.product .product-content .product-category a {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}
.products li.product .product-content .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: block;
}
.products li.product .product-content a {
    text-decoration: none !important;
}
.products li.product .product-content .price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.products li.product .product-content .price del {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}
.products li.product .product-content .price ins {
    text-decoration: none;
    color: #e53e3e;
}
/* Ensure the "Add to cart" button spans nicely */
.products li.product .btn-add-to-cart {
    margin-top: 15px;
}
.products li.product .btn-add-to-cart .add_to_cart, 
.products li.product .btn-add-to-cart .select_option {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

/* 3. Hide X-Currency Approximate Price Text */
.x-currency-product-approximate-price {
    display: none !important;
}

/* 4. Promotional Banners */
.shop-promo-banner {
    display: block;
    clear: both;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.shop-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.shop-promo-banner:hover {
    transform: scale(1.02);
}
