:root {
  --ink: #2f2024;
  --muted: #725a60;
  --gold: #b9823e;
  --line: #e7e0d8;
  --surface: #fbfaf8;
  --card: #ffffff;
  --accent: #7b0715;
  --soft: #f4f1ed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 280px),
    #f7f5f2;
}

body.modal-open {
  overflow: hidden;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 52px;
}

.brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 4px;
  text-align: center;
}

.brand-logo {
  width: 134px;
  height: 134px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 0 rgba(33, 31, 31, 0.06), 0 12px 30px rgba(33, 31, 31, 0.08);
}

h1 {
  margin: 0;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.92rem, 7.8vw, 4.35rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.language-switch {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(33, 31, 31, 0.06);
}

.language-button {
  min-width: 82px;
  min-height: 36px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
}

.language-button.is-active {
  color: #fff;
  background: var(--accent);
}

.language-button:focus-visible {
  outline: 3px solid rgba(185, 130, 62, 0.32);
  outline-offset: -3px;
}

.payment-note {
  margin: 2px 0 0;
  padding: 8px 13px;
  border: 1px solid #d8eadb;
  border-radius: 8px;
  color: #31573d;
  background: #f1f8f2;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.filters {
  margin: 0 0 22px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(33, 31, 31, 0.04), 0 10px 22px rgba(33, 31, 31, 0.06);
  font-size: 0.94rem;
  font-weight: 900;
}

.filter-toggle:hover,
.filter-toggle:focus-visible,
.filter-toggle[aria-expanded="true"] {
  outline: 0;
  color: #fff;
  background: var(--accent);
}

.filter-toggle[aria-expanded="true"] .filter-mark {
  color: var(--accent);
  background: #fff;
}

.filter-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: var(--soft);
}

.filter-mark svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.filter-panel {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(33, 31, 31, 0.08);
  backdrop-filter: blur(12px);
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) minmax(170px, 220px) auto;
  align-items: end;
  gap: 10px;
}

.filter-group {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.filter-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-inputs {
  display: grid;
  grid-template-columns: auto minmax(78px, 1fr) auto minmax(78px, 1fr);
  align-items: center;
  gap: 7px;
}

.currency-chip {
  display: inline-grid;
  min-height: 34px;
  min-width: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.price-separator {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-input {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.filter-input[type="number"] {
  padding: 7px 9px;
}

select.filter-input {
  min-height: 48px;
  padding: 8px 34px 8px 12px;
  border: 1px solid var(--line);
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%) right 16px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--accent) 50%, transparent 50%) right 11px center / 7px 7px no-repeat,
    #fff;
}

.filter-input:focus {
  outline: 3px solid rgba(185, 130, 62, 0.24);
  outline-offset: 1px;
}

.clear-filters {
  min-height: 50px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  background: #fff;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
}

.clear-filters:hover,
.clear-filters:focus-visible {
  outline: 0;
  color: #fff;
  background: var(--accent);
}

.filter-summary {
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.saree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
  justify-content: center;
  gap: 20px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 1px 0 rgba(33, 31, 31, 0.04), 0 10px 24px rgba(33, 31, 31, 0.055);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  outline: 0;
  border-color: #d6cbc1;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(33, 31, 31, 0.10);
}

.product-card:hover::before,
.product-card:focus-visible::before {
  opacity: 1;
}

.product-card.is-spinning {
  animation: spin-card 650ms ease-in-out 1;
}

@keyframes spin-card {
  0% {
    transform: rotateY(0deg) scale(1);
  }

  45% {
    transform: rotateY(180deg) scale(1.04);
  }

  100% {
    transform: rotateY(360deg) scale(1);
  }
}

.saree-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--soft);
  transition: background-size 220ms ease, filter 220ms ease;
}

.card-image-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  animation: card-image-scroll 13s ease-in-out infinite;
  animation-delay: var(--carousel-delay, 0s);
}

.card-image-slide {
  flex: 0 0 33.333%;
  background: var(--soft) url("../images/PEG_1.png") center / contain no-repeat;
  transition: transform 220ms ease, filter 220ms ease;
}

.card-image-slide-2 {
  background-image: url("../images/PEG_2.png");
  background-size: cover;
}

.card-image-slide-3 {
  background-image: url("../images/PEG_3.png");
  background-size: cover;
}

@keyframes card-image-scroll {
  0%,
  18% {
    transform: translateX(0);
  }

  25%,
  43% {
    transform: translateX(-33.333%);
  }

  50%,
  68% {
    transform: translateX(-66.666%);
  }

  75%,
  93% {
    transform: translateX(-66.666%);
  }

  100% {
    transform: translateX(0);
  }
}

.saree-image::before,
.saree-image::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 58% 42% 50% 50%;
  transform: rotate(-18deg);
}

.saree-image::before {
  box-shadow:
    inset 18px 0 24px rgba(255, 255, 255, 0.28),
    inset -18px 0 22px rgba(0, 0, 0, 0.14),
    0 18px 35px rgba(31, 18, 18, 0.20);
}

.saree-image::after {
  inset: 18% 22% 10% 39%;
  border-radius: 50% 50% 12% 28%;
  transform: rotate(16deg);
  opacity: 0.86;
}

.product-name {
  display: grid;
  min-height: 78px;
  align-content: center;
  gap: 6px;
  margin: 0;
  padding: 14px 15px 15px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.product-title {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-price {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
}

.saree-1 {
  background:
    linear-gradient(135deg, transparent 0 62%, rgba(198, 139, 47, 0.82) 62% 68%, transparent 68%),
    radial-gradient(circle at 72% 26%, rgba(255, 229, 156, 0.65) 0 4%, transparent 4.6%),
    #fff2e5;
}

.saree-1::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 225, 142, 0.55) 0 7px, transparent 7px 20px),
    linear-gradient(135deg, #8f071c, #d72242 58%, #5e0717);
}

.saree-1::after {
  background: linear-gradient(120deg, #e6b84f, #8f071c 35%, #f7d88a);
}

.saree-2 {
  background: linear-gradient(145deg, #fff7df, #f1dec0);
}

.saree-2::before {
  background:
    repeating-linear-gradient(0deg, rgba(111, 23, 10, 0.18) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #d49a22, #ffe27b 48%, #a65e13);
}

.saree-2::after {
  background: linear-gradient(120deg, #801b1f, #f5c651 46%, #8d111b);
}

.saree-3 {
  background: linear-gradient(135deg, #e8faf1, #d7edf5);
}

.saree-3::before {
  background:
    repeating-linear-gradient(90deg, rgba(18, 72, 76, 0.22) 0 2px, transparent 2px 13px),
    linear-gradient(135deg, #57b78d, #a4d7b5 54%, #19786a);
}

.saree-3::after {
  background: linear-gradient(120deg, #124b66, #e9d267 42%, #1f7066);
}

.saree-4 {
  background: linear-gradient(145deg, #fff0f6, #f2e8ff);
}

.saree-4::before {
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.7) 0 4px, transparent 5px),
    radial-gradient(circle at 63% 53%, rgba(255, 255, 255, 0.62) 0 4px, transparent 5px),
    linear-gradient(135deg, #df5184, #9d62c7 54%, #5c2c8e);
}

.saree-4::after {
  background: linear-gradient(120deg, #f4bfd1, #92356e 45%, #b987d9);
}

.saree-5 {
  background: linear-gradient(145deg, #fbf1dc, #f4e6c6);
}

.saree-5::before {
  background:
    repeating-linear-gradient(45deg, rgba(94, 57, 24, 0.13) 0 5px, transparent 5px 15px),
    linear-gradient(135deg, #b67938, #d4ad68 55%, #74421f);
}

.saree-5::after {
  background: linear-gradient(120deg, #722d1d, #d9bd73 48%, #4d5f4a);
}

.saree-6 {
  background: linear-gradient(135deg, #f9eff4, #fff9ed);
}

.saree-6::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 216, 229, 0.9) 0 6px, transparent 7px),
    radial-gradient(circle at 60% 44%, rgba(255, 216, 229, 0.82) 0 7px, transparent 8px),
    radial-gradient(circle at 44% 68%, rgba(255, 216, 229, 0.76) 0 6px, transparent 7px),
    linear-gradient(135deg, #2d6b68, #3bb0a6 50%, #124845);
}

.saree-6::after {
  background: linear-gradient(120deg, #f3b0c2, #2d6b68 45%, #f5d17d);
}

.saree-7 {
  background: linear-gradient(145deg, #eef6f3, #fff4d8);
}

.saree-7::before {
  background:
    repeating-linear-gradient(90deg, rgba(241, 212, 116, 0.44) 0 4px, transparent 4px 18px),
    linear-gradient(135deg, #ebead2, #86a996 52%, #456a58);
}

.saree-7::after {
  background: linear-gradient(120deg, #d2a23b, #476857 45%, #f0df9d);
}

.saree-8 {
  background: linear-gradient(145deg, #f7f4ff, #eff8ff);
}

.saree-8::before {
  background:
    radial-gradient(circle at 30% 34%, rgba(211, 184, 255, 0.72) 0 5px, transparent 6px),
    radial-gradient(circle at 61% 57%, rgba(255, 222, 143, 0.84) 0 5px, transparent 6px),
    linear-gradient(135deg, rgba(205, 220, 255, 0.65), rgba(101, 110, 188, 0.58) 55%, rgba(58, 61, 130, 0.7));
}

.saree-8::after {
  background: linear-gradient(120deg, rgba(245, 213, 134, 0.95), rgba(89, 71, 158, 0.84) 45%, rgba(224, 232, 255, 0.9));
}

.saree-9 {
  background: linear-gradient(135deg, #fff3ee, #eaf5f0);
}

.saree-9::before {
  background:
    repeating-linear-gradient(45deg, rgba(255, 230, 126, 0.75) 0 5px, transparent 5px 16px),
    repeating-linear-gradient(-45deg, rgba(20, 116, 108, 0.45) 0 4px, transparent 4px 18px),
    linear-gradient(135deg, #b51f30, #d55b38 48%, #19746a);
}

.saree-9::after {
  background: linear-gradient(120deg, #12776f, #f2c856 42%, #b71f31);
}

.saree-10 {
  background: linear-gradient(145deg, #fff1db, #f7e4f2);
}

.saree-10::before {
  background:
    radial-gradient(circle at 34% 36%, rgba(255, 214, 91, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 64%, rgba(255, 214, 91, 0.8) 0 4px, transparent 5px),
    linear-gradient(135deg, #6d1656, #b82972 53%, #42113b);
}

.saree-10::after {
  background: linear-gradient(120deg, #1b7a74, #f0b53f 45%, #6d1656);
}

.saree-11 {
  background: linear-gradient(135deg, #ecf5ff, #fff4df);
}

.saree-11::before {
  background:
    repeating-linear-gradient(0deg, rgba(255, 245, 191, 0.5) 0 3px, transparent 3px 18px),
    linear-gradient(135deg, #2f66a6, #78b7db 52%, #133f72);
}

.saree-11::after {
  background: linear-gradient(120deg, #f0ca67, #23518a 44%, #78b7db);
}

.saree-12 {
  background: linear-gradient(145deg, #fff9ed, #edf7f0);
}

.saree-12::before {
  background:
    repeating-linear-gradient(90deg, rgba(91, 49, 32, 0.12) 0 3px, transparent 3px 14px),
    linear-gradient(135deg, #d86b46, #f0a66f 55%, #a9422e);
}

.saree-12::after {
  background: linear-gradient(120deg, #5c7b48, #f3cb7b 44%, #c34f39);
}

.product-card .saree-image,
.modal-image {
  background: var(--soft) url("../images/PEG_1.png") center / contain no-repeat;
}

.modal-image.view-2 {
  background-image: url("../images/PEG_2.png");
}

.modal-image.view-3 {
  background-image: url("../images/PEG_3.png");
}

.product-card:hover .saree-image,
.product-card:focus-visible .saree-image {
  filter: saturate(1.02) contrast(1.02);
}

.product-card:hover .card-image-slide,
.product-card:focus-visible .card-image-slide {
  transform: scale(1.04);
}

.product-card .saree-image::before,
.product-card .saree-image::after,
.modal-image::before,
.modal-image::after {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  position: relative;
}

.copyright-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-link {
  position: absolute;
  right: 0;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(123, 7, 21, 0.18);
  border-radius: 8px;
  color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 22px rgba(33, 31, 31, 0.07);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  outline: 0;
  border-color: rgba(123, 7, 21, 0.34);
  background: #fff8f6;
  box-shadow: 0 12px 26px rgba(33, 31, 31, 0.10);
  transform: translateY(-2px);
}

.contact-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-modal.is-hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 31, 31, 0.54);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(33, 31, 31, 0.28);
}

.modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 54px);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  margin: 14px 14px -54px auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.modal-close:focus-visible {
  outline: 3px solid rgba(185, 130, 62, 0.32);
  outline-offset: 2px;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 68px 24px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) var(--soft);
}

.modal-image {
  flex: 0 0 min(420px, calc(100vw - 96px));
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(33, 31, 31, 0.10);
  scroll-snap-align: center;
}

.modal-image.view-2::before {
  inset: 16% 10% 11% 17%;
  transform: rotate(-8deg);
}

.modal-image.view-2::after {
  inset: 12% 43% 12% 18%;
  transform: rotate(-24deg);
}

.modal-image.view-3::before {
  inset: 18% 14% 10% 14%;
  transform: rotate(8deg) scale(0.92);
}

.modal-image.view-3::after {
  inset: 14% 17% 52% 16%;
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-4deg);
}

.modal-image.view-4::before {
  inset: 10% 18% 18% 10%;
  transform: rotate(-31deg) scale(1.02);
}

.modal-image.view-4::after {
  inset: 46% 14% 10% 30%;
  transform: rotate(31deg);
}

.modal-content {
  padding: 2px 28px 28px;
}

.modal-content h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  font-weight: 760;
  line-height: 1.05;
}

.modal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

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

.product-meta div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-meta dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.modal-cost {
  margin-top: 16px !important;
  color: var(--ink) !important;
  font-size: 1.22rem !important;
  font-weight: 800;
}

.modal-payment-note {
  display: inline-block;
  margin-top: 12px !important;
}

.order-box {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.order-title {
  margin-bottom: 12px !important;
  color: var(--ink) !important;
  font-weight: 800;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 12px 24px rgba(33, 31, 31, 0.10);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.order-link:hover,
.order-link:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(33, 31, 31, 0.14);
}

.order-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.order-link.is-disabled:hover,
.order-link.is-disabled:focus-visible {
  transform: none;
  box-shadow: 0 12px 24px rgba(33, 31, 31, 0.10);
}

.whatsapp-link {
  background: #167a44;
}

.instagram-link {
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
}

.order-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-link .order-icon path:first-child {
  fill: currentColor;
  opacity: 0.18;
}

.whatsapp-link .order-icon path:last-child,
.instagram-link .order-icon rect,
.instagram-link .order-icon circle {
  fill: none;
  stroke: currentColor;
}

@media (max-width: 900px) {
  .filter-controls {
    grid-template-columns: 1fr 1fr auto;
  }

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

  .product-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 20px, 420px);
    padding-top: 24px;
  }

  .brand {
    padding-top: 48px;
  }

  .language-switch {
    top: 0;
    right: 0;
  }

  .brand-logo {
    width: 122px;
    height: 122px;
  }

  .filters {
    margin-top: -2px;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    align-items: flex-start;
    justify-content: space-between;
  }

  .filter-summary {
    white-space: normal;
  }

  .price-inputs {
    grid-template-columns: auto 1fr;
  }

  .price-separator {
    display: none;
  }

  .saree-grid {
    grid-template-columns: minmax(240px, 360px);
    gap: 14px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column-reverse;
  }

  .contact-link {
    position: static;
  }

  .product-name {
    min-height: 72px;
    padding: 10px 8px;
    font-size: 0.86rem;
  }

  .product-modal {
    padding: 10px;
  }

  .gallery-track {
    gap: 12px;
    padding: 64px 14px 18px;
  }

  .modal-image {
    flex-basis: calc(100vw - 48px);
  }

  .modal-content {
    padding: 0 18px 24px;
  }
}
