/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Baloo+Da+2:wght@600;700;800&display=swap');

/* ── 1. GLOBAL BACKGROUND & FONTS ── */
.woodmart-archive-shop .main-page-wrapper {
    background-color: #E8DDD4 !important;
    font-family: 'Hind Siliguri', sans-serif !important;
    padding-top: 30px !important;
}

/* ── 2. SIDEBAR STYLING (Match your HTML) ── */
.woodmart-archive-shop .sidebar-container {
    background: #ffffff !important;
    border: 1.5px solid #EDD9CC !important;
    border-radius: 12px !important;
    padding: 20px !important;
}
.woodmart-archive-shop .widget-title {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #9E7B6E !important;
    text-transform: uppercase !important;
    border: none !important;
    padding-bottom: 10px !important;
}
/* Style Sidebar Categories */
.woodmart-archive-shop .widget_product_categories li {
    padding: 8px 12px !important;
    border-radius: 8px !important;
    margin-bottom: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #5C4033 !important;
    transition: 0.2s;
}
.woodmart-archive-shop .widget_product_categories li:hover,
.woodmart-archive-shop .widget_product_categories li.current-cat {
    background: #FFF0E8 !important;
    color: #F4622A !important;
}

/* ── 3. PRODUCT GRID CARDS (Match your HTML) ── */
.woodmart-archive-shop .product-grid-item {
    background: #ffffff !important;
    border: 1.5px solid #EDD9CC !important;
    border-radius: 16px !important;
    padding: 10px !important;
    transition: 0.2s !important;
}
.woodmart-archive-shop .product-grid-item:hover {
    border-color: #F4622A !important;
    box-shadow: 0 4px 18px rgba(244,98,42,.12) !important;
}
.woodmart-archive-shop .product-grid-item .product-title {
    font-family: 'Hind Siliguri', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1A0A00 !important;
}
.woodmart-archive-shop .product-grid-item .price {
    font-family: 'Baloo Da 2', cursive !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #E02020 !important;
}

/* ── 4. ADD TO CART BUTTON (Slim & Compact) ── */
.woodmart-archive-shop .product-grid-item .add_to_cart_button {
    background: #F4622A !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    width: 100% !important;
    padding: 4px 10px !important;  /* Extreme reduction on top/bottom */
    min-height: 32px !important;   /* Much smaller minimum height */
    height: auto !important;       /* Overrides Woodmart's forced height */
    margin: 0 !important;          /* Removes any hidden margins */
    line-height: 1 !important;     /* Removes extra text spacing */
    font-family: 'Hind Siliguri', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: none !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.woodmart-archive-shop .product-grid-item .add_to_cart_button:hover {
    background: #1A8A3C !important; 
}
.woodmart-archive-shop .product-grid-item .add_to_cart_button::before {
    content: "🛒 ";
    margin-right: 5px;
    font-size: 14px !important;
}

/* ── 5. LOAD MORE BUTTON ── */
.woodmart-archive-shop .wd-loop-btn .btn {
    background: #ffffff !important;
    border: 2px solid #F4622A !important;
    color: #F4622A !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}
.woodmart-archive-shop .wd-loop-btn .btn:hover {
    background: #F4622A !important;
    color: #ffffff !important;
}


/* ── HIDE STARS ON SHOP PAGE ── */
.woodmart-archive-shop .product-grid-item .star-rating {
    display: none !important;
}

