/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 24 2026 | 18:39:16 */

/* ==================================================
   HIDE PAGE TITLES
   ================================================== */

.entry-title,
.page-title,
.page-header {
    display: none !important;
}

/* Hide WooCommerce Blocks Add to Cart */
.wc-block-grid__product-add-to-cart {
    display: none !important;
}

/* Hide RTSB Wishlist */
a.rtsb-wishlist-btn {
    display: none !important;
}

/* Keep TI Wishlist Visible */
.tinv-wraper.tinv-wishlist {
    display: block !important;
}

/* useless payment method remove css */

/* Hide ONLY Check Payments from Checkout */
.wc-block-components-radio-control__option[for*="radio-control-wc-payment-method-options-cheque"] {
    display: none !important;
}

/* Hide the Check payment instruction text box */
div:has(> [id*="radio-control-wc-payment-method-options-cheque"]) + div {
    display: none !important;
}

/* SHOP PAGE CUSTOM STYLING START */

/* ===============================
   SEARCH + SORT (SAME ROW)
=================================*/

.solar-filter-wrapper {
    max-width: 1200px;
    margin: 30px auto 40px;
    padding: 0 15px;
}

.solar-search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* SEARCH */
.search-input-group {
    flex: 1;
}

.search-input-group input[type="text"] {
    width: 100%;
    height: 52px;
    border-radius: 40px !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 22px !important;
    font-size: 15px;
    background: #fff;
}

/* SORT */
.sort-select-group {
    width: 250px;
}

.sort-select-group select {
    width: 100%;
    height: 52px;
    border-radius: 40px !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 20px !important;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}


/* ===============================
   PRODUCT GRID
=================================*/

.solar-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* ===============================
   PRODUCT CARD
=================================*/

.solar-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.solar-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


/* Image Box */
.solar-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.solar-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solar-product-card:hover .solar-img-box img {
    transform: scale(1.05);
}


/* ===============================
   BADGES
=================================*/

.solar-sale-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff7c4c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
}

/* ===============================
   CUSTOM HEART USING ::BEFORE
=================================*/

/* ===============================
   PERFECT CENTER EMOJI HEART
=================================*/

.solar-wishlist-top {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
}

/* Circle button */
.solar-wishlist-top .tinvwl_add_to_wishlist_button {
    width: 33px !important;
    height: 33px !important;
    background: #fff !important;
    border-radius: 50% !important;
    position: relative;
    display: block !important;
    padding: 0 !important;
    text-decoration: none !important;
    font-size: 0 !important; /* hide original */
}

/* Hide original icon */
.solar-wishlist-top svg,
.solar-wishlist-top i {
    display: none !important;
}

/* Perfect center heart */
.solar-wishlist-top .tinvwl_add_to_wishlist_button::before {
    content: "🤍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;   /* Bigger */
    line-height: 1;
}

/* When added to wishlist */
.solar-wishlist-top .tinvwl-product-in-list::before {
    content: "❤️";
}

/* Hover */
.solar-wishlist-top .tinvwl_add_to_wishlist_button:hover {
    background: #ff7c4c !important;
    transform: scale(1.08);
    transition: 0.3s ease;
}

/* ===============================
   PRODUCT INFO
=================================*/

.solar-info {
    padding: 20px;
    text-align: center;
}

.solar-cat-name {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.solar-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    min-height: 40px;
}

.solar-title a {
    color: #333;
    text-decoration: none;
}

.solar-title a:hover {
    color: #ff7c4c;
}


/* ===============================
   FIX STAR + PRICE LAYOUT
=================================*/

.solar-rating {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

.solar-rating .star-rating {
    display: block !important;
    float: none !important;
    margin: 0 auto 10px auto !important;
}

.solar-price-box {
    display: block;
    width: 100%;
    margin-top: 5px;
}

/* Remove WooCommerce float issue */
.star-rating {
    float: none !important;
}

/* add to cart button style */

.solar-action-area{
    margin-top: 10px !important;
}

.solar-action-area a{
    background-color: #ff7c4c !important;
    color: #fff !important;
}

.solar-action-area a:hover{
    background-color: #ef4a0e !important;
    color: #fff !important;
}

/* SHOP PAGE CUSTOM STYLING END */