:root {
  --brand: #800000;
  --brand-dark: #5f0000;
  --text: #000000;
  --light-text: #5f5f5f;
  --background: #ffffff;
  --border: #e5e5e5;
  --section-padding: 50px;
  --font-body: Roboto, Arial, sans-serif;
  --font-heading: "Proza Libre", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.reveal-ready .collection-grid[data-reveal],
body.reveal-ready .product-page[data-reveal] {
  opacity: 1;
  transform: none;
}

body.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

body.page-ready [data-page-section] {
  animation: page-section-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--page-delay, 0ms);
}

body.page-leaving .site-wrap,
body.page-leaving > .global-section,
body.page-leaving .section-footer {
  opacity: 0.72;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

body.page-leaving {
  cursor: progress;
}

@keyframes page-section-in {
  from {
    opacity: 0.58;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cart-count-bump {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.24);
  }
}

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

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

button,
input,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--brand);
  color: #fff;
  padding: 8px clamp(12px, 24vw, 350px);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 38px;
}

.announcement-bar button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.announcement-text {
  flex: 1;
  text-align: center;
}

.announcement-text.is-animating {
  animation: slide-up 700ms ease;
}

@keyframes slide-up {
  from { transform: translateY(80%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  body.page-ready [data-page-section],
  body.page-leaving .site-wrap,
  body.page-leaving .section-footer {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 42px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 42vw);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.header-search {
  display: flex;
  align-items: center;
  width: min(280px, 28vw);
  border: 1px solid var(--border);
  background: #fff;
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 9px 10px;
  color: var(--text);
  outline: 0;
}

.header-search button {
  border: 0;
  border-left: 1px solid var(--border);
  background: #fff;
  color: var(--brand);
  cursor: pointer;
  padding: 9px 11px;
  font-size: 12px;
  text-transform: uppercase;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  width: 50px;
  height: 20px;
  fill: currentColor;
}

.bag-icon {
  width: 22px;
  height: 20px;
  fill: currentColor;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.cart-count.is-bumping {
  animation: cart-count-bump 360ms ease;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--border);
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
}

.desktop-nav a {
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(390px, 100vw);
  transform: translateX(-105%);
  transition: transform 240ms ease;
  background: #fff;
  box-shadow: 12px 0 28px rgba(0, 0, 0, 0.18);
  padding: 28px;
  overflow-y: auto;
}

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

.drawer-close {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-search input {
  width: 100%;
  border: 1px solid var(--text);
  padding: 12px;
  margin: 26px 0;
}

.mobile-nav {
  display: grid;
  border-top: 1px dotted var(--border);
}

.mobile-nav a {
  color: var(--brand);
  border-bottom: 1px dotted var(--border);
  padding: 12px 0;
  text-transform: uppercase;
}

.site-wrap {
  min-height: 60vh;
}

.global-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--section-padding) 30px;
}

.section-tight {
  padding-top: 18px;
  padding-bottom: 18px;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.section-title {
  margin: 0;
  color: var(--brand);
  text-align: center;
  font-size: 26px;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 8px 0 0;
  text-align: center;
  font-size: 18px;
}

.category-icons {
  max-width: 700px;
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.category-icons img {
  width: 100px;
  height: 100px;
  margin: 0 auto 6px;
  border-radius: 50%;
  object-fit: contain;
}

.category-icons p {
  margin: 0;
  font-size: 12px;
}

.slideshow {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #f6f0ed;
  clear: both;
  z-index: 1;
}

.slide {
  display: block;
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms ease-in-out;
}

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

.slide img {
  width: 100%;
  height: auto;
  transform: translateZ(0);
}

.slide-media,
.image-grid .image-shell,
.gift-banner .image-shell {
  display: block;
}

.image-shell {
  position: relative;
  overflow: hidden;
  background: #f6f0ed;
}

.image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #f3ece8 0%, #fff 45%, #f3ece8 90%);
  transform: translateX(-100%);
  animation: shimmer 1250ms ease-in-out infinite;
}

.image-shell.loaded::before {
  display: none;
}

.image-shell img {
  opacity: 0;
  transition: opacity 220ms ease;
}

.image-shell.loaded img {
  opacity: 1;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

.slide-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slide-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.slide-dots button.active {
  background: var(--brand);
}

.image-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.image-grid img {
  width: 100%;
  border-radius: 3px;
}

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

.product-carousel {
  position: relative;
}

.product-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 18px;
  cursor: grab;
  touch-action: pan-x pinch-zoom;
  user-select: none;
}

.product-carousel__track::-webkit-scrollbar {
  display: none;
}

.product-carousel__track.is-dragging,
.product-carousel__track.is-auto-sliding {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.product-carousel__track .product-card {
  scroll-snap-align: start;
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.carousel-arrow {
  position: absolute;
  top: 34%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 18px rgba(80, 0, 0, 0.14);
  cursor: pointer;
}

.carousel-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.carousel-arrow.prev {
  left: -12px;
}

.carousel-arrow.next {
  right: -12px;
}

.look-carousel {
  position: relative;
}

.shop-look-section {
  margin: 18px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.45), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(173, 116, 21, 0.18), transparent 26%),
    linear-gradient(135deg, #fff8e6 0%, #f3d58f 48%, #dcb465 100%);
  border-top: 1px solid rgba(151, 104, 21, 0.24);
  border-bottom: 1px solid rgba(151, 104, 21, 0.28);
  box-shadow: 0 0 0 100vmax #f3d58f;
  clip-path: inset(0 -100vmax);
}

.shop-look-inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 30px 36px;
}

.shop-look-heading {
  margin-bottom: 22px;
  text-align: center;
}

.shop-look-heading .section-title {
  color: #6f1f12;
  font-size: 25px;
}

.shop-look-heading .section-subtitle {
  color: #5e3720;
  font-size: 16px;
}

.look-carousel__track {
  --look-gap: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (6 * var(--look-gap))) / 7);
  gap: var(--look-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 18px;
  cursor: grab;
  touch-action: pan-x pinch-zoom;
  user-select: none;
}

.look-carousel__track::-webkit-scrollbar {
  display: none;
}

.look-carousel__track.is-dragging,
.look-carousel__track.is-auto-sliding {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.look-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 78, 17, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  scroll-snap-align: start;
  box-shadow: 0 8px 22px rgba(111, 68, 13, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.look-card:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 77, 12, 0.36);
  box-shadow: 0 12px 28px rgba(111, 68, 13, 0.18);
}

.look-video-shell {
  position: relative;
  overflow: hidden;
  background: #f6f0ed;
}

.look-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #f3ece8 0%, #fff 45%, #f3ece8 90%);
  transform: translateX(-100%);
  animation: shimmer 1250ms ease-in-out infinite;
  opacity: 0.32;
  pointer-events: none;
}

.look-video-shell.loaded::before {
  display: none;
}

.look-video-shell video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #f6f0ed;
}

.look-mute {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  min-height: 24px;
  padding: 0 7px;
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
}

.look-mute.active {
  background: var(--brand);
}

.look-product {
  display: grid;
  gap: 3px;
  padding: 9px;
}

.look-product span {
  color: #8a4f08;
  font-size: 10px;
  text-transform: uppercase;
}

.look-product strong {
  min-height: 34px;
  color: #341f14;
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 600;
}

.shop-look-section .carousel-arrow {
  top: 52%;
  border-color: rgba(111, 31, 18, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #6f1f12;
  box-shadow: 0 8px 20px rgba(111, 68, 13, 0.18);
}

.shop-look-section .carousel-arrow.prev {
  left: 10px;
}

.shop-look-section .carousel-arrow.next {
  right: 10px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 8px 12px;
  content-visibility: auto;
  contain-intrinsic-size: 430px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 10px 28px rgba(80, 0, 0, 0.11);
  transform: translateY(-2px);
}

.product-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  will-change: opacity;
}

.sale-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 4px 7px;
  font-size: 11px;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 10px 3px 5px;
  min-height: 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.price {
  color: var(--brand);
  font-weight: 600;
}

.compare {
  color: var(--light-text);
  text-decoration: line-through;
  margin-left: 6px;
}

.save {
  display: block;
  color: var(--green, #1f7a4a);
  font-size: 12px;
}

.product-form {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.product-form select,
.product-form input {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 1px solid var(--border);
  padding: 8px;
  background: #fff;
}

.product-form select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button,
.product-form button,
.whatsapp-order,
.load-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
}

.product-form button {
  width: 100%;
}

.button.outlined {
  background: #fff;
  color: var(--brand);
}

.marquee-band {
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee-band div {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

.marquee-band span {
  margin: 0 36px;
  font-weight: 600;
}

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

.brand-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brand-intro h2 {
  color: var(--brand);
}

.banner-image img,
.gift-banner img {
  width: 100%;
}

.press-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: center;
}

.press-row img {
  max-height: 55px;
  width: 100%;
  object-fit: contain;
}

.story-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.story-strip ul {
  display: flex;
  gap: 22px;
  width: max-content;
  margin: 0;
  padding: 0;
  overflow: visible;
  list-style: none;
  animation: story-move 22s linear infinite;
}

.story-strip li {
  flex: 0 0 230px;
}

.story-strip img {
  width: 230px;
  height: 230px;
  object-fit: cover;
}

@keyframes story-move {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.service-row div {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 10px;
}

.service-row strong {
  display: block;
  color: var(--brand);
}

.long-copy {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
}

.page-title {
  padding: 44px 30px 18px;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  color: var(--brand);
  font-size: 32px;
  text-transform: uppercase;
}

.search-title {
  max-width: 760px;
  margin: 0 auto;
}

.search-page-form {
  display: flex;
  gap: 10px;
  margin: 20px auto 12px;
}

.search-page-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  padding: 13px 14px;
}

.search-page-form button {
  border: 0;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  padding: 13px 22px;
  text-transform: uppercase;
}

.search-title p,
.search-empty {
  color: var(--light-text);
  text-align: center;
}

.search-empty {
  margin: 0 0 70px;
}

.collection-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 30px 70px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 18px;
}

.product-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 42px 30px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.thumb-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.thumb-list button {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.thumb-list img {
  width: 90px;
  height: 120px;
  object-fit: cover;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.product-summary h1 {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 34px;
}

.product-summary .price {
  font-size: 22px;
}

.product-summary label {
  display: block;
  margin: 18px 0 8px;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 12px;
}

.qty-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: end;
}

.product-summary .product-form {
  max-width: 460px;
}

.product-summary .product-form button {
  margin-top: 6px;
}

.trust-copy {
  color: var(--light-text);
  font-size: 13px;
  text-transform: uppercase;
}

.rte {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 30px 70px;
}

.page-hero {
  min-height: 380px;
  display: grid;
  align-items: center;
  background: #f5eeee;
  background-size: cover;
  background-position: center;
  padding: 56px 30px;
}

.page-hero > div {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 560px;
  color: #282020;
  font-size: 17px;
}

.page-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.page-hero-about {
  background-image: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.62)), url("https://cdn.shopify.com/s/files/1/0632/9656/9522/files/4D3A5328.jpg?v=1757741244");
  background-position: center 28%;
}

.page-hero-contact {
  background-image: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.66)), url("https://cdn.shopify.com/s/files/1/0632/9656/9522/files/hawa_mahal_1.png?v=1701118357");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.page-hero-blog {
  background-image: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.62)), url("https://cdn.shopify.com/s/files/1/0632/9656/9522/files/4D3A5339.jpg?v=1757740892");
  background-position: center 24%;
}

.info-grid,
.about-story,
.contact-panel,
.blog-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 54px 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-grid article,
.blog-grid article {
  border: 1px solid var(--border);
  background: #fff;
}

.info-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.info-grid span,
.blog-grid span {
  color: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
}

.info-grid strong {
  font-size: 18px;
  line-height: 1.35;
}

.about-story,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: center;
}

.about-story h2,
.contact-panel h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 34px;
}

.about-story .image-shell img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 22px;
  background: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-grid article {
  display: grid;
}

.blog-grid .image-shell img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.blog-grid article > div:last-child {
  padding: 20px;
}

.blog-grid h2 {
  margin: 8px 0 10px;
  color: var(--brand);
  font-size: 24px;
}

.section-footer {
  background-color: var(--brand);
  background-image: url("https://cdn.shopify.com/s/files/1/0632/9656/9522/files/hawa_mahal_1.png?v=1701118357");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  color: #fff;
  text-align: center;
  padding: 45px 30px 135px;
}

.footer-columns {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-columns h3 {
  color: #fff;
  margin: 0 0 10px;
}

.footer-columns a,
.footer-columns p {
  color: rgba(255, 255, 255, 0.88);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.45);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(420px, 100vw);
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.cart-head,
.cart-summary {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h2 {
  color: var(--brand);
  margin: 0;
}

.cart-items {
  overflow-y: auto;
  padding: 12px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.cart-item img {
  width: 72px;
  height: 96px;
  object-fit: cover;
}

.cart-item h3,
.cart-item p {
  margin: 0 0 4px;
}

.cart-item h3 {
  font-family: var(--font-body);
  font-size: 14px;
}

.cart-item p {
  color: var(--light-text);
  font-size: 12px;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  align-self: start;
}

.cart-summary {
  border-top: 1px solid var(--border);
  border-bottom: 0;
  display: grid;
  gap: 14px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.whatsapp-order {
  background: #1f7a4a;
  border-color: #1f7a4a;
}

.empty-cart {
  text-align: center;
  color: var(--light-text);
  padding: 50px 0;
}

.cart-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(390px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(128, 0, 0, 0.18);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cart-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-toast strong,
.cart-toast span {
  display: block;
}

.cart-toast strong {
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
}

.cart-toast span {
  overflow: hidden;
  color: var(--light-text);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-toast button {
  min-height: 34px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 0 12px;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .desktop-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

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

  .product-carousel__track {
    grid-auto-columns: calc((100% - 42px) / 3);
    gap: 14px;
  }

  .look-carousel__track {
    --look-gap: 14px;
    grid-auto-columns: calc((100% - 42px) / 4);
    gap: var(--look-gap);
  }

  .shop-look-inner {
    padding: 30px 22px 34px;
  }

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

@media (max-width: 767px) {
  .announcement-bar {
    padding: 8px 0;
    font-size: 9px;
  }

  .header-main {
    min-height: 74px;
    padding: 0 14px;
  }

  .logo {
    width: min(210px, 46vw);
  }

  .logo img {
    max-height: 54px;
  }

  .desktop-nav {
    display: none;
  }

  .header-search {
    display: none;
  }

  .global-section {
    padding: 34px 16px;
  }

  .search-page-form {
    flex-direction: column;
  }

  .category-icons {
    max-width: 100%;
    margin-bottom: 10px;
    gap: 8px;
  }

  .category-icons img {
    width: clamp(64px, 20vw, 86px);
    height: clamp(64px, 20vw, 86px);
  }

  .category-icons p {
    font-size: 9px;
  }

  .image-grid,
  .featured-row,
  .collection-grid,
  .service-row,
  .press-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .product-carousel__track {
    grid-auto-columns: calc((100% - 10px) / 2);
    gap: 10px;
  }

  .look-carousel__track {
    --look-gap: 10px;
    grid-auto-columns: minmax(128px, 42%);
    gap: var(--look-gap);
  }

  .shop-look-inner {
    padding: 28px 16px 32px;
  }

  .shop-look-heading {
    margin-bottom: 18px;
  }

  .shop-look-heading .section-title {
    font-size: 22px;
  }

  .shop-look-heading .section-subtitle {
    font-size: 14px;
  }

  .info-grid,
  .blog-grid,
  .about-story,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 320px;
    padding: 42px 18px;
  }

  .carousel-arrow {
    top: 32%;
    width: 34px;
    height: 34px;
  }

  .carousel-arrow.prev {
    left: 2px;
  }

  .carousel-arrow.next {
    right: 2px;
  }

  .shop-look-section .carousel-arrow {
    top: 54%;
  }

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

  .thumb-list {
    grid-template-columns: repeat(5, 1fr);
    order: 2;
  }

  .thumb-list img {
    width: 100%;
    height: 84px;
  }

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

@media (max-width: 480px) {
  .featured-row,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    padding: 7px;
  }

  .product-card h3 {
    min-height: 36px;
    font-size: 12px;
  }

  .product-form {
    gap: 6px;
  }

  .product-form select {
    min-height: 32px;
    padding: 6px;
    font-size: 12px;
  }

  .product-form button {
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }

  .cart-toast {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}
