/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 17 2026 | 20:58:33 */
/* --- 1. Global Shop & Layout (Margin/Padding Fixed) --- */
.shop-wrapper-main { background: #fff; padding: 40px 0; color: #000; font-family: 'Inter', sans-serif; }

/* Container width aur padding ko optimize kiya taake left margin kam ho jaye */
.custom-shop-container { max-width: 1400px; margin: 0 auto; padding: 0px 0px; }

/* Sidebar aur Grid ke beech ka gap maintain rakha lekin alignment tight kar di */
.shop-layout-body { display: flex; gap: 30px; align-items: flex-start; justify-content: flex-start; }

/* --- 2. Header & Search --- */
.shop-header-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #000; padding-bottom: 25px; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.modern-search { display: flex; border: 1px solid #ddd; padding: 3px; background: #fff; }
.modern-search input { border: none !important; padding: 10px 15px; width: 320px; outline: none; font-size: 14px; }
.modern-search button { background: #000; color: #fff; border: none; padding: 0 18px; cursor: pointer; transition: 0.3s; }
.controls-right { display: flex; align-items: center; gap: 30px; }
.sort-box select { border: 1px solid #ddd; padding: 10px 15px; font-size: 12px; font-weight: bold; background: #fff; text-transform: uppercase; cursor: pointer; }
.view-icons { display: flex; gap: 15px; border-left: 1px solid #eee; padding-left: 20px; }
.view-btn { font-size: 20px; color: #ccc; transition: 0.3s; cursor: pointer; }
.view-btn.active { color: #000; }

/* --- 3. Sidebar Style --- */
.shop-sidebar-area { width: 240px; flex-shrink: 0; position: sticky; top: 20px; }
.widget-block { margin-bottom: 40px; }
.widget-block h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; border-bottom: 1px solid #000; padding-bottom: 10px; margin-bottom: 20px; }
.list-links { list-style: none; padding: 0; }
.list-links li { margin-bottom: 12px; }
.list-links a { text-decoration: none; color: #777; font-size: 14px; transition: 0.3s; }
.list-links a:hover, .list-links a.current { color: #000; font-weight: bold; padding-left: 5px; }
.price-range-form { display: flex; flex-direction: column; gap: 10px; }
.price-inputs { display: flex; align-items: center; gap: 5px; }
.price-inputs input { width: 100%; border: 1px solid #ddd; padding: 8px; font-size: 13px; outline: none; }
.apply-price-btn { background: #000; color: #fff; border: none; padding: 10px; cursor: pointer; font-size: 11px; font-weight: bold; text-transform: uppercase; }

/* --- 4. Common Card Base --- */
.modern-card { background: #fff; border: 1px solid #eee; transition: all 0.3s ease; position: relative; }
.image-box { position: relative; background: #f9f9f9; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.image-box img { max-width: 100%; object-fit: contain; }
.sale-badge { position: absolute; top: 15px; left: 15px; background: #000; color: #fff; font-size: 10px; font-weight: bold; padding: 5px 12px; z-index: 5; }

/* --- 5. GRID VIEW STYLE --- */
.grid-view { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 25px !important; flex: 1; }
.grid-view .modern-card { display: flex !important; flex-direction: column !important; height: 100% !important; }
.grid-view .image-box img { height: 280px; padding: 20px; }
.grid-view .content-box { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.grid-view .item-title { font-size: 15px; font-weight: 600; min-height: 48px; margin-bottom: 10px; color: #000; }
.grid-view .price-val { margin-top: auto; margin-bottom: 15px; font-weight: 700; font-size: 16px; }

/* Grid Buttons Row (Exactly as you wanted) */
.grid-view .product-actions { display: flex !important; flex-direction: row !important; gap: 8px !important; width: 100% !important; align-items: center; }
.grid-view .bag-btn { flex: 1.5; background: #000; color: #fff; padding: 10px 5px; font-size: 11px; font-weight: bold; text-align: center; text-transform: uppercase; white-space: nowrap; text-decoration: none; }
.grid-view .wishlist-wrapper { flex: 1; }
.grid-view .wishlist-btn, .grid-view .yith-wcwl-add-button a { 
    background: #f1e9db !important; color: #8d734a !important; padding: 10px 5px !important; 
    font-size: 10px !important; display: flex !important; justify-content: center; text-decoration: none; white-space: nowrap; 
}

/* --- 6. LIST VIEW STYLE --- */
.list-view .modern-card { display: flex !important; flex-direction: row !important; align-items: flex-start !important; padding: 24px !important; gap: 30px !important; border-bottom: 1px solid #eee !important; border-top: none; border-left: none; border-right: none; width: 100%; }
.list-view .image-box { width: 260px !important; height: 260px !important; flex-shrink: 0 !important; border: 3px solid #000 !important; padding: 15px; }
.list-view .content-box { flex: 1; display: flex; flex-direction: column; padding: 0 !important; }
.list-view .item-title { font-size: 24px; font-weight: 500; line-height: 1.2; margin: 0 0 15px 0; color: #1a1a1a; }
.list-view .price-val { font-size: 20px; font-weight: 600; margin-bottom: 30px; color: #000; }

/* List Buttons Row */
.list-view .product-actions, .list-view .action-btns { display: flex !important; flex-direction: row !important; gap: 15px !important; }
.list-view .bag-btn { background: #f1e9db !important; color: #000 !important; border: 1.5px solid #000 !important; padding: 10px 20px !important; font-size: 13px !important; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.list-view .wishlist-btn { background: #fdf6e9 !important; color: #8d734a !important; padding: 10px 15px !important; font-size: 13px !important; font-weight: 600; border: none !important; text-decoration: none; }

/* --- 7. Responsive Fixes --- */
@media (max-width: 1024px) {
    .shop-layout-body { flex-direction: column; }
    .shop-sidebar-area { width: 100%; position: static; margin-bottom: 40px; }
    .grid-view { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .list-view .modern-card { flex-direction: column !important; align-items: center !important; text-align: center; border: 1px solid #eee !important; }
    .list-view .image-box { width: 100% !important; max-width: 300px; height: 300px !important; }
    .list-view .product-actions { justify-content: center; width: 100%; }
}

@media (max-width: 600px) {
    .grid-view { grid-template-columns: 1fr !important; }
    .grid-view .product-actions, .list-view .product-actions { flex-direction: column !important; }
    .grid-view .bag-btn, .grid-view .wishlist-wrapper, .list-view .bag-btn { width: 100% !important; }
}