:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-soft: #faf7f2;
  --surface-strong: #efe8dd;
  --text: #121212;
  --muted: #6c655d;
  --line: rgba(18, 18, 18, 0.08);
  --line-strong: rgba(18, 18, 18, 0.16);
  --shadow: 0 16px 42px rgba(18, 18, 18, 0.05);
  --shadow-soft: 0 10px 28px rgba(18, 18, 18, 0.04);
  --radius-xl: 42px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(237, 232, 223, 0.82), transparent 24%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.7), transparent 18%),
    linear-gradient(180deg, #fbf9f5 0%, #f3eee5 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 120px;
}

main[data-site-view="collection"] > section:not(#collectionView),
main[data-site-view="catalog"] > section:not(#catalogView),
main[data-site-view="product"] > section:not(#productView) {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand__name,
.hero h1,
.section-heading h2,
.feature-panel h3,
.product-card h3,
.location-card h3 {
  font-family: "Bodoni Moda", serif;
}

.brand__name {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.brand__logo {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand__sub,
.topbar__nav,
.topbar__link,
.section-heading__text,
.info-card p,
.feature-panel p,
.product-card__description,
.contact-card__item span,
.location-card p,
.footer p {
  color: var(--muted);
}

.topbar__nav,
.topbar__actions,
.footer__links,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar__actions {
  align-items: center;
  justify-content: flex-end;
}

.topbar__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  cursor: pointer;
}

.topbar__menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.topbar__menu-toggle:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.topbar__menu-toggle span {
  display: block;
  width: 18px;
  height: 1.7px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar.is-menu-open .topbar__menu-toggle span:nth-child(1) {
  transform: translateY(6.7px) rotate(45deg);
}

.topbar.is-menu-open .topbar__menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .topbar__menu-toggle span:nth-child(3) {
  transform: translateY(-6.7px) rotate(-45deg);
}

.topbar__nav {
  font-size: 0.92rem;
}

.topbar__dropdown {
  position: relative;
}

.topbar__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: inherit;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.topbar__dropdown-trigger:hover,
.topbar__dropdown.is-open .topbar__dropdown-trigger,
.topbar__dropdown:focus-within .topbar__dropdown-trigger {
  color: inherit;
  opacity: 1;
}

.topbar__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.topbar__dropdown:hover .topbar__dropdown-trigger svg,
.topbar__dropdown.is-open .topbar__dropdown-trigger svg,
.topbar__dropdown:focus-within .topbar__dropdown-trigger svg {
  transform: rotate(180deg);
}

.topbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  background: rgba(251, 249, 245, 0.96);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.topbar__dropdown:hover .topbar__dropdown-menu,
.topbar__dropdown:focus-within .topbar__dropdown-menu,
.topbar__dropdown.is-open .topbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.topbar__dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.topbar__dropdown-menu a:hover,
.topbar__dropdown-menu a:focus-visible {
  background: rgba(18, 18, 18, 0.03);
  color: inherit;
  transform: none;
  outline: none;
}

.cart-trigger {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cart-trigger:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.cart-trigger:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.cart-trigger svg {
  width: 22px;
  height: 22px;
}

.cart-trigger__count {
  position: absolute;
  right: -4px;
  top: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.topbar__nav a,
.footer__links a,
.contact-card__item a,
.location-card a,
.topbar__link {
  transition: color 180ms ease;
}

.topbar__nav a:hover,
.footer__links a:hover,
.contact-card__item a:hover,
.location-card a:hover,
.topbar__link:hover {
  color: var(--text);
}

.button,
.filter-chip,
.floating-whatsapp,
.floating-quicklink {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button:hover,
.filter-chip:hover,
.floating-whatsapp:hover,
.floating-quicklink:hover {
  transform: translateY(-2px);
}

.button--dark {
  background: #111111;
  color: #ffffff;
}

.button--dark:hover {
  background: #262626;
}

.button--light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.button--light:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}

.hero,
.section {
  padding-top: 104px;
}

.hero {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero__visual {
  display: grid;
  align-self: stretch;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__kicker {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(4.2rem, 10vw, 8rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 48ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.92;
}

.hero__cta {
  width: fit-content;
  margin-top: 30px;
  padding-inline: 32px;
  box-shadow: var(--shadow-soft);
}

.hero__copy {
  padding-bottom: 10px;
}

.hero-slider-shell {
  position: relative;
  width: min(100%, 540px);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  min-height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 236, 0.98));
  box-shadow: var(--shadow);
}

.hero-slider-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  min-height: auto;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 700ms ease,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), transparent 24%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.28), rgba(17, 17, 17, 0.02) 42%);
}

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  padding: 0;
}

.hero-slider__control,
.hero-slider__dots {
  z-index: 4;
}

.hero-slider__control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-slider__control:hover {
  transform: translateY(-50%) scale(1.02);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
}

.hero-slider__control:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.hero-slider__control svg {
  width: 22px;
  height: 22px;
}

.hero-slider__control--prev {
  left: 28px;
}

.hero-slider__control--next {
  right: 28px;
}

.hero-slider__dots {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.hero-slider__dot.is-active {
  width: 30px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-slider__dot:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.82);
}

.info-card,
.feature-panel,
.product-card,
.contact-card,
.location-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.editorial-stage {
  position: relative;
  min-height: 700px;
  border-radius: var(--radius-xl);
}

.editorial-stage__media,
.feature-panel__media,
.product-card__media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(237, 232, 223, 0.42), rgba(249, 247, 242, 0.95)),
    var(--surface-soft);
}

.editorial-stage__media {
  min-height: 700px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.editorial-stage__media::after,
.feature-panel__media::after,
.product-card__media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(17, 17, 17, 0.14);
  border-radius: calc(var(--radius-xl) - 12px);
}

.editorial-stage__media::before {
  content: "By PM";
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 1;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: rgba(18, 18, 18, 0.12);
}

.editorial-stage__placeholder,
.feature-panel__placeholder,
.product-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  z-index: 1;
}

.editorial-stage__placeholder span,
.feature-panel__placeholder span,
.product-card__placeholder span {
  font-family: "Bodoni Moda", serif;
  font-size: 1.55rem;
}

.editorial-stage__placeholder small,
.feature-panel__placeholder small,
.product-card__placeholder small {
  color: var(--muted);
}

.editorial-stage__placeholder {
  align-content: end;
  justify-items: start;
  padding: 40px;
  text-align: left;
}

.editorial-stage__image,
.feature-panel__image,
.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 2;
}

.editorial-stage__media.has-image .editorial-stage__image,
.feature-panel__media.has-image .feature-panel__image,
.product-card__media.has-image .product-card__image {
  opacity: 1;
}

.editorial-stage__media.has-image .editorial-stage__placeholder,
.feature-panel__media.has-image .feature-panel__placeholder,
.product-card__media.has-image .product-card__placeholder {
  display: none;
}

.product-card__meta,
.info-card__label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--compact {
  padding-top: 60px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-heading__text {
  max-width: 56ch;
  margin: 0;
  line-height: 1.8;
}

.info-grid,
.catalog-grid,
.locations-grid,
.contact-layout,
.feature-layout {
  display: grid;
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.collection-view {
  padding-top: 10px;
  scroll-margin-top: 126px;
}

.collection-view__header {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.collection-view__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.collection-view__back:hover,
.collection-view__back:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.collection-view__heading {
  margin-bottom: 0;
}

.collection-view__summary {
  max-width: 46ch;
}

.collection-view__toolbar {
  margin-bottom: 28px;
}

.collection-view__toolbar .filter-group {
  justify-content: flex-start;
}

.collection-view__grid {
  margin-top: 0;
}

.collection-grid__cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.collection-grid__button {
  min-width: 168px;
  padding-inline: 34px;
  border-color: rgba(18, 18, 18, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.collection-grid__button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
}

.collection-card {
  margin: 0;
  display: grid;
  gap: 14px;
}

.collection-card--interactive {
  cursor: pointer;
}

.collection-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(237, 232, 223, 0.28), rgba(255, 255, 255, 0.94)),
    var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.collection-card__media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 600ms ease;
}

.collection-card:hover .collection-card__media img {
  transform: scale(1.03);
}

.collection-card--interactive:hover .collection-card__media,
.collection-card--interactive:focus-visible .collection-card__media {
  border-color: var(--line-strong);
}

.collection-card--interactive:focus-visible {
  outline: none;
}

.collection-card--interactive:focus-visible .collection-card__media {
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.collection-card__caption {
  margin: 0;
  padding: 0 6px;
  display: grid;
  gap: 10px;
}

.collection-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.01em;
}

.info-card,
.feature-panel,
.product-card,
.contact-card,
.location-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.info-card p {
  margin: 0 0 10px;
  line-height: 1.8;
}

.feature-layout {
  align-items: stretch;
}

.feature-panel {
  min-height: 500px;
}

.feature-panel__media {
  min-height: 500px;
  border-radius: calc(var(--radius-lg) - 4px);
}

.feature-panel__media::after {
  border-radius: 20px;
}

.feature-panel--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 239, 0.96));
}

.feature-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 600;
}

.feature-panel p {
  margin: 0 0 14px;
  line-height: 1.8;
}

.featured-products-grid {
  margin-bottom: 8px;
}

.catalog-toolbar {
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.filter-chip.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.9);
}

.product-card__media {
  min-height: auto;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(239, 232, 223, 0.32), rgba(255, 255, 255, 0.96)),
    var(--surface-soft);
}

.product-card__media-button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: default;
  text-align: left;
}

.product-card__media-button::before {
  content: "Ver producto";
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-card__discount-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  background: rgba(17, 17, 17, 0.76);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-card:hover .product-card__media-button::before,
.product-card__media-button:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.product-card__media-button:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 5px;
}

.product-card__media::after {
  border-radius: 20px;
}

.product-card:hover .product-card__image {
  transform: scale(1.03);
}

.product-card__image {
  transition: transform 500ms ease, opacity 220ms ease;
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.1;
  font-weight: 600;
}

.product-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.92);
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.product-price {
  display: grid;
  gap: 6px;
}

.product-price__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-price__original {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: line-through;
}

.product-price--card {
  justify-items: end;
  text-align: right;
}

.product-price--card .product-price__row {
  justify-content: flex-end;
}

.product-price--lightbox .product-price__row {
  align-items: center;
}

.product-price--collection .product-price__badge,
.product-price--cart .product-price__badge {
  min-height: 24px;
  padding: 0 8px;
  font-size: 0.72rem;
}

.collection-card__price {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.product-card__description {
  margin: 0;
  line-height: 1.82;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-lightbox__actions {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.product-view {
  padding-top: clamp(10px, 2vw, 24px);
  scroll-margin-top: 108px;
}

.product-view__header {
  width: min(1280px, 100%);
  margin: 0 auto 28px;
}

.product-view__card.product-lightbox__dialog {
  width: min(1280px, 100%);
  max-height: none;
  margin: 0 auto;
}

.product-view__card .product-lightbox__media {
  min-height: min(68vh, 840px);
}

.product-view__card .product-lightbox__content {
  overflow: visible;
}

.product-view__card .product-lightbox__image {
  cursor: default;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
  backdrop-filter: blur(6px);
}

.product-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  width: min(1240px, calc(100vw - 48px));
  max-height: min(calc(100vh - 48px), 960px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.18);
}

.product-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.product-lightbox__close:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.product-lightbox__close:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.product-lightbox__viewer-back {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: none;
  width: fit-content;
  padding-inline: 32px;
  box-shadow: var(--shadow-soft);
}

.product-lightbox__media {
  position: relative;
  display: grid;
  place-items: stretch;
  min-height: min(64vh, 780px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239, 232, 223, 0.4), rgba(255, 255, 255, 0.96)),
    var(--surface-soft);
}

.product-lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  cursor: default;
}

.product-lightbox__image:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: -6px;
}

.product-lightbox__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  min-width: 52px;
  min-height: 50px;
  padding-inline: 16px;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 160ms ease;
}

.product-lightbox__gallery-nav[hidden] {
  display: none;
}

.product-lightbox__gallery-nav:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.product-lightbox__gallery-nav span {
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
}

.product-lightbox__gallery-nav--prev {
  left: 22px;
}

.product-lightbox__gallery-nav--next {
  right: 22px;
}

.product-lightbox__gallery-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.product-lightbox__gallery-nav:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.product-lightbox__gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.product-lightbox__gallery-dots[hidden] {
  display: none;
}

.product-lightbox__gallery-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    opacity 160ms ease;
}

.product-lightbox__gallery-dot:hover,
.product-lightbox__gallery-dot:focus-visible {
  background: rgba(17, 17, 17, 0.5);
}

.product-lightbox__gallery-dot:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.product-lightbox__gallery-dot.is-active {
  background: #111111;
  transform: scale(1.35);
}

.product-lightbox__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px 34px 34px;
  min-height: 0;
  overflow-y: auto;
}

.product-lightbox__meta {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-lightbox__price {
  margin: -6px 0 2px;
}

.product-lightbox__price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-lightbox__content h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  font-weight: 600;
}

.product-lightbox__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-lightbox.is-image-viewer-open .product-lightbox__backdrop {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
}

.product-lightbox.is-image-viewer-open {
  padding: 0;
}

.product-lightbox.is-image-viewer-open .product-lightbox__dialog {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-lightbox.is-image-viewer-open .product-lightbox__close,
.product-lightbox.is-image-viewer-open .product-lightbox__content {
  display: none;
}

.product-lightbox.is-image-viewer-open .product-lightbox__viewer-back {
  display: inline-flex;
  top: clamp(16px, 2.8vh, 28px);
  left: clamp(16px, 2.8vw, 28px);
  z-index: 4;
  background: rgba(17, 17, 17, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.product-lightbox.is-image-viewer-open .product-lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 100%;
  padding: clamp(82px, 10vh, 112px) clamp(18px, 3vw, 44px) clamp(42px, 8vh, 72px);
  background: transparent;
}

.product-lightbox.is-image-viewer-open .product-lightbox__image {
  cursor: default;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.22));
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  min-width: clamp(46px, 4.5vw, 58px);
  min-height: clamp(46px, 4.5vw, 58px);
  background: rgba(17, 17, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav--prev {
  left: clamp(16px, 2.6vw, 28px);
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav--next {
  right: clamp(16px, 2.6vw, 28px);
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3.6vh, 24px);
  z-index: 4;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-dot {
  background: rgba(255, 255, 255, 0.34);
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-dot:hover,
.product-lightbox.is-image-viewer-open .product-lightbox__gallery-dot:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.product-lightbox.is-image-viewer-open .product-lightbox__gallery-dot.is-active {
  background: #ffffff;
}

.product-lightbox__sizes {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.product-lightbox__label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-lightbox__size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-lightbox__size {
  min-width: 50px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.product-lightbox__size:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.product-lightbox__size:disabled,
.product-lightbox__size.is-unavailable {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(32, 27, 24, 0.1);
  cursor: not-allowed;
  opacity: 0.42;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.product-lightbox__size:disabled:hover,
.product-lightbox__size.is-unavailable:hover {
  transform: none;
  border-color: rgba(32, 27, 24, 0.1);
}

.product-lightbox__size.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.product-lightbox__size:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(17, 17, 17, 0.34);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-overlay[hidden],
.cart-drawer[hidden] {
  display: none;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 89;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer__panel {
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  height: 100vh;
  max-height: 100dvh;
  padding: 22px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 237, 0.98));
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 64px rgba(17, 17, 17, 0.14);
  transform: translateX(100%);
  transition: transform 260ms ease;
  overflow: hidden;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__heading .eyebrow {
  margin-bottom: 8px;
}

.cart-drawer__heading h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.98;
}

.cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.cart-drawer__close:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #ffffff;
}

.cart-drawer__close:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px 2px 8px;
  scrollbar-gutter: stable;
}

.cart-drawer__empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.cart-drawer__section {
  display: grid;
  gap: 14px;
}

.cart-drawer__section--items {
  gap: 16px;
}

.cart-drawer__section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__section-heading span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-drawer__list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.cart-item__media {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-soft);
  aspect-ratio: 4 / 5;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__content {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.cart-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__header h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: 1.06rem;
  line-height: 1.12;
}

.cart-item__meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item__remove {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.cart-item__remove:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.cart-item__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__price {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-price--cart {
  gap: 4px;
}

.product-price--cart .product-price__original {
  font-size: 0.78rem;
}

.cart-item__quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
}

.cart-item__quantity button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.96);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.cart-item__quantity button:hover {
  transform: translateY(-1px);
  border-color: var(--line);
  background: #ffffff;
}

.cart-item__quantity span {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.cart-summary__row strong {
  color: var(--text);
}

.cart-summary__row--total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.cart-summary__row--total strong {
  font-size: 1rem;
}

.cart-checkout-form {
  display: grid;
  gap: 14px;
}

.cart-checkout-form__grid {
  display: grid;
  gap: 14px;
}

.cart-checkout-form label {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.cart-checkout-form input,
.cart-checkout-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cart-checkout-form input::placeholder {
  color: rgba(108, 101, 93, 0.88);
}

.cart-checkout-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(18, 18, 18, 0.75) 50%),
    linear-gradient(135deg, rgba(18, 18, 18, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.cart-checkout-form input:focus,
.cart-checkout-form select:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(18, 18, 18, 0.06);
  background: #ffffff;
}

.cart-drawer__notice {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(245, 240, 232, 0.92);
  color: var(--text);
  line-height: 1.65;
}

.cart-drawer__checkout {
  width: 100%;
  margin-top: 2px;
}

.cart-drawer__checkout.is-disabled {
  pointer-events: none;
  background: #c9c1b6;
  color: rgba(255, 255, 255, 0.94);
}

body.has-modal-open {
  overflow: hidden;
}

.contact-layout {
  width: 100%;
  max-width: 720px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 237, 0.95));
}

.contact-card__item {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-card__item:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.locations-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.location-card {
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 239, 0.95));
}

.location-card--linked {
  cursor: pointer;
}

.location-card--linked:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.location-card--linked:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.location-card h3,
.location-card p {
  margin: 0;
}

.location-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
}

.location-card a:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 0;
  margin-top: 88px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 8px 0 0;
}

.floating-quicklink {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 39;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 237, 0.98) 100%);
  color: var(--text);
  box-shadow:
    0 18px 34px rgba(17, 17, 17, 0.14),
    0 8px 16px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.floating-quicklink:hover {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 246, 240, 1) 100%);
  box-shadow:
    0 22px 42px rgba(17, 17, 17, 0.16),
    0 10px 20px rgba(17, 17, 17, 0.1);
}

.floating-quicklink:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.floating-quicklink::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
}

.floating-quicklink img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 237, 0.98) 100%);
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(17, 17, 17, 0.14),
    0 8px 16px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 246, 240, 1) 100%);
  box-shadow:
    0 22px 42px rgba(17, 17, 17, 0.16),
    0 10px 20px rgba(17, 17, 17, 0.1);
}

.floating-whatsapp:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 4px;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 50%;
}

.floating-whatsapp__icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.96fr);
  }

  .feature-layout {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .product-lightbox__dialog {
    width: min(1280px, calc(100vw - 56px));
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.94fr);
  }

  .product-view__card.product-lightbox__dialog {
    width: min(1280px, 100%);
  }

  .product-lightbox__media {
    min-height: min(70vh, 820px);
    padding: 0;
  }

  .product-lightbox__image {
    max-height: none;
  }

  .product-lightbox__content {
    gap: 22px;
    padding: 42px 38px 38px;
  }

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

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

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

  .cart-checkout-form label:nth-child(6),
  .cart-checkout-form label:nth-child(7),
  .cart-checkout-form label:nth-child(8) {
    grid-column: span 2;
  }
}

@media (min-width: 860px) and (max-width: 1099px) {
  .product-lightbox__dialog {
    width: min(1080px, calc(100vw - 36px));
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.92fr);
  }

  .product-view__card.product-lightbox__dialog {
    width: min(1080px, 100%);
  }

  .product-lightbox__media {
    min-height: min(62vh, 720px);
    padding: 0;
  }

  .product-lightbox__image {
    max-height: none;
  }

  .product-lightbox__content {
    gap: 16px;
    padding: 34px 30px 30px;
  }

  .product-lightbox__content h3 {
    font-size: clamp(2rem, 3.8vw, 3rem);
  }

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

@media (min-width: 1024px) and (max-width: 1440px) {
  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
    gap: clamp(32px, 4vw, 48px);
  }

  .hero-slider-shell {
    width: min(100%, 480px);
  }
}

@media (min-width: 1441px) {
  .hero-slider-shell {
    width: min(100%, 540px);
  }
}

@media (min-width: 860px) and (max-width: 1099px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  .catalog-toolbar {
    margin-bottom: 20px;
  }

  .filter-group {
    gap: 10px;
  }

  .filter-chip {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .topbar {
    flex-wrap: nowrap;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
  }

  .topbar__menu-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }

  .topbar__nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    order: 4;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 50px rgba(18, 18, 18, 0.1);
    backdrop-filter: blur(16px);
    font-size: 0.94rem;
  }

  .topbar.is-menu-open .topbar__nav {
    display: flex;
  }

  .topbar__nav > a,
  .topbar__dropdown-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 16px;
    align-items: center;
  }

  .topbar__nav > a {
    display: inline-flex;
    color: var(--text);
  }

  .topbar__nav > a:hover,
  .topbar__nav > a:focus-visible {
    background: rgba(18, 18, 18, 0.04);
  }

  .topbar__actions {
    order: 3;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 0;
  }

  .topbar__dropdown {
    width: 100%;
  }

  .topbar__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .topbar__dropdown-menu {
    position: static;
    left: auto;
    min-width: 100%;
    margin-top: 6px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 8px;
    border-radius: 18px;
  }

  .topbar__dropdown:hover .topbar__dropdown-menu,
  .topbar__dropdown:focus-within .topbar__dropdown-menu {
    transform: none;
  }

  .topbar__dropdown.is-open .topbar__dropdown-menu {
    display: grid;
  }

  .brand__logo {
    height: 36px;
  }

  .cart-trigger,
  .topbar__menu-toggle {
    width: 44px;
    height: 44px;
  }

  .editorial-stage {
    min-height: auto;
  }

  .editorial-stage__media {
    min-height: 420px;
  }

  .hero__visual {
    justify-items: center;
  }

  .hero-slider-shell,
  .hero-slider {
    width: min(100%, 450px);
    aspect-ratio: 4 / 5;
    min-height: auto;
  }

  .hero-slider__control {
    width: 46px;
    height: 46px;
  }

  .hero__cta {
    margin-top: 24px;
  }

  .hero-slider__control--prev {
    left: 20px;
  }

  .hero-slider__control--next {
    right: 20px;
  }

  .hero-slider__dots {
    right: 20px;
    bottom: 20px;
    left: auto;
    gap: 8px;
  }

  .hero-slider__dot.is-active {
    width: 24px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collection-view__header {
    gap: 18px;
  }

  .collection-grid__cta {
    margin-top: 28px;
  }

  .collection-grid__button {
    width: min(100%, 220px);
  }

  .collection-card__media {
    aspect-ratio: 4 / 4.9;
    border-radius: 26px;
  }

  .collection-card__title {
    font-size: 1.18rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .product-card {
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
  }

  .product-card__media {
    aspect-ratio: 5 / 6;
    border-radius: 20px;
  }

  .product-card__media-button::before {
    display: none;
  }

  .product-card__discount-badge {
    top: 12px;
    right: 12px;
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .product-card__meta {
    margin: 0 0 8px;
    padding: 6px 9px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .product-card__header {
    display: grid;
    gap: 8px;
  }

  .product-card h3 {
    font-size: clamp(1.02rem, 2.8vw, 1.18rem);
    line-height: 1.08;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__price {
    width: fit-content;
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .product-price {
    gap: 4px;
  }

  .product-price--card {
    justify-items: start;
    text-align: left;
  }

  .product-price--card .product-price__row {
    justify-content: flex-start;
  }

  .product-price__badge {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .product-price__original {
    font-size: 0.72rem;
  }

  .product-card__description {
    display: none;
  }

  .product-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-card__actions .button {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.72rem;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
  }

  .product-lightbox {
    padding: 10px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .floating-quicklink {
    right: 14px;
    bottom: 84px;
    width: 58px;
    height: 58px;
  }

  .product-lightbox__dialog {
    width: min(100%, 600px);
    max-height: calc(100dvh - 20px);
    border-radius: 26px;
    grid-template-rows: minmax(300px, 46vh) minmax(0, 1fr);
  }

  .product-view__header {
    margin-bottom: 20px;
  }

  .product-view__card.product-lightbox__dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .product-view__card .product-lightbox__media {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5.2;
  }

  .product-view__card .product-lightbox__content {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .product-lightbox__media {
    min-height: auto;
    height: 100%;
    max-height: 46vh;
    padding: 0;
  }

  .product-lightbox__image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }

  .product-lightbox__gallery-nav {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 12px;
  }

  .product-lightbox__viewer-back {
    top: 14px;
    left: 14px;
    padding-inline: 24px;
  }

  .product-lightbox__gallery-nav--prev {
    left: 14px;
  }

  .product-lightbox__gallery-nav--next {
    right: 14px;
  }

  .product-lightbox__gallery-dots {
    bottom: 14px;
    gap: 8px;
    padding: 8px 11px;
  }

  .product-lightbox__content {
    gap: 14px;
    padding: 22px 20px 22px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-lightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .product-lightbox__meta {
    padding: 7px 11px;
    font-size: 0.72rem;
  }

  .product-lightbox__price {
    margin: -2px 0 0;
  }

  .product-lightbox__price-value {
    font-size: 1.32rem;
  }

  .product-lightbox__content h3 {
    font-size: clamp(1.85rem, 7.4vw, 2.65rem);
    line-height: 1;
  }

  .product-lightbox__content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .product-lightbox__sizes {
    gap: 10px;
    padding-top: 2px;
  }

  .product-lightbox__label {
    font-size: 0.74rem;
  }

  .product-lightbox__size-list {
    gap: 8px;
  }

  .product-lightbox__size {
    min-width: 46px;
    min-height: 42px;
    padding: 0 14px;
  }

  .product-lightbox__actions {
    gap: 10px;
    padding-top: 2px;
  }

  .product-lightbox__actions .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__dialog {
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__media {
    min-height: 0;
    height: 100%;
    max-height: none;
    padding: 78px 14px 52px;
  }

  .cart-drawer__panel {
    width: 100vw;
    padding: 18px 16px 16px;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-summary,
  .cart-drawer__notice {
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .catalog-grid {
    gap: 14px 10px;
  }

  .product-card {
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .product-card__media {
    aspect-ratio: 5 / 6.2;
    border-radius: 18px;
  }

  .product-card__discount-badge {
    top: 10px;
    right: 10px;
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .product-card__meta {
    margin-bottom: 6px;
    padding: 5px 8px;
    font-size: 0.6rem;
  }

  .product-card h3 {
    font-size: clamp(0.95rem, 4vw, 1.08rem);
  }

  .product-card__price {
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .product-price__badge {
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .product-price__original {
    font-size: 0.68rem;
  }

  .product-card__actions .button {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .product-lightbox {
    padding: 8px;
  }

  .product-lightbox__dialog {
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
    grid-template-rows: minmax(250px, 42vh) minmax(0, 1fr);
  }

  .product-view__card.product-lightbox__dialog {
    max-height: none;
  }

  .product-view__card .product-lightbox__media {
    max-height: none;
    aspect-ratio: 4 / 5.35;
  }

  .product-view__card .product-lightbox__content {
    padding-bottom: 24px;
  }

  .product-lightbox__media {
    max-height: 42vh;
    padding: 0;
  }

  .product-lightbox__gallery-nav {
    min-width: 40px;
    min-height: 40px;
    padding-inline: 11px;
  }

  .product-lightbox__viewer-back {
    top: 12px;
    left: 12px;
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.78rem;
  }

  .product-lightbox__gallery-nav span {
    font-size: 1.24rem;
  }

  .product-lightbox__gallery-dots {
    bottom: 12px;
    gap: 7px;
    padding: 7px 10px;
  }

  .product-lightbox__content {
    gap: 12px;
    padding: 18px 16px 18px;
  }

  .product-lightbox__content h3 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .product-lightbox__size-list {
    gap: 7px;
  }

  .product-lightbox__actions .button {
    min-height: 46px;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__dialog {
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__media {
    min-height: 0;
    height: 100%;
    padding: 72px 10px 44px;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav {
    min-width: 42px;
    min-height: 42px;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav--prev {
    left: 10px;
  }

  .product-lightbox.is-image-viewer-open .product-lightbox__gallery-nav--next {
    right: 10px;
  }
}
