:root {
  --ink: #130b09;
  --muted: #7c6c61;
  --line: #e9cf9d;
  --paper: #fff8ee;
  --soft: #f5e4d1;
  --rose: #982342;
  --rose-dark: #5b1028;
  --marigold: #d9a441;
  --teal: #115c54;
  --wine: #260813;
  --velvet: #12060b;
  --gold-soft: #f6df9a;
  --shadow: 0 34px 100px rgba(32, 11, 12, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 164, 65, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 36%, rgba(152, 35, 66, 0.12), transparent 32rem),
    linear-gradient(180deg, #fff8ee 0%, #fff0e4 42%, #fff9f3 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(58, 15, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 15, 31, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 72%, transparent);
}

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

button,
input,
select {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none !important;
}

img {
  display: block;
  width: 100%;
}

.announcement {
  overflow: hidden;
  background: linear-gradient(90deg, #12060b, var(--wine), #3a101a, #12060b);
  color: #fff7ee;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  padding: 0.7rem 0;
  animation: marquee 26s linear infinite;
}

.announcement-track span {
  white-space: nowrap;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 238, 0.78);
  border-bottom: 1px solid rgba(217, 164, 65, 0.28);
  box-shadow: 0 18px 52px rgba(38, 8, 19, 0.08);
  backdrop-filter: blur(24px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.95rem 1.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand-logo {
  width: clamp(188px, 18vw, 250px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(58, 15, 31, 0.12));
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--wine));
  color: white;
  box-shadow: 0 12px 24px rgba(168, 63, 85, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #4e3834;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--rose);
  content: "";
  transition: width 0.22s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn,
.cart-button {
  display: inline-grid;
  position: relative;
  min-width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.icon-btn:hover,
.cart-button:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 63, 85, 0.42);
  background: white;
}

svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0 1rem;
}

.count,
.cart-button b {
  display: grid;
  min-width: 1.12rem;
  height: 1.12rem;
  place-items: center;
  border-radius: 999px;
  background: var(--marigold);
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  background: currentColor;
}

.hero {
  display: grid;
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  align-items: end;
  isolation: isolate;
  padding: clamp(7rem, 14vw, 11rem) 1.3rem 2.4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 6, 11, 0.94), rgba(38, 8, 19, 0.72) 44%, rgba(18, 6, 11, 0.22)),
    linear-gradient(0deg, rgba(18, 6, 11, 0.78), transparent 58%);
  content: "";
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  to { transform: scale(1.1) translateX(1.2rem); }
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(246, 223, 154, 0.34), transparent 18rem),
    radial-gradient(circle at 86% 72%, rgba(152, 35, 66, 0.32), transparent 22rem),
    linear-gradient(115deg, transparent 0 54%, rgba(246, 223, 154, 0.12) 54% 54.4%, transparent 54.4%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(27, 19, 16, 0.72));
  content: "";
}

.hero-saree-gallery {
  position: absolute;
  inset: 4.8rem max(1.3rem, calc((100vw - 1240px) / 2)) 3.6rem auto;
  z-index: -1;
  width: min(46vw, 610px);
  pointer-events: none;
}

.saree-panel {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(246, 223, 154, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.saree-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27, 19, 16, 0.38));
  content: "";
}

.saree-panel img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.panel-one {
  top: 8%;
  right: 15%;
  width: 54%;
  aspect-ratio: 4 / 5;
  animation: floatSaree 7s ease-in-out infinite alternate;
}

.panel-two {
  top: 30%;
  right: 0;
  width: 42%;
  aspect-ratio: 4 / 5.3;
  opacity: 0.9;
  animation: floatSaree 8s ease-in-out 0.6s infinite alternate;
}

.panel-three {
  bottom: 2%;
  right: 36%;
  width: 36%;
  aspect-ratio: 4 / 4.8;
  opacity: 0.82;
  animation: floatSaree 9s ease-in-out 1.1s infinite alternate;
}

@keyframes floatSaree {
  from { transform: translateY(0); }
  to { transform: translateY(-14px); }
}

.hero-content {
  width: min(680px, 100%);
  max-width: 1240px;
  margin: 0 auto;
  color: white;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.craft-copy h2,
.newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(4rem, 11vw, 9rem);
  max-width: 780px;
  color: #fff4dc;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn {
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(246, 223, 154, 0.4);
  background: linear-gradient(135deg, #b83254, var(--wine) 68%, #12060b);
  color: white;
  box-shadow: 0 20px 44px rgba(38, 8, 19, 0.34);
}

.secondary-btn {
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(246, 223, 154, 0.52);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.hero-card {
  position: absolute;
  right: max(1.3rem, calc((100vw - 1240px) / 2));
  bottom: 2.4rem;
  width: min(300px, calc(100% - 2.6rem));
  padding: 1.1rem;
  border: 1px solid rgba(246, 223, 154, 0.52);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(246, 223, 154, 0.08), rgba(38, 8, 19, 0.28));
  color: white;
  backdrop-filter: blur(18px);
}

.couture-note {
  position: absolute;
  right: max(1.3rem, calc((100vw - 1240px) / 2 + 330px));
  bottom: 2.4rem;
  width: min(230px, calc(100% - 2.6rem));
  padding: 1rem;
  border: 1px solid rgba(246, 223, 154, 0.4);
  border-radius: 8px;
  background: rgba(18, 6, 11, 0.32);
  color: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.couture-note span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(246, 223, 154, 0.58);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.couture-note strong,
.couture-note small {
  display: block;
}

.couture-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.couture-note small {
  margin-top: 0.25rem;
  color: rgba(255, 247, 238, 0.78);
  line-height: 1.45;
}

.hero-card span,
.hero-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card strong {
  display: block;
  margin: 0.25rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.promise-strip,
.section,
.craft-band,
.newsletter,
.footer {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 1.3rem;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(217, 164, 65, 0.7), rgba(152, 35, 66, 0.28));
  box-shadow: 0 24px 70px rgba(38, 8, 19, 0.1);
}

.promise-strip div {
  padding: 1.25rem;
  background: rgba(255, 253, 248, 0.88);
}

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

.promise-strip span {
  margin-top: 0.2rem;
  color: var(--muted);
}

.section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.craft-copy h2,
.newsletter h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.section-heading h2 {
  color: #21100f;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.collection-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 26px 70px rgba(38, 8, 19, 0.14);
}

.collection-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.collection-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 6, 11, 0.76), transparent 62%);
  content: "";
}

.collection-tile span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.collection-tile:hover img {
  transform: scale(1.08);
}

.products-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: clamp(3.5rem, 6vw, 5rem);
  padding-block: clamp(4.5rem, 8vw, 7rem) 4rem;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.9), rgba(255, 241, 222, 0.8)),
    linear-gradient(90deg, rgba(38, 8, 19, 0.1), rgba(217, 164, 65, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 30px 90px rgba(38, 8, 19, 0.1);
}

.products-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 164, 65, 0.16), transparent 22rem),
    radial-gradient(circle at 84% 44%, rgba(159, 41, 70, 0.12), transparent 26rem);
  content: "";
}

.premium-product-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.premium-product-backdrop img {
  position: absolute;
  width: min(28vw, 360px);
  min-width: 220px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.14;
  filter: saturate(1.1) contrast(1.06);
  box-shadow: var(--shadow);
}

.premium-product-backdrop img:first-child {
  top: 1.2rem;
  right: 2%;
  transform: rotate(5deg);
}

.premium-product-backdrop img:last-child {
  left: 2%;
  bottom: 0.4rem;
  transform: rotate(-4deg);
}

.product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-tabs button,
.sort-select select {
  min-height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.filter-tabs button {
  padding: 0 1rem;
}

.filter-tabs button.active {
  border-color: var(--rose);
  background: var(--rose);
  color: white;
}

.sort-select {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
}

.sort-select select {
  padding: 0 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  box-shadow: 0 24px 70px rgba(38, 8, 19, 0.1);
}

.product-empty-state h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.product-empty-state p:last-child {
  margin: 0.8rem auto 0;
  max-width: 460px;
  color: var(--muted);
  line-height: 1.6;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 237, 0.9));
  box-shadow: 0 24px 70px rgba(38, 8, 19, 0.14);
  backdrop-filter: blur(14px);
  transform-origin: center;
  animation: productIn 0.35s ease both;
}

@keyframes productIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.product-card.sold-out .product-image img {
  filter: saturate(0.55) contrast(0.92);
}

.product-card.sold-out::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(18, 6, 11, 0.08));
  content: "";
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(246, 223, 154, 0.34);
  background: linear-gradient(135deg, var(--wine), #6f1b31);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.stock-ribbon {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  border: 1px solid rgba(246, 223, 154, 0.44);
  border-radius: 999px;
  background: rgba(18, 6, 11, 0.78);
  color: #fff7ee;
  padding: 0.38rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.sold-out .stock-ribbon {
  background: linear-gradient(135deg, #4d4240, #140b0b);
}

.wishlist-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
}

.wishlist-btn.active {
  border-color: var(--rose);
  background: var(--rose);
  color: white;
}

.quick-btn {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  min-height: 2.7rem;
  border: 0;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.38);
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-card:hover .quick-btn,
.product-card:focus-within .quick-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 1rem;
}

.product-info small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-info h3 {
  min-height: 3.05rem;
  margin: 0.35rem 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.18;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.price-row strong {
  color: var(--rose-dark);
}

.price-row del {
  color: var(--muted);
}

.add-btn {
  width: 100%;
}

.craft-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.craft-image {
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.38);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.craft-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.craft-copy p:not(.eyebrow),
.footer p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.craft-copy ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.craft-copy li {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  padding: 1.25rem;
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(61, 38, 25, 0.06);
  backdrop-filter: blur(12px);
}

.review-card span {
  color: var(--marigold);
}

.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding-block: 2rem;
  border-top: 1px solid rgba(217, 164, 65, 0.34);
  border-bottom: 1px solid rgba(217, 164, 65, 0.34);
}

.newsletter form {
  display: flex;
  width: min(470px, 100%);
  gap: 0.65rem;
}

.newsletter input,
.search-box input {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 1.1rem;
  outline: none;
}

.newsletter input:focus,
.search-box input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(168, 63, 85, 0.12);
}

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  padding-block: 2.2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(217, 164, 65, 0.34);
}

.footer div {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-logo .brand-logo {
  width: min(240px, 100%);
}

.footer a:not(.brand) {
  color: var(--muted);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  pointer-events: none;
  background: rgba(33, 26, 23, 0.44);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.overlay.active {
  pointer-events: auto;
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100dvh;
  border: 0;
  background: var(--paper);
  box-shadow: -28px 0 70px rgba(33, 26, 23, 0.18);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header,
.drawer-footer {
  padding: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header span {
  display: block;
  color: var(--muted);
}

.drawer-body {
  overflow: auto;
  padding: 1rem;
}

.drawer-footer {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.drawer-footer div {
  display: flex;
  justify-content: space-between;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.cart-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.empty-state {
  margin: 2rem 0;
  color: var(--muted);
  text-align: center;
}

.full {
  width: 100%;
}

dialog {
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(33, 26, 23, 0.52);
}

.quick-view,
.search-modal {
  width: min(880px, calc(100% - 2rem));
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1rem;
}

.quick-layout img {
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.quick-copy {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  padding: 1rem 1rem 1rem 0;
}

.quick-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.quick-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.detail-list span {
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
}

.close-modal {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.search-modal {
  width: min(720px, calc(100% - 2rem));
}

.search-box {
  padding: 2rem;
}

.search-results {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.search-result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.search-result img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
}

.product-actions {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 0.55rem;
}

.secondary-product-btn,
.secondary-detail-btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.secondary-product-btn:hover,
.secondary-detail-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(152, 35, 66, 0.48);
  background: white;
}

.product-detail-modal,
.checkout-modal {
  width: min(1120px, calc(100% - 2rem));
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 223, 154, 0.16), transparent 18rem),
    linear-gradient(145deg, #fff9f1, #fff0e4);
  box-shadow: var(--shadow);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1rem;
}

.detail-gallery {
  display: grid;
  gap: 0.8rem;
}

.detail-main-image {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(38, 8, 19, 0.14);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.detail-thumbs img {
  aspect-ratio: 1;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  object-fit: cover;
}

.detail-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 1rem;
}

.detail-copy h2,
.checkout-form h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.detail-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.checkout-modal {
  width: min(1040px, calc(100% - 2rem));
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1rem;
  padding: 1rem;
}

.checkout-form,
.checkout-summary {
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(1rem, 3vw, 1.5rem);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.form-grid label,
.payment-options label {
  display: grid;
  gap: 0.38rem;
  color: #503b35;
  font-size: 0.92rem;
  font-weight: 800;
}

.span-2 {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(217, 164, 65, 0.36);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  padding: 0.8rem;
  outline: none;
}

.form-grid textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-options label {
  align-items: center;
  grid-template-columns: auto 1fr;
  min-height: 3.1rem;
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.86);
  padding: 0.75rem;
}

.payment-options label:has(input:checked) {
  border-color: rgba(152, 35, 66, 0.55);
  background: rgba(255, 244, 230, 0.96);
  box-shadow: 0 12px 34px rgba(38, 8, 19, 0.08);
}

.payment-options strong,
.payment-options small {
  display: block;
}

.payment-options small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.checkout-note {
  margin: 0 0 1rem;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.78);
  color: var(--muted);
  padding: 0.85rem;
  line-height: 1.55;
}

.checkout-summary {
  align-self: start;
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(217, 164, 65, 0.24);
}

.checkout-item img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.checkout-item strong,
.checkout-item span {
  display: block;
}

.checkout-item span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.order-success-modal {
  width: min(460px, calc(100% - 2rem));
  border-radius: 8px;
  background: linear-gradient(145deg, #fff9f1, #fff0e4);
  box-shadow: var(--shadow);
}

.order-success-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 5vw, 2rem);
  text-align: center;
}

.order-success-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
}

.order-success-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.order-success-card strong {
  padding: 0.85rem;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rose-dark);
}

.policy-nav {
  margin-left: auto;
}

.policy-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.3rem;
}

.policy-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(2rem, 6vw, 4rem) 0 1.6rem;
}

.policy-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #21100f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
}

.policy-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.policy-card {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 223, 154, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(38, 8, 19, 0.1);
  padding: clamp(1.2rem, 4vw, 2rem);
  backdrop-filter: blur(14px);
}

.policy-card h2 {
  margin: 1rem 0 0;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

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

.policy-card strong {
  color: var(--ink);
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid article {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  padding: 1rem;
}

.summary-lines {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.summary-lines div:last-child {
  border-top: 1px solid rgba(217, 164, 65, 0.34);
  color: var(--ink);
  padding-top: 0.8rem;
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    order: 5;
    padding: 0.8rem 0 0.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .policy-nav {
    display: flex;
    margin-left: 0;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-card {
    position: static;
    margin-top: 1.6rem;
  }

  .couture-note {
    position: static;
    margin-top: 1rem;
  }

  .hero-saree-gallery {
    inset: 5rem 1.2rem auto auto;
    width: min(52vw, 420px);
    height: 520px;
    opacity: 0.72;
  }

  .promise-strip,
  .collection-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craft-band,
  .newsletter,
  .footer {
    grid-template-columns: 1fr;
  }

  .newsletter {
    align-items: stretch;
  }

  .quick-layout {
    grid-template-columns: 1fr;
  }

  .quick-copy {
    padding: 0 0.5rem 1rem;
  }

  .detail-hero,
  .checkout-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: -1;
  }
}

@media (max-width: 640px) {
  .announcement {
    font-size: 0.72rem;
  }

  .nav {
    gap: 0.7rem;
    padding-inline: 0.9rem;
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-logo {
    width: 152px;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .cart-button span {
    display: none;
  }

  .nav-links.open {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 760px;
    padding: 6rem 1rem 1rem;
  }

  .couture-note {
    width: 100%;
  }

  .hero-saree-gallery {
    inset: 4.2rem 0.4rem auto auto;
    width: 78vw;
    height: 420px;
    opacity: 0.34;
  }

  .panel-one {
    right: 2%;
    width: 58%;
  }

  .panel-two {
    right: 0;
    width: 45%;
  }

  .panel-three {
    right: 32%;
    width: 42%;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-actions,
  .newsletter form,
  .product-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-product-backdrop img {
    opacity: 0.08;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .promise-strip,
  .collection-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .collection-tile {
    min-height: 270px;
  }

  .section-heading {
    display: block;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-tabs button {
    width: 100%;
  }

  .quick-layout img {
    min-height: 300px;
  }

  .product-actions,
  .detail-actions,
  .form-grid,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .detail-copy {
    padding: 0.2rem;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .search-result {
    grid-template-columns: 56px 1fr;
  }

  .search-result .primary-btn {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.faq-section {
  padding-bottom: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.faq-card {
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(61, 38, 25, 0.06);
  padding: 1.1rem;
}

.faq-card h3 {
  margin: 0 0 0.55rem;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.12;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 4.6rem;
  z-index: 58;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 223, 154, 0.44);
  border-radius: 999px;
  background: linear-gradient(135deg, #115c54, #0d3f3a);
  color: white;
  box-shadow: 0 20px 44px rgba(13, 63, 58, 0.24);
  padding: 0.85rem 1.15rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 4.2rem;
  }
}
