/* ── PRODUCT GRID ── */
.filter-row{display:flex;gap:10px;margin-bottom:28px;flex-wrap:wrap}
.filter-pill{padding:9px 20px;border:1px solid var(--border);font-size:0.6875rem;letter-spacing:0.16em;text-transform:uppercase;cursor:pointer;transition:all .2s;color:var(--muted);background:transparent;font-family:var(--sans)}
.filter-pill:hover,.filter-pill.active{background:var(--red);border-color:var(--red);color:#fff}
.prod-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:3px}
html:not(.dark) .prod-grid{gap:12px}
.prod-card{background:var(--card-bg);border:1px solid var(--card-border);overflow:hidden;transition:border-color .3s,box-shadow .3s;position:relative}
.prod-card:hover{border-color:var(--card-hover)}
html:not(.dark) .prod-card:hover{box-shadow:0 4px 20px rgba(0,0,0,0.08)}
.prod-badge{position:absolute;top:10px;left:10px;z-index:2;background:var(--red);color:#fff;font-size:0.625rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;padding:4px 10px}
.gold-badge{background:var(--gold3)!important}
.prod-img{width:100%;aspect-ratio:4/3;overflow:hidden;background:var(--surface2);display:flex;align-items:center;justify-content:center}
.prod-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.prod-card:hover .prod-img img{transform:scale(1.05)}
.prod-body{padding:12px 14px 16px}
.prod-cat-tag{font-size:0.625rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--red);margin-bottom:6px}
.prod-name{font-family:var(--serif);font-size:1.15rem;font-weight:400;line-height:1.25;margin-bottom:4px;color:var(--text)}
.prod-short{font-size:0.75rem;color:var(--muted);margin-bottom:8px}
.prod-desc-text{font-size:0.875rem;line-height:1.85;color:var(--text3);margin-bottom:14px}
.prod-foot{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:nowrap}
.prod-price{font-family:var(--serif);font-size:1.18rem;color:var(--text);flex-shrink:0}
.btn-order-sm{background:var(--red);color:#fff;border:none;cursor:pointer;padding:7px 14px;font-size:0.6rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;font-family:var(--sans);transition:background .2s;white-space:nowrap;max-width:none}
.btn-order-sm:hover{background:var(--red2)}

/* AATHAAR product cards */
.aath-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:3px}
html.cream .aath-grid{gap:14px}
.aath-card{background:var(--card-bg);border:1px solid var(--card-border);overflow:hidden;transition:border-color .3s,box-shadow .3s;position:relative}
.aath-card:hover{border-color:var(--card-hover)}
html.cream .aath-card:hover{box-shadow:0 4px 20px rgba(154,122,69,0.1)}
.aath-img{width:100%;aspect-ratio:1;overflow:hidden;background:var(--surface2);display:flex;align-items:center;justify-content:center}
.aath-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.aath-card:hover .aath-img img{transform:scale(1.04)}
.aath-body{padding:20px 22px 26px}
.aath-tag{font-size:0.625rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold3);margin-bottom:8px}
html.aathaar-dark .aath-tag{color:var(--gold)}
.aath-name{font-family:var(--serif);font-size:1.18rem;font-weight:400;margin-bottom:10px;line-height:1.3;color:var(--text)}
.aath-desc{font-size:0.875rem;line-height:1.82;color:var(--text3);margin-bottom:16px}
.aath-foot{display:flex;align-items:center;justify-content:space-between;gap:6px;overflow:hidden}
.aath-price{font-family:var(--serif);font-size:1.18rem;color:var(--text)}
html.aathaar-dark .aath-price{color:var(--gold2)}
.btn-aathaar-order{background:var(--gold3);color:#fff;border:none;cursor:pointer;padding:7px 11px;font-size:0.6rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;font-family:var(--sans);transition:background .2s;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100px}
.btn-aathaar-order:hover{background:var(--gold)}

/* ── COLLECTION CARDS ── */
.collection-card-wrap{display:grid;grid-template-columns:1fr 1fr;gap:3px}
.collection-card{position:relative;overflow:hidden;cursor:pointer;aspect-ratio:16/9;background:var(--surface2)}
.collection-card img{width:100%;height:100%;object-fit:cover;filter:brightness(0.72);transition:transform .5s,filter .4s}
.collection-card:hover img{transform:scale(1.04);filter:brightness(0.88)}
.collection-overlay{position:absolute;inset:0;background:linear-gradient(transparent 40%,rgba(0,0,0,0.82));display:flex;flex-direction:column;justify-content:flex-end;padding:28px}
.collection-tag{font-size:0.625rem;letter-spacing:0.24em;text-transform:uppercase;margin-bottom:6px}
.collection-name{font-family:var(--serif);font-size:1.5rem;font-weight:300;margin-bottom:4px;color:#F5F0E8}
.collection-sub{font-size:0.75rem;color:rgba(245,240,232,0.7)}

/* Product cards/previews: hide dispatch countdown outside detail pages */
.prod-card .dispatch-countdown,
.aath-card .dispatch-countdown,
.shop-grid .dispatch-countdown,
.prod-grid .dispatch-countdown,
.aath-grid .dispatch-countdown,
.collection-card-wrap .dispatch-countdown,
section .prod-card .dispatch-countdown,
section .aath-card .dispatch-countdown,
.hero .dispatch-countdown{display:none!important}
.product-urgency,
.product-dispatch-note{display:none!important}
