@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
  --ink: #1a1a1a;
  --muted: #7d7971;
  --line: #e8e2d5;
  --soft: #fbf9f4;
  --paper: #faf8f5;
  --gold: #c5a880;
  --gold-dark: #b5976c;
  --gold-light: #f4efe6;
  --danger: #b42318;
  --serif: "Playfair Display", Georgia, serif;
  --sans: Jost, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
input,
select {
  font: inherit;
}

.header {
  align-items: center;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.5rem;
  height: 64px;
  padding: 0 clamp(1rem, 2vw, 2rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.menu-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 22px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.desktop-nav,
.header-actions {
  align-items: center;
  display: flex;
  gap: 1.2rem;
}

.desktop-nav {
  flex: 1;
  justify-content: center;
}

.desktop-nav a,
.header-actions a,
.mobile-nav a,
.link-button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 200ms ease;
}

.desktop-nav a:hover,
.header-actions a:hover,
.mobile-nav a:hover,
.link-button:hover {
  color: var(--gold-dark);
}

.mobile-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  display: none;
  gap: 0.25rem;
  left: 0;
  padding: 0.75rem 1rem 1rem;
  position: absolute;
  right: 0;
  top: 64px;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
}

.mobile-nav.open {
  display: grid;
}

main {
  margin: 0 auto;
  max-width: 1600px;
  min-height: 70vh;
  padding: clamp(1rem, 2vw, 2rem);
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 250ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
}

.button:not(.button-dark):hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  background: var(--soft);
  border: 1px solid var(--line);
  min-height: min(760px, calc(100vh - 80px));
  overflow: hidden;
  padding: clamp(1.25rem, 5vw, 4rem);
  position: relative;
}

.hero-copy {
  display: grid;
  min-height: calc(min(760px, 100vh - 80px) - 8rem);
  max-width: 620px;
  place-content: end start;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.9;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 680px;
}

.hero-image {
  inset: 0;
  position: absolute;
}

.hero-image img {
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  width: 100%;
}

.hero-note {
  align-items: center;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  max-width: calc(100% - 3rem);
  padding: 1rem 1.25rem;
  position: absolute;
  right: 1.5rem;
  width: min(430px, calc(100% - 3rem));
  z-index: 3;
  transition: border-color 200ms ease;
}

.hero-note:hover {
  border-color: var(--gold);
}

.section {
  padding-top: clamp(2.25rem, 6vw, 5rem);
}

.compact-section {
  padding-top: clamp(1.75rem, 4vw, 3rem);
}

.section-heading,
.listing-toolbar {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.section h2,
.listing-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.rail {
  display: grid;
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
  grid-auto-columns: clamp(220px, 23vw, 320px);
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.carousel-shell {
  --carousel-card-width: clamp(220px, 23vw, 320px);
  --carousel-image-height: calc(var(--carousel-card-width) * 1.25);
  position: relative;
}

.category-links {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-link {
  border: 1px solid var(--line);
  background: var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 1rem 1.25rem;
  transition: all 250ms ease;
}

.category-link span {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.category-link small {
  color: var(--muted);
  font-size: 0.75rem;
}

.category-link:hover {
  border-color: var(--gold);
  background: var(--paper);
  transform: translateY(-2px);
}

.carousel-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.18);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.45rem;
  height: 2.35rem;
  justify-content: center;
  position: absolute;
  top: calc(var(--carousel-image-height) / 2);
  transform: translateY(-50%);
  z-index: 2;
  width: 2.35rem;
}

.carousel-button:hover {
  background: var(--ink);
  color: white;
}

.carousel-button-left {
  left: 0.75rem;
}

.carousel-button-right {
  right: 0.75rem;
}

.product-card {
  background: var(--paper);
  display: block;
  min-width: 0;
  scroll-snap-align: start;
}

.product-card-media {
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: border-color 300ms ease;
}

.product-card:hover .product-card-media {
  border-color: var(--gold);
}

.product-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.product-card:hover img {
  transform: scale(1.04);
}

.badges {
  display: flex;
  gap: 0.35rem;
  left: 0.55rem;
  position: absolute;
  top: 0.55rem;
  z-index: 4;
}

.badges span {
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-copy {
  padding-top: 0.75rem;
}

.vendor,
.details {
  color: var(--muted);
  font-size: 0.75rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.vendor {
  font-weight: 600;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0.35rem 0 0.35rem;
  transition: color 200ms ease;
}

.product-card:hover h3 {
  color: var(--gold-dark);
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.4rem;
  color: var(--gold-dark);
}

.price s {
  color: var(--muted);
  font-weight: 400;
}

.trust-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 3.5rem;
}

.trust-section h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--gold-dark);
}

.trust-section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0;
}

.listing-hero p {
  color: var(--muted);
  line-height: 1.65;
}

.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  background: var(--soft);
  border: 1px solid var(--line);
  display: block;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 250ms ease;
}

.info-card:hover {
  border-color: var(--gold);
  background: var(--paper);
  transform: translateY(-2px);
}

.info-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.info-card p,
.content-page p,
.content-page address {
  color: var(--muted);
  line-height: 1.75;
}

.content-page {
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.content-page h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 0 0 1.25rem;
}

.content-page h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.contact-page-grid {
  display: grid;
  gap: clamp(1rem, 4vw, 3rem);
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  margin-top: 2rem;
}

.contact-page-grid address {
  font-style: normal;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.listing-hero {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem 0 1.5rem;
}

.listing-layout {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 280px minmax(0, 1fr);
}

.filter-panel {
  border: 1px solid var(--line);
  position: sticky;
  top: 80px;
}

.filter-panel summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 1rem;
}

.filter-panel summary::-webkit-details-marker {
  display: none;
}

.filter-panel summary span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-panel summary small {
  color: var(--muted);
  font-size: 0.78rem;
}

.filter-panel summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 0.75rem;
}

.filter-panel[open] summary {
  border-bottom: 1px solid var(--line);
}

.filter-panel[open] summary::after {
  content: "-";
}

.filter-body {
  padding: 0 1rem 1rem;
}

.filter-body label,
.filter-panel fieldset {
  border: 0;
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 0;
}

.filter-body span,
.filter-panel legend {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-panel input,
.filter-panel select,
.listing-toolbar select {
  border: 1px solid var(--line);
  min-height: 42px;
  padding: 0.5rem;
}

.products-grid {
  display: grid;
  gap: 1.35rem 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pdp-page {
  display: grid;
  gap: 1.5rem;
}

.breadcrumbs {
  color: var(--muted);
}

.product-detail {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  grid-template-columns: minmax(0, 54%) minmax(390px, 1fr);
}

.product-media-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 90px minmax(0, 1fr);
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.thumbs button {
  aspect-ratio: 3 / 4;
  background: #f3f4f6;
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.thumbs img,
.main-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.main-image {
  aspect-ratio: 3 / 4;
  background: #f3f4f6;
  border: 1px solid var(--line);
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
}

.main-image img {
  object-fit: contain;
}

.product-panel h1 {
  font-size: clamp(1.85rem, 2.2vw, 2.35rem);
  line-height: 1.18;
  margin: 0;
}

.pdp-price {
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  font-weight: 700;
  margin: 1rem 0 0;
}

.tax,
.short-description {
  color: var(--muted);
}

.delivery-card {
  background: #f6f7f9;
  border: 1px solid var(--line);
  color: var(--muted);
  margin-top: 1rem;
  padding: 0.9rem 1rem;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0 1rem;
}

.option {
  background: #f7f7f7;
  border: 1px solid var(--line);
  cursor: pointer;
  min-height: 48px;
  min-width: 56px;
  padding: 0.55rem 0.85rem;
}

.option.active {
  border-color: var(--ink);
  background: white;
}

.purchase-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 112px minmax(0, 1fr) 76px;
  margin-top: 1.25rem;
}

.qty {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr 36px;
}

.qty button {
  background: white;
  border: 0;
  cursor: pointer;
}

.qty span {
  align-self: center;
  text-align: center;
}

.wishlist-button {
  background: white;
  border: 1px solid var(--line);
}

.contact-row {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.2rem;
  padding: 0.95rem 0;
}

.contact-row a {
  align-items: center;
  background: #f7f7f7;
  display: inline-flex;
  gap: 0.45rem;
  font-weight: 700;
  justify-content: center;
  padding: 0.8rem;
  text-align: center;
}

.whatsapp-icon {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  height: 1.3rem;
  justify-content: center;
  width: 1.3rem;
}

.call-icon {
  align-items: center;
  border-radius: 0.32rem;
  display: inline-flex;
  height: 1.35rem;
  justify-content: center;
  overflow: hidden;
  width: 1.35rem;
}

.call-icon img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.whatsapp-icon svg {
  display: block;
  fill: currentColor;
  height: 0.95rem;
  width: 0.95rem;
}

.detail-table {
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}

.detail-table div {
  display: grid;
  gap: 1rem;
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 1rem;
}

.detail-table div + div {
  border-top: 1px solid var(--line);
}

.detail-table span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-copy {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  max-width: 980px;
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.seo-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.seo-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.related-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer {
  background: var(--ink);
  color: #f7f5f0;
  margin-top: 4rem;
  border-top: 1px solid var(--gold);
}

.footer-inner {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 4rem clamp(1rem, 3vw, 2.5rem);
}

.footer p {
  color: rgba(247, 245, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 0.5rem;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.footer a {
  color: rgba(247, 245, 240, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 200ms ease;
}

.footer a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  gap: 1.25rem;
}

.drawer {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 250ms ease;
  z-index: 20;
}

.drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  background: var(--paper);
  border-left: 1px solid var(--line);
  height: 100%;
  margin-left: auto;
  max-width: 430px;
  overflow: auto;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header,
.cart-line,
.cart-total {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 0;
}

.drawer-header strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}

.cart-line img {
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
  width: 76px;
}

.cart-line strong {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.cart-total strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-dark);
}

.cart-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cart-actions a,
.cart-actions button {
  text-align: center;
}

.payment-info {
  background: var(--soft);
  border: 1px solid var(--line);
  margin-top: 1.25rem;
  padding: 1.25rem;
}

.payment-info h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}

.payment-info p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.lightbox {
  align-items: center;
  background: rgba(10, 10, 10, 0.94);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 2rem;
  position: fixed;
  z-index: 30;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: calc(100vh - 4rem);
  max-width: 100%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 3rem;
  position: absolute;
}

.lightbox-close {
  font-size: 1.5rem;
  right: 1.5rem;
  top: 1rem;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.empty {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem;
}

.cart-empty-info h3 {
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.cart-empty-info p {
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .header {
    gap: 0.75rem;
    justify-content: space-between;
  }

  .header-actions {
    gap: 0.85rem;
    margin-left: auto;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .hero {
    display: grid;
    gap: 1.25rem;
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    min-height: 0;
    order: 1;
    padding: 1.25rem 0 0.25rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
    margin-bottom: 0.8rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.2rem;
  }

  .hero-copy .button {
    display: inline-flex;
    width: fit-content;
  }

  .hero-image {
    aspect-ratio: 4 / 4.7;
    order: 2;
    position: relative;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-note {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }

  .listing-layout,
  .listing-hero,
  .product-detail,
  .trust-section,
  .info-grid,
  .contact-page-grid,
  .category-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-media-layout,
  .detail-table div {
    grid-template-columns: 1fr;
  }

  .thumbs {
    flex-direction: row;
    overflow-x: auto;
    order: 2;
  }

  .thumbs button {
    flex: 0 0 78px;
  }

  .footer-inner,
  .footer-contact {
    display: grid;
  }
}

@media (max-width: 560px) {
  main {
    padding: 0.85rem;
  }

  .brand {
    font-size: 1.65rem;
  }

  .header-actions {
    gap: 0.7rem;
  }

  .link-button {
    font-size: 0.72rem;
  }

  .section-heading {
    align-items: start;
  }

  .section h2,
  .listing-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .rail {
    grid-auto-columns: 100%;
  }

  .carousel-shell {
    --carousel-card-width: calc(100vw - 1.7rem);
    --carousel-image-height: calc(var(--carousel-card-width) * 1.2875);
  }

  .rail .product-card-media {
    aspect-ratio: 4 / 5.15;
  }

  .carousel-button {
    top: calc(var(--carousel-image-height) / 2);
  }

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .contact-row,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .category-link {
    min-height: 52px;
  }

  .drawer-panel {
    max-width: 100%;
  }
}

.nav-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}
.nav-whatsapp .whatsapp-icon {
  height: 1.1rem;
  width: 1.1rem;
}
.nav-whatsapp .whatsapp-icon svg {
  height: 0.75rem;
  width: 0.75rem;
}

.header-whatsapp-mobile {
  display: none !important;
}

@media (max-width: 900px) {
  .header-whatsapp-mobile {
    display: inline-flex !important;
  }
}

@media (max-width: 600px) {
  .header-whatsapp-mobile span {
    display: none !important;
  }
}

/* Mobile Category Carousel */
.mobile-category-carousel {
  display: none;
}

@media (max-width: 900px) {
  .mobile-category-carousel {
    display: flex;
    gap: 1.15rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.25rem;
  }
  .mobile-category-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .category-bubble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 72px;
    cursor: pointer;
  }
  
  .bubble-image-container {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--soft);
    aspect-ratio: 1 / 1;
    transition: border-color 200ms ease;
  }
  
  .category-bubble-item:hover .bubble-image-container {
    border-color: var(--gold);
  }
  
  .bubble-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .category-bubble-item span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink);
    margin-top: 0.45rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
}
