/** Shopify CDN: Minification failed

Line 45:14 Expected identifier but found whitespace
Line 45:15 Unexpected "1."
Line 82:0 Expected identifier but found "55"

**/
/* Casa Nuvé — custom theme, base design system */

:root {
  --color-cream: #F7F4EE;
  --color-panel: #E7DED1;
  --color-sand: #BCAC94;
  --color-taupe: #988B6F;
  --color-moss: #6E6D4A;
  --color-olive: #404328;
  --color-olive-dark: #2E3019;
  --color-ink: #2B2A1E;
  --color-white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(40px, 5vw, 84px);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;


  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.
/* Casa Nuve - product image lightbox */
[data-gallery-main] img[data-zoomable] { cursor: zoom-in; }
html.casa-nuve-lightbox-open { overflow: hidden; }
[data-casa-nuve-lightbox] {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(20, 20, 14, 0.94);
  backdrop-filter: blur(6px);
}
[data-casa-nuve-lightbox][hidden] { display: none !important; }
[data-casa-nuve-lightbox] img {
  width: auto;
  height: auto;
  max-width: min(94vw, 1500px);
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
[data-casa-nuve-lightbox-close] {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  background: rgba(247,244,238,0.96);
  color: #2b2a1e;
  font-size: 34px;
  line-height: 1;
}
55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  font-size: 100%;
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--color-olive-dark);
  letter-spacing: -0.01em;
}

.page-width {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.section--tight { padding-top: calc(var(--section-space) * .5); padding-bottom: calc(var(--section-space) * .5); }
.section--olive { background: var(--color-olive-dark); color: var(--color-panel); }
.section--panel { background: var(--color-panel); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: 10px;
}
.section--olive .eyebrow { color: var(--color-sand); }

.section-heading {
  font-size: clamp(30px, 3.4vw, 46px);
  max-width: 46rem;
}
.section-heading--center { margin: 0 auto; text-align: center; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.section-header--center { flex-direction: column; align-items: center; text-align: center; }

/* Buttons — rounded pill, per brand direction */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
  background: transparent;
  color: var(--color-olive-dark);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--color-olive-dark); color: var(--color-cream); transform: translateY(-1px); }

.btn--solid {
  background: var(--color-olive-dark);
  color: var(--color-cream);
  border-color: var(--color-olive-dark);
}
.btn--solid:hover { background: var(--color-moss); border-color: var(--color-moss); }

/* Solid white pill for overlays on photography, matching editorial reference style */
.btn--on-dark {
  background: var(--color-cream);
  color: var(--color-olive-dark);
  border-color: var(--color-cream);
}
.btn--on-dark:hover { background: var(--color-olive-dark); color: var(--color-cream); border-color: var(--color-cream); }

.btn--full { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn--small { padding: 11px 22px; font-size: 10px; }

.link-underline {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.link-underline::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: currentColor;
  transform: scaleX(1); transform-origin: left;
  transition: transform .3s var(--ease);
}

/* Announcement bar */
.announcement-bar {
  background: var(--color-olive-dark);
  color: var(--color-panel);
  text-align: center;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px var(--gutter);
}

/* Header */
/* Shopify wraps each header-group section in its own .shopify-section div; position:sticky
   on the inner <header> alone is constrained by that wrapper's own box in some browsers,
   so the sticky rule is applied to the wrapper too (targeted narrowly so the announcement-bar
   wrapper, which shares the same group class, is not made sticky). */
.shopify-section-group-header-group:has(.site-header) {
  position: sticky; top: 0; z-index: 40;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,244,238,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(64,67,40,.1);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--gutter);
  gap: 16px;
  transition: padding .3s var(--ease);
}
.site-header__nav { display: flex; gap: 30px; align-items: center; }
.site-header__nav a {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 0; position: relative; white-space: nowrap;
}
.site-header__nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--color-olive-dark); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-header__logo { display: flex; justify-content: center; }
.site-header__logo img { height: 34px !important; width: auto !important; transition: height .3s var(--ease); }
.site-header__logo span {
  font-family: var(--font-display); font-size: 24px; letter-spacing: .04em; color: var(--color-olive-dark);
}

.site-header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.site-header__actions button, .site-header__actions a { display: flex; align-items: center; position: relative; }
.site-header__actions svg { width: 19px; height: 19px; stroke: var(--color-olive-dark); }
.cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--color-olive-dark); color: var(--color-cream);
  font-size: 10px; font-weight: 700; line-height: 1;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header-menu-toggle { display: none; align-items: center; justify-content: center; }
.header-menu-toggle svg { width: 22px; height: 22px; stroke: var(--color-olive-dark); }

/* Sticky header — compact on scroll */
.site-header.is-scrolled .site-header__inner { padding-top: 8px; padding-bottom: 8px; }
.site-header.is-scrolled .site-header__logo img { height: 26px !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--color-cream);
  border: 1px solid rgba(64,67,40,.12);
  box-shadow: 0 18px 40px rgba(43,42,30,.10);
  padding: 20px; min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
.has-dropdown:hover .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 8px 4px;
}
.dropdown-panel a:hover { color: var(--color-moss); }

/* Language switcher */
.lang-switcher__current {
  background: none; border: 0; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--color-olive-dark); padding: 4px;
}
.lang-switcher .dropdown-panel { min-width: 140px; }
.lang-switcher .dropdown-panel button {
  background: none; border: 0; text-align: left; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 4px; color: var(--color-ink); cursor: pointer;
}
.lang-switcher .dropdown-panel button:hover, .lang-switcher .dropdown-panel button.is-active { color: var(--color-moss); }

/* Hero carousel */
.hero { position: relative; overflow: hidden; background: var(--color-panel); height: clamp(440px, 74vh, 780px); }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero__media { position: relative; width: 100%; height: 100%; }
.hero__media img, .hero__media picture { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,42,30,.08) 0%, rgba(43,42,30,.48) 100%); }
.hero__content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 24px; color: var(--color-cream);
}
.hero__eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px; color: var(--color-sand); }
.hero__title { font-size: clamp(40px, 7vw, 84px); max-width: 18ch; color: var(--color-cream); }
.hero__subtitle { margin-top: 14px; max-width: 34rem; font-size: 17px; opacity: .92; }
.hero__actions { margin-top: 24px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero__dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 5;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: rgba(247,244,238,.45); border: 0; cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__dot.is-active { background: var(--color-cream); transform: scale(1.3); }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(43,42,30,.2); border: 1px solid rgba(247,244,238,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-cream); backdrop-filter: blur(6px);
  transition: background .3s var(--ease);
}
.hero__arrow:hover { background: rgba(43,42,30,.4); }
.hero__arrow svg { width: 17px; height: 17px; stroke: currentColor; }
.hero__arrow--prev { left: 22px; transform: translateY(-50%) rotate(180deg); }
.hero__arrow--next { right: 22px; }
@media (max-width: 599px) {
  .hero__arrow { width: 38px; height: 38px; }
  .hero__arrow--prev { left: 12px; }
  .hero__arrow--next { right: 12px; }
}

/* Room grid */
.room-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.room-tile { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--color-panel); }
.room-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.room-tile:hover img { transform: scale(1.06); }
.room-tile__scrim { position: absolute; inset: 0; background: rgba(43,42,30,.22); transition: background .35s var(--ease); }
.room-tile:hover .room-tile__scrim { background: rgba(43,42,30,.34); }
.room-tile__label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 16px; color: var(--color-cream);
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 600;
  letter-spacing: .01em;
}

/* Product grid & cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: clamp(16px, 2.2vw, 30px) clamp(14px, 1.6vw, 22px);
}
.product-card { display: flex; flex-direction: column; }
.product-card__media {
  position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--color-panel);
  margin-bottom: 12px;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .4s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.045); }
.product-card__media img.is-back { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-card__media img.is-back { opacity: 1; }
.product-card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--color-cream); color: var(--color-olive-dark);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.product-card__badge--sale { background: var(--color-olive-dark); color: var(--color-cream); }
.product-card__vendor { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-moss); margin-bottom: 4px; }
.product-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--color-olive-dark); }
.product-card__price { margin-top: 4px; font-size: 14px; color: var(--color-taupe); }
.product-card__price s { opacity: .6; margin-right: 6px; }

/* Brand statement */
.brand-statement { text-align: center; }
.brand-statement blockquote {
  margin: 0 auto; max-width: 42rem;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px); color: inherit; line-height: 1.35;
}
.brand-statement cite { display: block; margin-top: 16px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-style: normal; opacity: .8; }

/* Newsletter */
.newsletter { text-align: center; }
.newsletter__form { display: flex; max-width: 480px; margin: 18px auto 0; border: 1px solid var(--color-olive-dark); border-radius: var(--radius-pill); overflow: hidden; }
.newsletter__form input { padding-left: 24px; }
.newsletter__form input { flex: 1; border: 0; background: transparent; padding: 16px 18px; font-family: var(--font-body); font-size: 14px; color: var(--color-ink); }
.newsletter__form input:focus { outline: none; }
.newsletter__form button { border: 0; background: var(--color-olive-dark); color: var(--color-cream); padding: 0 22px; }

/* Footer */
.site-footer { background: var(--color-olive-dark); color: var(--color-panel); }
.site-footer a:hover { color: var(--color-cream); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding: calc(var(--section-space) * .6) 0 40px; }
.footer-brand__logo { height: 30px; margin-bottom: 14px; filter: brightness(0) invert(1) opacity(.92); }
.footer-brand p { max-width: 30rem; font-size: 14px; opacity: .8; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-sand); margin-bottom: 14px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; opacity: .85; }
.footer-bottom {
  border-top: 1px solid rgba(247,244,238,.14);
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; opacity: .7; flex-wrap: wrap; gap: 10px;
}
.footer-bottom__payment { display: flex; gap: 8px; opacity: .6; }

/* Cart drawer */
.cart-drawer__overlay {
  position: fixed; inset: 0; background: rgba(43,42,30,.4); z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
}
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--color-cream); z-index: 61; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
[data-cart-open] .cart-drawer__overlay { opacity: 1; visibility: visible; }
[data-cart-open] .cart-drawer:not(.wishlist-drawer) { transform: translateX(0); }
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--gutter); border-bottom: 1px solid rgba(64,67,40,.12); }
.cart-drawer__title { font-family: var(--font-display); font-size: 22px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 8px var(--gutter); }
.cart-line { display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(64,67,40,.08); }
.cart-line img { width: 84px; height: 100px; object-fit: cover; background: var(--color-panel); }
.cart-line__title { font-family: var(--font-display); font-size: 17px; }
.cart-line__qty { display: inline-flex; align-items: center; border: 1px solid var(--color-taupe); margin-top: 8px; }
.cart-line__qty button { width: 28px; height: 28px; background: none; border: 0; }
.cart-line__qty input { width: 32px; text-align: center; border: 0; background: none; font-size: 13px; }
.cart-line__remove { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-taupe); margin-top: 6px; }
.cart-drawer__footer { padding: 16px var(--gutter) 22px; border-top: 1px solid rgba(64,67,40,.12); }
.cart-drawer__subtotal { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; }
.cart-drawer__empty { padding: 60px var(--gutter); text-align: center; color: var(--color-taupe); }

/* Forms */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; color: var(--color-taupe); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 15px;
  border: 1px solid var(--color-taupe); background: var(--color-cream); color: var(--color-ink);
  border-radius: var(--radius-sm);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--color-olive-dark); }

/* Product page */
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,4vw,56px); }
.product-gallery__main { aspect-ratio: 4/5; background: var(--color-panel); overflow: hidden; margin-bottom: 10px; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.product-gallery__thumbs img { aspect-ratio: 4/5; object-fit: cover; cursor: pointer; opacity: .55; transition: opacity .2s var(--ease); }
.product-gallery__thumbs img.is-active, .product-gallery__thumbs img:hover { opacity: 1; }
.product-info__vendor { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-moss); margin-bottom: 6px; }
.product-info__title { font-size: clamp(30px, 3.4vw, 42px); }
.product-info__price { margin-top: 8px; font-size: 22px; color: var(--color-olive-dark); }
.product-info__desc { margin: 14px 0; font-size: 15px; color: var(--color-ink); opacity: .85; }
.product-form { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(64,67,40,.15); }
.qty-selector { display: inline-flex; align-items: center; border: 1px solid var(--color-taupe); margin-right: 14px; }
.qty-selector button { width: 42px; height: 52px; background: none; border: 0; font-size: 16px; }
.qty-selector input { width: 44px; text-align: center; border: 0; background: none; font-size: 15px; }
.product-form__row { display: flex; gap: 14px; }
.product-accordion { margin-top: 16px; border-top: 1px solid rgba(64,67,40,.15); }
.accordion-item { border-bottom: 1px solid rgba(64,67,40,.15); }
.accordion-item summary {
  list-style: none; cursor: pointer; padding: 12px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item[open] summary svg { transform: rotate(45deg); }
.accordion-item summary svg { transition: transform .25s var(--ease); }
.accordion-item__body { padding-bottom: 14px; font-size: 14px; opacity: .85; }

/* Collection */
.collection-header { text-align: center; margin-bottom: clamp(24px,3.5vw,44px); }
.collection-header p { max-width: 40rem; margin: 10px auto 0; opacity: .75; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 13px; }
.collection-toolbar select { border: 1px solid var(--color-taupe); background: transparent; padding: 8px 12px; font-family: var(--font-body); }
.empty-state { text-align: center; padding: 80px var(--gutter); }

/* Breadcrumb */
.breadcrumb { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-taupe); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--color-olive-dark); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid transparent; }
.pagination a:hover { border-color: var(--color-olive-dark); }
.pagination .is-active { border-color: var(--color-olive-dark); }

/* Utility */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Mobile */
@media (max-width: 989px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-header__nav { display: none; }
  .header-menu-toggle { display: flex; }
  .room-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { --cols: 2 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product { grid-template-columns: 1fr; }
}
@media (max-width: 599px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
}

/* Sticky Add to Cart — shown on desktop AND mobile once you scroll past the main
   Add to Cart button (JS already re-checks this on every scroll tick regardless of
   viewport, see global.js). Uses transform instead of display so it can transition
   in/out smoothly; the outer bar is edge-to-edge, the inner wrapper re-uses the same
   max-width as the rest of the page so it doesn't look stretched on wide screens. */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: var(--color-cream); border-top: 1px solid rgba(64,67,40,.12);
  box-shadow: 0 -8px 24px rgba(43,42,30,.10);
  transform: translateY(100%); transition: transform .3s var(--ease);
}
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px var(--gutter);
}
.sticky-atc__info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sticky-atc__info img { width: 44px; height: 52px; object-fit: cover; flex-shrink: 0; background: var(--color-panel); }
.sticky-atc__text { min-width: 0; }
.sticky-atc__title { font-family: var(--font-display); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.sticky-atc__price { font-size: 13px; color: var(--color-taupe); margin-top: 2px; }
.sticky-atc__btn { flex-shrink: 0; padding: 12px 20px; font-size: 10px; white-space: nowrap; }
@media (min-width: 990px) {
  .sticky-atc__title { max-width: 20vw; }
  .sticky-atc__btn { padding: 13px 32px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0 auto 0 0; width: min(360px,88vw); background: var(--color-cream); z-index: 61;
  transform: translateX(-100%); transition: transform .35s var(--ease); padding: 24px var(--gutter); overflow-y: auto;
}
[data-mobile-nav-open] .mobile-nav { transform: translateX(0); }
[data-mobile-nav-open] .cart-drawer__overlay { opacity: 1; visibility: visible; }
.mobile-nav__item { border-bottom: 1px solid rgba(64,67,40,.1); padding: 14px 0; }
.mobile-nav__item > a, .mobile-nav__item > button, .mobile-nav__item > .mobile-nav__heading {
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; display: flex; justify-content: space-between; width: 100%; background: none; border: 0; color: var(--color-ink);
}
.mobile-nav__heading { color: var(--color-taupe); }
.mobile-nav__sub { display: block; padding-left: 12px; margin-top: 12px; }
.mobile-nav__sub a { display: block; padding: 8px 0; font-size: 13px; opacity: .8; color: var(--color-ink); }
.mobile-nav__footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(64,67,40,.1); display: flex; flex-direction: column; gap: 14px; }
.mobile-nav__footer-row { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav__footer-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-taupe); }
.mobile-nav__lang-options { display: flex; gap: 10px; }
.mobile-nav__lang-btn { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border: 1px solid var(--color-taupe) !important; border-radius: var(--radius-pill); color: var(--color-ink); }
.mobile-nav__lang-btn.is-active { background: var(--color-olive-dark); color: var(--color-cream); border-color: var(--color-olive-dark) !important; }
.mobile-nav__footer-link { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--color-ink); }
.mobile-nav__footer-link svg { width: 16px; height: 16px; stroke: currentColor; }

/* Fade-in on scroll */
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* Casa Nuve product gallery carousel controls */
[data-casa-nuve-lightbox-prev],
[data-casa-nuve-lightbox-next] {
  position: fixed;
  z-index: 10002;
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(26, 24, 20, 0.82);
  color: #fff;
  font: 300 42px/46px Georgia, serif;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

[data-casa-nuve-lightbox-prev] { left: 24px; }
[data-casa-nuve-lightbox-next] { right: 24px; }

[data-casa-nuve-lightbox-prev]:hover,
[data-casa-nuve-lightbox-next]:hover,
[data-casa-nuve-lightbox-prev]:focus-visible,
[data-casa-nuve-lightbox-next]:focus-visible {
  background: #5f4b2d;
  outline: 2px solid #fff;
  outline-offset: 3px;
  transform: scale(1.05);
}

[data-casa-nuve-lightbox-counter] {
  position: fixed;
  z-index: 10002;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 24, 20, 0.82);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
}

[data-gallery-thumb] {
  cursor: zoom-in;
}

@media (max-width: 749px) {
  [data-casa-nuve-lightbox-prev],
  [data-casa-nuve-lightbox-next] {
    top: auto;
    bottom: 20px;
    width: 46px;
    height: 46px;
    margin-top: 0;
    font-size: 36px;
    line-height: 40px;
  }

  [data-casa-nuve-lightbox-prev] { left: 18px; }
  [data-casa-nuve-lightbox-next] { right: 18px; }
  [data-casa-nuve-lightbox-counter] { bottom: 26px; }
}
