:root {
  --color-primary: #e8a0bf;
  --color-primary-dark: #d1799f;
  --color-primary-light: #fce8f0;
  --color-rose-gold: #b76e79;
  --color-accent: #8fcbb0;
  --color-accent-dark: #6bb096;
  --color-gold: #e0b94f;
  --color-bg: #fffaf9;
  --color-bg-alt: #fdf3f6;
  --color-text: #3a2e33;
  --color-text-light: #7a6b70;
  --color-white: #ffffff;
  --color-border: #f1dbe4;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(216, 128, 168, 0.15);
  --shadow-hover: 0 16px 40px rgba(216, 128, 168, 0.25);
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-display: 'Baloo Da 2', 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.floral-bg {
  background-image: url('../images/floral-pattern.svg');
  background-repeat: repeat;
  background-size: 420px 420px;
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 30px; border-radius: 999px; border: none; font-weight: 600; font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-rose-gold)); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary-dark); }
.btn-outline:hover { background: var(--color-primary-light); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 12px; font-size: 13px; }

/* ---------- Header ---------- */
.topbar { background: var(--color-text); color: #fff; font-size: 13px; }
.topbar-inner { display: flex; justify-content: center; align-items: center; padding: 6px 20px; }

.site-header { background: rgba(255,250,249,.85); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 12px rgba(0,0,0,.03); transition: box-shadow .3s ease, background .3s ease; }
.site-header.scrolled { background: rgba(255,250,249,.97); box-shadow: 0 6px 24px rgba(183,110,121,.12); }
.navbar { display: flex; align-items: center; gap: 28px; padding: 14px 20px; }

.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 21px; white-space: nowrap; transition: transform .25s ease; }
.brand:hover { transform: translateY(-1px); }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-gold)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); box-shadow: 0 4px 12px rgba(183,110,121,.35); }
.brand-name em { font-style: normal; color: var(--color-rose-gold); }

.nav-search { flex: 1; display: flex; align-items: center; max-width: 420px; background: var(--color-bg-alt); border-radius: 999px; padding: 4px 4px 4px 18px; border: 1.5px solid var(--color-border); transition: border-color .2s ease, box-shadow .2s ease; }
.nav-search:focus-within { border-color: var(--color-primary); box-shadow: 0 0 0 4px var(--color-primary-light); }
.nav-search input { flex: 1; border: none; background: transparent; outline: none; font-family: inherit; font-size: 14px; }
.nav-search button { background: var(--color-primary); border: none; border-radius: 50%; width: 34px; height: 34px; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; transition: background .2s ease; }
.nav-search button:hover { background: var(--color-rose-gold); }

.nav-links { display: flex; gap: 26px; font-weight: 600; font-size: 14.5px; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--color-primary-dark); }
.nav-underline { position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--color-primary); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover .nav-underline { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.cart-dropdown-wrap { position: relative; }
.cart-icon { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--color-text); transition: background .2s ease, color .2s ease; }
.cart-icon:hover { background: var(--color-primary-light); color: var(--color-primary-dark); }
.cart-badge { position: absolute; top: -2px; right: -2px; background: linear-gradient(135deg, var(--color-primary), var(--color-rose-gold)); color: #fff; font-size: 10.5px; font-weight: 700; border-radius: 999px; min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; padding: 0 4px; box-shadow: 0 0 0 2px #fff; }

.mini-cart {
  position: absolute; top: calc(100% + 14px); right: -10px; width: 320px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover); padding: 18px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s; z-index: 60;
}
.cart-dropdown-wrap:hover .mini-cart { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .2s ease, transform .2s ease; }
.mini-cart-empty { text-align: center; padding: 10px 0; color: var(--color-text-light); font-size: 14px; }
.mini-cart-items { display: flex; flex-direction: column; gap: 12px; max-height: 280px; overflow-y: auto; }
.mini-cart-item { display: flex; align-items: center; gap: 10px; }
.mini-cart-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mini-cart-item .info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mini-cart-item .info a { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-cart-item .info span { font-size: 12px; color: var(--color-text-light); }
.mini-cart-item strong { font-size: 13px; color: var(--color-primary-dark); white-space: nowrap; }
.mini-cart-more { font-size: 12px; color: var(--color-text-light); text-align: center; margin: 8px 0 0; }
.mini-cart-footer { border-top: 1px solid var(--color-border); margin-top: 14px; padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.mini-cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 4px; }

.mobile-toggle { display: none; background: none; border: none; font-size: 22px; width: 40px; height: 40px; border-radius: 8px; }
.mobile-toggle:hover { background: var(--color-bg-alt); }
.mobile-menu { display: none; flex-direction: column; padding: 10px 20px 16px; gap: 4px; border-top: 1px solid var(--color-border); }
.mobile-menu a { padding: 10px 4px; border-radius: 8px; font-weight: 500; }
.mobile-menu a:hover { background: var(--color-bg-alt); }

@media (max-width: 900px) {
  .nav-search, .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: flex; }
  .mini-cart { position: fixed; top: auto; bottom: 0; left: 0; right: 0; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .cart-dropdown-wrap:hover .mini-cart { display: none; }
}

/* ---------- Hero ---------- */
.hero-slider { position: relative; overflow: hidden; height: 600px; background: var(--color-bg-alt); }
.hero-slide {
  position: absolute; inset: 0; display: flex; opacity: 0; visibility: hidden; z-index: 1;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; transition: opacity 1s ease; }

.hero-text { flex: 0 0 50%; max-width: 50%; display: flex; align-items: center; background: linear-gradient(135deg, var(--color-primary-light) 0%, #fff 100%); }
.hero-text-inner { max-width: 460px; margin: 0 auto; padding: 40px 48px; opacity: 0; transform: translateY(24px); transition: opacity .8s ease .3s, transform .8s ease .3s; }
.hero-slide.active .hero-text-inner { opacity: 1; transform: translateY(0); }
.hero-text .kicker { display: inline-block; background: var(--color-white); color: var(--color-rose-gold); font-weight: 700; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; box-shadow: var(--shadow-soft); }
.hero-text h1 { font-size: clamp(28px, 3.4vw, 46px); margin-bottom: .35em; color: var(--color-text); }
.hero-text p { font-size: 16px; color: var(--color-text-light); margin-bottom: 1.6em; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { flex: 0 0 50%; max-width: 50%; position: relative; overflow: hidden; }
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); transition: transform 6s ease-out;
}
.hero-slide.active .hero-visual img { transform: scale(1); }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(252,232,240,.9) 0%, rgba(252,232,240,0) 12%);
}

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,.85); border: none; font-size: 22px; color: var(--color-text);
  cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
  transition: background .2s ease, transform .2s ease;
}
.hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.6); border: none; padding: 0; cursor: pointer; transition: all .3s ease; }
.hero-dots button.active { background: #fff; width: 28px; border-radius: 6px; }

@media (max-width: 900px) {
  .hero-slider { height: 620px; }
  .hero-slide { flex-direction: column; }
  .hero-text, .hero-visual { flex: 1 1 auto; max-width: 100%; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; height: 42%; }
  .hero-text-inner { padding: 28px 24px; text-align: center; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-visual::after { background: linear-gradient(180deg, rgba(252,232,240,.9) 0%, rgba(252,232,240,0) 18%); }
}

/* ---------- Trust badges ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0; }
.trust-item { background: var(--color-white); border-radius: var(--radius-md); padding: 22px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-soft); }
.trust-item .icon { font-size: 30px; }
.trust-item h4 { margin: 0; font-size: 15px; }
.trust-item p { margin: 0; font-size: 13px; color: var(--color-text-light); }
@media (max-width: 700px) { .trust-strip { grid-template-columns: 1fr; } }

/* ---------- Section heading ---------- */
.section { padding: 50px 20px; }
.section-head { text-align: center; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.section-head .kicker { color: var(--color-rose-gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; }

/* ---------- Carousel component (continuous right-to-left marquee) ---------- */
.carousel { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
.carousel-track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee-scroll linear infinite;
  animation-duration: calc(var(--marquee-items, 6) * var(--marquee-speed, 2.5s));
}
.carousel:hover .carousel-track { animation-play-state: paused; }
.carousel-track > * { flex-shrink: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; overflow-x: auto; }
}

/* ---------- Categories ---------- */
.category-card { text-align: center; background: var(--color-white); border-radius: var(--radius-md); padding: 20px 12px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.category-card .thumb { width: 76px; height: 76px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; background: var(--color-bg-alt); }
.category-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-card span { font-weight: 600; font-size: 14px; }
.category-carousel .category-card { flex: 0 0 180px; }
@media (max-width: 900px) { .category-carousel .category-card { flex: 0 0 140px; } }
@media (max-width: 560px) { .category-carousel .category-card { flex: 0 0 118px; } }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.product-card .badge { position: absolute; top: 12px; left: 12px; background: var(--color-gold); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; z-index: 2; }
.product-card .thumb { aspect-ratio: 1/1; overflow: hidden; background: var(--color-bg-alt); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .thumb img { transform: scale(1.08); }
.product-card .body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .brand { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--color-rose-gold); font-weight: 700; }
.product-card h3 { font-size: 15px; margin: 0; font-family: var(--font-body); font-weight: 600; }
.product-card .price { margin-top: auto; display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--color-primary-dark); }
.product-card .price .compare { text-decoration: line-through; color: var(--color-text-light); font-weight: 400; font-size: 13px; }
.product-card .add-btn { margin-top: 8px; }
.stars { color: var(--color-gold); font-size: 13px; }

/* ---------- Reviews ---------- */
.review-card { background: var(--color-white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-soft); }
.review-card .stars { margin-bottom: 8px; }
.review-card .name { font-weight: 700; margin-top: 10px; font-size: 14px; }
.review-carousel .carousel-track { --marquee-speed: 4s; }
.review-carousel .review-card { flex: 0 0 380px; }
@media (max-width: 900px) { .review-carousel .review-card { flex: 0 0 300px; } }

/* ---------- Video showcase ---------- */
.video-carousel .video-card { flex: 0 0 227px; }
@media (max-width: 1000px) { .video-carousel .video-card { flex: 0 0 200px; } }
@media (max-width: 760px) { .video-carousel .video-card { flex: 0 0 110px; } .video-carousel .carousel-track { gap: 10px; } }

.video-card { position: relative; aspect-ratio: 9/16; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; background: #000; box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; }
.video-card:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.video-preview { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center; font-size: 18px; padding-left: 3px;
  transition: transform .25s ease, background .25s ease;
}
.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.12); background: #fff; }
.video-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 12px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,0));
  color: #fff; font-size: 13px; font-weight: 600;
}
.video-caption small { display: block; font-weight: 400; opacity: .8; font-size: 11px; margin-top: 2px; }

.video-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(20,14,16,.9); }
.video-modal-content { position: relative; z-index: 2; width: 100%; max-width: 460px; max-height: 88vh; aspect-ratio: 9/16; }
.video-modal-content video { width: 100%; height: 100%; border-radius: var(--radius-md); background: #000; }
.video-modal-close {
  position: absolute; top: -46px; right: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; border: none; font-size: 16px; cursor: pointer;
}
.video-modal-close:hover { background: rgba(255,255,255,.3); }
@media (max-width: 600px) { .video-modal-content { max-width: 94vw; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-text); color: #f2e6ea; padding: 50px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { display: block; opacity: .8; margin-bottom: 8px; font-size: 14px; }
.footer-col a:hover { opacity: 1; color: var(--color-gold); }
.footer-badges { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; font-size: 13px; opacity: .85; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 16px; font-size: 13px; opacity: .7; text-align: center; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 100; animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
  font-family: inherit; font-size: 14px; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: 2px solid var(--color-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #e6f6ee; color: #1c7a4d; }
.alert-error { background: #fde8e8; color: #b02a2a; }

.breadcrumb { font-size: 13px; color: var(--color-text-light); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--color-primary-dark); }

.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .emoji { font-size: 46px; margin-bottom: 10px; }

/* Grid items default to min-width:auto and can be forced wider than their
   track by a wide descendant (e.g. a table or a nowrap flex row). Reset it
   so responsive grid layouts (shop/cart/checkout/product) actually shrink. */
.shop-layout > *, .cart-layout > *, .checkout-layout > *, .product-detail > * { min-width: 0; }

.cart-item-row { display: flex; gap: 16px; align-items: center; background: #fff; border-radius: var(--radius-md); padding: 14px; margin-bottom: 14px; box-shadow: var(--shadow-soft); flex-wrap: wrap; }
.cart-item-row .thumb { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.cart-item-row .info { flex: 1 1 160px; min-width: 0; }
.cart-item-row .qty-form { display: flex; align-items: center; gap: 6px; }
@media (max-width: 480px) {
  .cart-item-row .qty-form, .cart-item-row .remove-form { margin-left: 96px; }
}

.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
@media (max-width: 800px) { .cart-layout { grid-template-columns: 1fr; } }

.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.pay-option { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 2px solid var(--color-border); border-radius: var(--radius-sm); cursor: pointer; }
.pay-option:has(input:checked) { border-color: var(--color-primary); background: var(--color-primary-light); }

.expiry-note { margin-top: 8px; font-size: 13px; color: var(--color-rose-gold); background: var(--color-primary-light); display: inline-block; padding: 6px 14px; border-radius: 999px; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; } }
.size-pill:has(input:checked) { border-color: var(--color-primary) !important; background: var(--color-primary-light); }

/* ---------- Shop filters ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.shop-toolbar-mobile { display: none; margin-bottom: 16px; }
.filter-count-badge { background: var(--color-rose-gold); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 999px; margin-left: 4px; }

.filters-sidebar { background: var(--color-white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-soft); position: sticky; top: 90px; max-height: calc(100vh - 110px); overflow-y: auto; }
.filters-header { display: none; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.filters-close { background: var(--color-bg-alt); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 15px; cursor: pointer; }

.filter-group { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); }
.filter-group:last-of-type { border-bottom: none; }
.filter-group h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--color-rose-gold); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.filter-option input { width: 16px; height: 16px; accent-color: var(--color-primary); flex-shrink: 0; }
.filter-option span { flex: 1; }
.filter-option small { color: var(--color-text-light); font-size: 12px; }
.filter-scroll { max-height: 220px; overflow-y: auto; padding-right: 4px; }

.price-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.price-chip { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 600; cursor: pointer; color: var(--color-text); transition: background .2s ease, color .2s ease; }
.price-chip:hover { background: var(--color-primary-light); border-color: var(--color-primary); color: var(--color-primary-dark); }

.filters-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.filters-overlay { display: none; }

.shop-results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.results-count { color: var(--color-text-light); font-size: 14px; }
.sort-form select { padding: 9px 14px; border-radius: var(--radius-sm); border: 1px solid var(--color-border); font-family: inherit; background: #fff; }

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.active-chip { background: var(--color-primary-light); color: var(--color-primary-dark); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.active-chip:hover { background: var(--color-primary); color: #fff; }

@media (max-width: 880px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-toolbar-mobile { display: flex; }
  .filters-header { display: flex; }
  .filters-sidebar {
    position: fixed; top: 0; left: -100%; width: 85%; max-width: 340px; height: 100vh; max-height: 100vh;
    z-index: 300; border-radius: 0; transition: left .3s ease;
  }
  .filters-sidebar.open { left: 0; }
  .filters-overlay {
    display: block; position: fixed; inset: 0; background: rgba(58,46,51,.5); z-index: 290;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .filters-overlay.open { opacity: 1; pointer-events: auto; }
  .shop-results-head { flex-wrap: wrap; gap: 10px; }
}
