:root {
  --bg-main: #faf9f6;
  --bg-alt: #fbfaf8;
  --text-main: #111;
  --text-muted: #666;
  --accent: #b9c7bd;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --mainnav-height: 54px;
  --catnav-height: 52px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--text-main);
}

.site-header {
  background: var(--bg-alt);
  color: var(--text-main);
}

.topbar {
  background: #a9c3c1;
  min-height: 40px;
  padding: 8px 12px;
}

.topbar-text {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.03em;
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(0.78rem, 2.4vw, 0.95rem);
  line-height: 1.35;
  word-break: break-word;
}

.utilitybar {
  height: 52px;
  background: var(--bg-alt);
  border-bottom: 1px solid #dedede;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  background: #fff;
}

.utility-links i {
  font-size: 1.1rem;
}

.mainnav {
  height: var(--mainnav-height);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid #e4ded2;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1040;
  width: 100%;
}

.nav-link {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--text-main);
  text-decoration: none;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link.plain-link:hover {
  color: #111;
  transform: translateY(-1px);
}

.nav-link.plain-link:hover::after,
.nav-link.plain-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid #dcd7cf;
  background: #fff;
  padding: 6px 10px;
  font-size: 1.35rem;
  color: #111;
  line-height: 1;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.active-pill {
  background: #111;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.active-pill::after {
  display: none;
}

.search-link {
  font-family: "Playfair Display", serif;
}

.nav-search-toggle {
  gap: 0.4rem !important;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search-toggle:hover,
.nav-search-toggle:focus-visible {
  border-color: #dcd7cf;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.nav-search {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  max-width: 440px;
}

.nav-search.is-open {
  display: inline-flex;
}

.nav-search-field {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 12px;
  border: 1px solid #dcd7cf;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.nav-search input {
  border: 0;
  outline: none;
  background: transparent;
  min-width: 230px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.nav-search input::placeholder {
  color: #777;
}

.catnav {
  height: var(--catnav-height);
  background: var(--bg-alt);
  position: -webkit-sticky;
  position: sticky;
  top: var(--mainnav-height);
  z-index: 1039;
  width: 100%;
  border-bottom: 1px solid #e4ded2;
}

.cat-links {
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.cat-links a {
  scroll-snap-align: start;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-transform: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cat-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cat-links a:hover,
.cat-links a:focus-visible {
  color: #111;
  transform: translateY(-1px);
}

.cat-links a:hover::after,
.cat-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.cat-toggle-wrapper {
  display: none;
}

.cat-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid #dedede;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--text-main);
}

.cat-toggle-icon {
  transition: transform 0.2s ease;
}

.cat-toggle[aria-expanded="true"] .cat-toggle-icon {
  transform: rotate(180deg);
}

.cat-links::-webkit-scrollbar {
  height: 6px;
}

.cat-links::-webkit-scrollbar-thumb {
  background: #dedede;
  border-radius: 999px;
}

.bg-main {
  background-color: var(--bg-main);
}

.hero-section {
  min-height: 520px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 7s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 250, 248, 0.9) 0%,
    rgba(251, 250, 248, 0.55) 38%,
    rgba(251, 250, 248, 0.02) 70%,
    transparent 100%
  );
  z-index: 1;
}

.hero-section .hero-caption {
  position: relative;
  max-width: 420px;
  padding: 2.5rem 0;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.15s;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.25rem);
}

.hero-label {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero-btn {
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.carousel-item {
  min-height: 520px;
  position: relative;
}

.carousel-indicators {
  z-index: 3;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.25);
}

.carousel-indicators .active {
  width: 24px;
  background-color: #111;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 5%;
}

.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: none;
}

.animate.fade-up {
  transform: translateY(24px);
}

.hero-carousel .carousel-item.active .hero-bg img {
  transform: scale(1.06);
}

.hero-carousel .carousel-item.active .hero-caption {
  opacity: 1;
  transform: translateY(0);
}

.hero-carousel .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

.hero-control {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-section:hover .hero-control {
  opacity: 0.85;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  filter: invert(1);
}

.letter-spaced {
  letter-spacing: 0.12em;
}

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

.section-title {
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  letter-spacing: 0.02em;
}

.category-card img {
  transition: transform 0.5s ease;
}

.object-fit-cover {
  object-fit: cover;
}

.tracking-wide {
  letter-spacing: 0.18em;
}

.ratio-4x5 {
  --bs-aspect-ratio: 125%;
}

.category-card:hover img {
  transform: scale(1.06);
}

.scroll-row {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #d8d1c7 transparent;
}

.scroll-row > [class*="col-"] {
  scroll-snap-align: start;
}

.scroll-row .col-10 {
  min-width: 280px;
}
.scroll-row::-webkit-scrollbar {
  height: 8px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: #d8d1c7;
  border-radius: 999px;
}

.chevron-left,
.chevron-right {
  position: absolute;
  top: 40%;
  color: #999;
  font-size: 1.25rem;
}

.chevron-left {
  left: -15px;
}
.chevron-right {
  right: -15px;
}

.card {
  border-radius: var(--radius);
}

.product-card .quick-icons {
  position: absolute;
  top: 12px;
  right: 12px;
}

.product-card .quick-icons .btn {
  border: 1px solid #e3d9cf;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.product-card .btn-outline-dark {
  border-width: 1px;
}

.product-card h5 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.product-card .card-body {
  background: #fff;
}

.event-card .card-body {
  background: #fff;
}

.event-cta {
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

.promo-banner {
  position: relative;
  width: 100%;
  background: #f7f3ec;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: 55% center;
  min-height: clamp(320px, 52vw, 520px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.56) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.12) 64%,
    rgba(0, 0, 0, 0) 85%
  );
  pointer-events: none;
}
.promo-banner .container {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-top: clamp(32px, 6vw, 84px);
  padding-bottom: clamp(46px, 9vw, 110px);
}
.promo-content {
  color: #fff;
  max-width: 640px;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
}
.promo-banner.show .promo-content {
  animation: promoLift 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.promo-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}
.promo-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 20px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.promo-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 22px;
  border-radius: 3px;
  border: 1px solid #f3f3f3;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.88rem;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}
.promo-btn:hover {
  background: #f2f2f2;
  color: #111;
  border-color: #e6e6e6;
  transform: translateY(-2px);
}
.promo-content:hover .promo-title {
  color: #f8f8f8;
  transform: translateY(-2px);
}
.promo-content:hover .promo-kicker {
  color: #f2f2f2;
}

/* Celebrate Summer Event */
.summer-event-section {
  padding: 80px 0;
  background: #f8f4ec;
}
.summer-head {
  margin-bottom: 28px;
}
.summer-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #c03a2b;
  margin-bottom: 8px;
}
.summer-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  letter-spacing: 0.02em;
  margin: 0;
}
.summer-slider {
  position: relative;
  margin-top: 10px;
}
.summer-track {
  display: flex;
  gap: 28px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 6px;
}
.summer-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-height: 460px;
  min-width: 260px;
  flex: 1 0 22%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.summer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}
.summer-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex: 1 1 auto;
}
.summer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.summer-card:hover .summer-photo img {
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 8px;
}
.hero-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.hero-off {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.6vw, 3rem);
  letter-spacing: 0.015em;
  margin: 0;
}
.hero-off span {
  display: block;
  font-size: 3.4rem;
}
.hero-link {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: #fff;
  color: #111;
  border: 1px solid #e8e8e8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.hero-link:hover {
  background: #f2f2f2;
}
.summer-meta {
  padding: 16px 16px 18px;
  transition: opacity 0.25s ease, max-height 0.25s ease, padding 0.25s ease;
  max-height: 200px;
}
.summer-item {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.summer-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.price-new {
  color: #c03a2b;
  font-weight: 700;
}
.price-old {
  color: #555;
  text-decoration: line-through;
  font-size: 0.95rem;
}
.price-off {
  color: #666;
  font-size: 0.9rem;
}
.summer-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #c03a2b;
  margin-bottom: 12px;
}
.summer-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  text-align: center;
}
.hover-overlay h6 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #ffffff;
}
.hover-offer {
  margin: 0;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.hover-btn {
  border-color: #e0e0e0;
}
.hover-btn:hover {
  transform: translateY(-2px);
}
.summer-card:hover .hover-overlay {
  opacity: 1;
  visibility: visible;
}
.summer-card:hover .summer-meta {
  opacity: 0;
  max-height: 0;
  padding: 0 16px;
}
.summer-card:hover .summer-photo {
  aspect-ratio: auto;
  height: 100%;
}
.summer-card:hover .summer-photo img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.summer-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #d8d8d8;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.summer-nav:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}
.nav-left {
  left: -48px;
}
.nav-right {
  right: -48px;
}
.summer-slider:hover .summer-nav,
.summer-event-section:hover .summer-nav {
  opacity: 1;
  pointer-events: auto;
}
.summer-view {
  margin-top: 28px;
}
.summer-viewall {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  border-radius: 3px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.summer-viewall:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: underline;
}

.collage-block {
  background: #faf9f6;
  padding: 28px 0 0;
}
.collage-wrap {
  position: relative;
}
.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.collage-tile {
  display: block;
  height: 360px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}
.collage-tile:hover {
  transform: scale(1.02);
}
.collage-overlay {
  position: absolute;
  left: 18px;
  bottom: 34px;
  width: calc(66.666% - 8px);
  color: #fff;
  z-index: 5;
  pointer-events: none;
  text-align: left;
}
.collage-overlay::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -22px;
  width: 70%;
  height: 210px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}
.collage-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 6px;
}
.collage-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 14px;
  color: #fff;
}
.collage-cta {
  pointer-events: auto;
  display: inline-block;
  background: #fff;
  color: #111;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.collage-cta:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}
.feature-strip {
  margin-top: 0;
  background: #e9e8e4;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  padding: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.feature-item {
  padding: 6px 18px;
  color: #111;
  text-align: center;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #111;
}
.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.feature-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: #333;
  line-height: 1.45;
}
.feature-link {
  color: #111;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .collage-grid {
    grid-template-columns: 1fr;
  }
  .collage-tile {
    height: 260px;
  }
  .collage-overlay {
    width: 92%;
    left: 16px;
    bottom: 18px;
  }
  .collage-title {
    font-size: 34px;
  }
  .feature-strip {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }
  .feature-item {
    padding: 14px 18px;
  }
}

@media (max-width: 767.98px) {
  .collage-grid {
    grid-template-columns: 1fr;
  }
  .collage-tile {
    height: 240px;
  }
  .collage-overlay {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
  }
  .collage-overlay::before {
    width: 85%;
    height: 170px;
    left: -12px;
    bottom: -14px;
  }
  .collage-title {
    font-size: 32px;
  }
  .collage-cta {
    padding: 11px 16px;
  }
}

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

.event-card .event-cta {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.2rem;
}

.collection-card {
  min-height: 320px;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  justify-content: flex-end;
}

.feature-row {
  background: #fff;
  border-top: 1px solid #e7e1d6;
  border-bottom: 1px solid #e7e1d6;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--bg-main);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.footer {
  border-top: 1px solid #e7e1d6;
}

.footer a:hover {
  text-decoration: underline;
}

.btn-dark {
  background-color: #111;
  border-color: #111;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
}

.shadow-sm {
  box-shadow: var(--shadow-soft) !important;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0.5rem !important;
  }
  .promo-banner {
    min-height: clamp(340px, 60vw, 440px);
    background-position: 58% center;
  }
  .promo-banner .container {
    padding-bottom: clamp(40px, 10vw, 96px);
  }
  .promo-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }
  .promo-btn {
    padding: 13px 24px;
  }
  .summer-event-section {
    padding: 64px 0;
  }
  .summer-track {
    gap: 20px;
  }
  .summer-card {
    min-width: 240px;
  }
  .nav-left {
    left: -10px;
  }
  .nav-right {
    right: -10px;
  }
  .collage-row .collage-tile {
    height: clamp(260px, 52vw, 360px);
  }
  .collage-headline {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
}

/* New Arrivals layout */
.arrivals-section {
  background: #faf9f6;
  padding: 56px 0;
}
.arrivals-heading {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}
.arrival-hero {
  position: relative;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.hero-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.arrival-hero .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}
.arrival-hero:hover .hero-img img {
  transform: scale(1.03);
}
.arrival-hero .hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px 24px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  color: #fff;
  opacity: 1;
  transform: none;
  transition: none;
  max-width: none;
}
.arrival-hero .hero-caption h3 {
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.arrival-hero .hero-caption p {
  margin-bottom: 14px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.arrival-hero .hero-caption .text-muted {
  color: #f1f1f1 !important;
}
.arrival-hero .hero-caption .hero-cta {
  border-radius: 999px;
  letter-spacing: 0.02em;
  background: #fff;
  color: #111;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 14px;
}
.arrival-hero .hero-caption .hero-cta:hover {
  background: #111;
  color: #fff;
}
.arrival-card {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.arrival-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.arrival-img {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
}
.arrival-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.arrival-card:hover .arrival-img img {
  transform: scale(1.04);
}
.arrival-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.arrival-icons i {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  padding: 6px;
  font-size: 0.9rem;
  color: #111;
}
.arrival-card:hover .arrival-icons {
  opacity: 1;
}
.arrival-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 6px;
}
.arrival-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.arrival-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.arrival-sub {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  color: #666;
}
.arrival-price {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #111;
  white-space: nowrap;
}
.arrival-actions {
  display: flex;
  gap: 10px;
  padding: 12px 14px 16px;
  border-top: 1px solid #eee;
  background: #faf9f6;
}
.arrival-actions a.btn,
.arrival-actions .btn-sm {
  border-radius: 8px;
  padding: 7px 10px;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
  line-height: 1.05;
  text-transform: none;
  gap: 6px;
}
.arrival-actions a:first-child {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}
.arrival-actions a:first-child:hover {
  background: #111;
  color: #fff;
}
.arrival-actions .btn-dark {
  background: #111;
  border-color: #111;
}
.arrival-actions .btn-dark:hover {
  background: #333;
  border-color: #333;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 420px;
  }
  .hero-section .hero-caption {
    padding: 2rem 0;
    max-width: 90%;
  }
  .secondary-links {
    justify-content: flex-start !important;
    overflow-x: auto;
    gap: 1rem;
  }
  .promo-banner {
    min-height: clamp(300px, 72vw, 360px);
    background-position: 60% center;
  }
  .promo-banner .container {
    padding-top: clamp(26px, 7vw, 64px);
    padding-bottom: clamp(34px, 10vw, 80px);
  }
  .promo-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }
  .promo-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }
  .promo-btn {
    padding: 12px 22px;
  }
  .summer-event-section {
    padding: 56px 0;
  }
  .summer-track {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .summer-card {
    min-width: 240px;
  }
  .summer-nav {
    display: none;
  }
  .collage-row .collage-tile {
    height: clamp(240px, 70vw, 320px);
  }
  .collage-overlay {
    justify-content: center;
    align-items: flex-start;
    padding: 18px 18px 22px;
  }
  .collage-headline {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }
  .collage-btn {
    padding: 10px 16px;
  }
}

@media (max-width: 575.98px) {
  .chevron-left,
  .chevron-right {
    display: none !important;
  }
  .category-label {
    font-size: 0.85rem;
  }
  .event-cta {
    bottom: 12px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }
  .hero-label {
    font-size: 0.75rem;
  }
}
.categories-section {
  background: var(--bg-main);
  padding: 64px 0;
}

.categories-heading {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0;
}

.categories-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px;
  justify-content: flex-start;
}

.categories-track::-webkit-scrollbar {
  height: 8px;
}

.categories-track::-webkit-scrollbar-thumb {
  background: transparent;
}

.category-poster {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 6px;
  overflow: hidden;
  width: 280px;
  height: 460px;
  flex: 0 0 auto;
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-poster:hover .category-image img {
  transform: scale(1.03);
}

.category-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-strip {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.strip-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.strip-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 700;
}

.featured-poster .category-image {
  height: 100%;
}

.category-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.overlay-strip {
  background: transparent;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.base-strip {
  opacity: 1;
  z-index: 2;
}

.category-poster:hover .category-gradient {
  opacity: 1;
}

.category-poster:hover .overlay-strip {
  opacity: 1;
}

.category-poster:hover .base-strip {
  opacity: 0;
}
.cat-chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #111;
  opacity: 0.5;
  font-size: 1.4rem;
  cursor: pointer;
}

.cat-chevron:hover {
  opacity: 0.8;
}

.cat-left {
  left: 8px;
}

.cat-right {
  right: 8px;
}

@media (max-width: 1199.98px) {
  .categories-track {
    padding-inline: 6px;
  }
}

/* Keep arrows visible except on very narrow phones */
@media (max-width: 479.98px) {
  .cat-chevron {
    display: none !important;
  }
}

.cat-chevron {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 30;
}

.categories-track {
  scroll-behavior: smooth;
}

@media (max-width: 767.98px) {
  .categories-section {
    padding: 56px 0;
  }
  .categories-heading {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .category-poster {
    width: 280px;
    height: 420px;
  }
  .strip-title {
    font-size: 1rem;
  }
}

.site-footer {
  background: #e9e8e4;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  padding: 38px 0 24px;
  color: #111;
}

.footer-top {
  --bs-gutter-x: 1.1rem;
  --bs-gutter-y: 0.85rem;
}

.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin: 6px 0;
}
.footer-list a {
  text-decoration: none;
  color: #111;
  opacity: 0.85;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-weight: 400;
}
.footer-list a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-miniheading {
  font-family: "Playfair Display", serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-smalltext {
  font-size: 11px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
}
.footer-social a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
  align-items: center !important;
}

.footer-newsletter-label {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  max-width: 620px;
  border: 1px solid #bdbdbd;
  background: transparent;
  height: 42px;
}
.footer-input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  background: transparent;
  font-size: 12px;
  line-height: 1.4;
}
.footer-join {
  border: 0;
  border-left: 1px solid #bdbdbd;
  background: transparent;
  padding: 10px 16px;
  font-size: 12px;
  cursor: pointer;
}
.footer-join:hover {
  background: rgba(0, 0, 0, 0.04);
}

.footer-mark {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-mark-ring {
  width: 68px;
  height: 68px;
  border: 1px solid #bdbdbd;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.22em;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive: newsletter stacks nicely */
@media (max-width: 575.98px) {
  .footer-newsletter {
    flex-direction: column;
  }
  .footer-join {
    border-left: 0;
    border-top: 1px solid #bdbdbd;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 32px 0 22px;
  }
  .footer-top {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.75rem;
  }
  .footer-heading {
    margin-bottom: 10px;
  }
  .footer-bottom {
    margin-top: 14px;
    padding-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .footer-top > [class^="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-newsletter {
    max-width: 100%;
  }
  .footer-bottom {
    align-items: flex-start !important;
  }
  .footer-mark {
    margin-left: auto;
    margin-right: auto;
  }

  /* Make search toggle icon-only on very small screens to save space */
  .nav-search-toggle span {
    display: none !important;
  }
  .nav-search-toggle {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-search-toggle i {
    font-size: 1.05rem;
  }
}

/* Global responsive tweaks for narrow devices */
@media (max-width: 991.98px) {
  .mainnav {
    height: auto;
  }
  .mainnav .container {
    align-items: flex-start !important;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    order: 1;
  }
  .mainnav .search-link {
    margin-left: auto;
    order: 2;
    padding: 6px 8px;
  }
  .nav-search-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
  }
  .mainnav .main-links {
    display: none !important;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    padding: 0.6rem 0 0.2rem;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
  }
  .mainnav .main-links.is-open {
    display: flex !important;
  }
  .nav-search {
    width: 100%;
    order: 4;
    display: none !important;
    padding: 6px 0 0.4rem;
    margin-left: 0;
    max-width: none;
  }
  .nav-search.is-open {
    display: flex !important;
  }
  .nav-search-field {
    width: 100%;
    background: #fff;
    border-color: #dcd7cf;
  }
  .nav-search input {
    min-width: 0;
    width: 100%;
  }
  .catnav {
    display: none;
    position: static;
    top: auto;
    height: auto;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .catnav.is-open {
    display: block;
  }
  .cat-links {
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    padding: 0.55rem 0 0.35rem;
    overflow: visible;
    scroll-snap-type: none;
  }
  .cat-links a {
    white-space: normal;
  }
  .cat-toggle-wrapper {
    display: block;
    padding: 8px 0 6px;
    background: var(--bg-alt);
  }
  .utilitybar {
    height: 48px;
  }
  .logo-badge {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .arrival-hero {
    margin-bottom: 12px;
  }
  .arrivals-section .col-lg-5 {
    margin-top: 10px;
  }
}
