:root {
  --ink: #ffffff;
  --ink-soft: #f5f5f7;
  --card: #ffffff;
  --line: #e8e8ee;
  --text: #111118;
  --muted: #6b6b80;
  --red: #ff283a;
  --red-dark: #d41828;
  --gold: #f59e0b;
  --paper: #fffaf5;
  --paper-line: #eadfd5;
  --green: #16a34a;
  --blue: #2d6cdf;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #f7f7fb;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.ticker {
  overflow: hidden;
  background: var(--red);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  min-width: 100%;
  gap: 28px;
  padding: 10px 0;
  animation: slideTicker 26s linear infinite;
}

.ticker span {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.main-nav a {
  color: var(--muted);
}

.brand strong {
  color: var(--text);
}

.brand small {
  margin-top: 2px;
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--red);
}

.header-actions {
  justify-self: end;
}

.header-actions form {
  margin: 0;
}

.login-button,
.primary-action,
.secondary-action,
.category-bar a,
.admin-products button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.login-button {
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 1.14fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100vh - 104px);
  padding: clamp(40px, 6vw, 82px) clamp(16px, 5vw, 72px) 34px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.trust-pill {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 16px;
  border: 1px solid rgba(255, 40, 58, 0.36);
  border-radius: 999px;
  background: rgba(255, 40, 58, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h2 em {
  color: var(--red);
  font-style: italic;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-text,
.page-hero p,
.section-heading p,
.contact-grid span,
.contact-grid a {
  color: var(--muted);
  line-height: 1.55;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  padding: 12px 18px;
}

.primary-action {
  color: #fff;
  background: var(--red);
}

.secondary-action {
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.deal-slider {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.deal-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.deal-slide.active {
  opacity: 1;
  transform: scale(1);
}

.deal-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.deal-slide div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 26px;
}

.deal-slide span,
.deal-slide small {
  color: #fff0d9;
  font-weight: 800;
}

.deal-slide strong {
  max-width: 560px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(16px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.stats-strip div {
  padding: 22px;
  background: #ffffff;
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  color: var(--red);
  font-size: 28px;
}

.stats-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

section {
  padding: clamp(46px, 6vw, 86px) clamp(16px, 5vw, 72px);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.86), rgba(8, 7, 6, 0.58)),
    url("/assets/products/cotton-ethnic-wear-23-08-28.jpg") center/cover;
}

.page-hero.compact {
  min-height: 310px;
  display: grid;
  align-content: center;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 74px);
}

.page-hero p {
  max-width: 620px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.tight {
  padding-bottom: 12px;
}

.category-bar {
  position: sticky;
  top: 78px;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  overflow: visible;
  padding: 10px 0;
  background: #f7f7fb;
}

.category-bar a {
  flex: 0 1 auto;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 12px;
  white-space: nowrap;
}

.category-bar a.active,
.category-bar a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f3f3f8;
}

.product-info {
  display: grid;
  gap: 8px;
  padding: 10px 11px 12px;
}

.product-info strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.product-info span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.enquiry-button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 10px;
}

.trust-section {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.dark-cards,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dark-cards article,
.contact-grid article,
.auth-card,
.admin-form,
.admin-products article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.dark-cards article {
  padding: 24px;
}

.trust-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.platform-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  font-size: 24px;
  font-weight: 900;
}

.google {
  color: var(--blue);
}

.justdial {
  color: #fb8720;
}

.indiamart {
  color: var(--red);
}

.verified {
  min-height: 25px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ff4452;
  background: rgba(255, 40, 58, 0.12);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark-cards strong,
.contact-grid strong {
  display: block;
  color: var(--text);
  font-size: 22px;
}

.dark-cards small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.rating {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.rating b {
  color: #fff;
}

.dark-cards p {
  color: var(--muted);
  line-height: 1.5;
}

.dark-cards ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
  color: var(--text);
  font-weight: 800;
}

.dark-cards li::before {
  content: "+";
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 40, 58, 0.35);
  font-size: 11px;
}

.dark-cards article > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.dark-cards article > a::after {
  content: ">";
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.contact-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.auth-section {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.auth-card {
  display: grid;
  width: min(430px, 100%);
  gap: 14px;
  padding: 28px;
}

.auth-card h1 {
  font-size: 46px;
}

.otp-note {
  margin: 0;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 40, 58, 0.12);
  font-size: 13px;
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: #f7f7fb;
}

input[type="file"] {
  padding: 10px;
}

.image-control {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
}

.image-control > input[type="url"] {
  min-width: 0;
}

.preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #f7f7fb;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.preview-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.preview-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.image-preview {
  position: absolute;
  right: 10px;
  bottom: calc(100% + 8px);
  z-index: 2;
  width: 150px;
  height: 150px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-preview[hidden] {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--red-dark);
  font-weight: 800;
}

.admin-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 20px;
}

.admin-page > .form-error,
.admin-page > form:last-child {
  grid-column: 1 / -1;
}

.admin-form {
  align-self: start;
  display: grid;
  gap: 13px;
  padding: 22px;
}

.admin-products {
  display: grid;
  gap: 8px;
  max-height: 760px;
  overflow: auto;
}

.admin-products h2,
.admin-form h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.admin-products article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 9px;
}

.admin-products img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
}

.admin-products span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.admin-products button {
  padding: 9px 12px;
  color: #fff;
  background: var(--red-dark);
}

.banner-editor > form:first-of-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px;
}

.banner-editor > form:first-of-type input,
.banner-editor > form:first-of-type button {
  min-height: 36px;
  font-size: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-actions a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.floating-phone {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(255, 40, 58, 0.38);
  font-size: 0;
}

.floating-phone::before {
  content: "\260E";
  font-size: 25px;
  line-height: 1;
}

@keyframes slideTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
  }

  .category-bar {
    top: 112px;
  }

  .hero-section,
  .admin-page {
    grid-template-columns: 1fr;
  }

  .deal-slider {
    min-height: 460px;
  }

  .stats-strip,
  .product-grid,
  .dark-cards,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand small,
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .category-bar {
    top: 70px;
  }

  .hero-section {
    min-height: auto;
  }

  .image-control {
    grid-template-columns: 1fr 1fr;
  }

  .image-control > input[type="url"] {
    grid-column: 1 / -1;
  }

  .deal-slider {
    min-height: 380px;
  }

  .stats-strip,
  .product-grid,
  .dark-cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .site-footer,
  .admin-products article {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 12px;
  }

  .admin-products img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 10px;
  }
}

/* ── Homepage category grid ── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(40px,6vw,80px) clamp(16px,5vw,72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--line);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--text); }
.home-hero-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.home-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,40,58,0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-title {
  margin: 0 0 14px;
  font-size: clamp(32px,5vw,62px);
  line-height: 1.05;
  color: var(--text);
}
.home-sub {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px,1.5vw,17px);
  line-height: 1.6;
}
.slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.cat-section {
  padding: clamp(40px,5vw,72px) clamp(16px,5vw,72px);
}
.cat-section-head {
  margin-bottom: 32px;
  text-align: center;
}
.cat-section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(24px,3vw,36px);
  color: var(--text);
}
.cat-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.cat-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.cat-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f3f8;
}
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.cat-card:hover .cat-card-img img {
  transform: scale(1.04);
}
.cat-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.cat-card-label svg {
  flex-shrink: 0;
  color: var(--red);
}

/* ── Collection / product listing page ── */
.coll-hero {
  padding: 28px clamp(16px,5vw,72px) 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.back-link:hover { color: var(--text); }
.coll-title {
  margin: 0 0 4px;
  font-size: clamp(24px,4vw,42px);
  color: var(--text);
}
.coll-count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.coll-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  min-height: 60vh;
  padding: 32px clamp(16px,5vw,72px);
  align-items: start;
}
.coll-sidebar {
  padding-right: 28px;
  border-right: 1px solid var(--line);
  position: sticky;
  top: 88px;
}
.sidebar-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-link {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.sidebar-link:hover { background: #f3f3f8; }
.sidebar-link.active {
  background: rgba(255,40,58,0.08);
  color: var(--red);
  font-weight: 800;
}

.coll-products {
  padding-left: 32px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.prod-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.prod-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
.prod-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f3f8;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-info {
  padding: 14px 16px 16px;
}
.prod-info strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.prod-meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-hero-slider { aspect-ratio: 16/9; }
  .home-hero-copy { align-items: flex-start; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-body { grid-template-columns: 1fr; }
  .coll-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 16px;
    position: static;
  }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; }
  .coll-products { padding-left: 0; padding-top: 20px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Top filter bar ── */
.coll-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px clamp(16px,5vw,72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 62px;
  z-index: 15;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.filter-pill:hover {
  border-color: var(--red);
  color: var(--red);
}
.filter-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.coll-products-wrap {
  padding: 24px clamp(16px,5vw,72px) 48px;
}
