*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --sand: #D4C5A9;
  --terra: #9B6B4B;
  --terra-light: #C4896A;
  --terra-dark: #6B3F25;
  --charcoal: #2C2420;
  --warm-white: #FAF8F4;
  --text-main: #2C2420;
  --text-muted: #7A6A5E;
  --text-light: #A89880;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-main);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(155,107,75,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-logo span { font-style: italic; color: var(--terra); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-right {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-cart {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-main); text-decoration: none; cursor: pointer;
  border-bottom: 0.5px solid var(--text-main);
  padding-bottom: 1px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
}
.hero-tag {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag::before {
  content: ''; display: block; width: 32px; height: 0.5px; background: var(--terra);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-main);
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic; color: var(--terra);
}
.hero-subtitle {
  font-size: 0.9rem; line-height: 1.8; color: var(--text-muted);
  max-width: 380px; margin-bottom: 3rem;
}
.hero-cta-group { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--terra); color: var(--warm-white);
  padding: 0.9rem 2.2rem;
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; transition: background 0.25s;
}
.btn-primary:hover { background: var(--terra-dark); }
.btn-secondary {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  border-bottom: 0.5px solid var(--sand);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--terra); border-color: var(--terra); }

.hero-right {
  position: relative; overflow: hidden;
  background: var(--cream-dark);
}
.photo-placeholder {
  width: 100%; height: 100%; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--cream-dark);
  position: relative;
}
.photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(155,107,75,0.04) 30px,
    rgba(155,107,75,0.04) 31px
  );
}
.photo-label {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: var(--terra-light); opacity: 0.7; text-align: center;
  padding: 1rem; position: relative; z-index: 1;
}
.photo-label small {
  display: block; font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); margin-top: 0.5rem; font-style: normal;
}

.hero-float-tag {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  background: var(--warm-white);
  padding: 1rem 1.25rem;
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.6;
  max-width: 220px;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-float-tag strong {
  display: block; font-weight: 500;
  color: var(--text-main); font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.band {
  background: var(--terra);
  padding: 1rem 3rem;
  display: flex; align-items: center; justify-content: center; gap: 4rem;
  overflow: hidden;
}
.band-item {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,248,244,0.85); white-space: nowrap;
  display: flex; align-items: center; gap: 0.75rem;
}
.band-dot { width: 3px; height: 3px; background: rgba(250,248,244,0.5); border-radius: 50%; }

.origin {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.origin-photo { background: var(--cream); position: relative; }
.origin-photo .photo-placeholder { min-height: 100%; }
.origin-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.origin-content {
  padding: 6rem 5rem 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.section-tag {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--terra);
}
.origin-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 2rem;
}
.origin-title em { font-style: italic; color: var(--terra); }
.origin-text {
  font-size: 0.9rem; line-height: 1.9; color: var(--text-muted);
  margin-bottom: 1.5rem; max-width: 440px;
}
.origin-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
  border-top: 0.5px solid var(--sand); padding-top: 2.5rem;
}
.stat-number {
  font-family: var(--serif); font-size: 2.5rem;
  font-weight: 300; color: var(--terra); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-muted);
  margin-top: 0.4rem; line-height: 1.5;
}

.products { padding: 7.2rem 3rem; background: var(--warm-white); }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem;
}
.products .section-header {
  margin-bottom: 4.2rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.2;
}
.products .section-title {
  font-size: clamp(2.16rem, 3.6vw, 3.36rem);
}
.section-title em { font-style: italic; color: var(--terra); }
.section-subtitle {
  font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem;
}
.see-all {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  border-bottom: 0.5px solid var(--sand); padding-bottom: 2px;
  white-space: nowrap; transition: color 0.2s;
}
.see-all:hover { color: var(--terra); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.product-card { cursor: pointer; }
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-actions {
  margin-top: 0.75rem;
}
.btn-outline.mini {
  padding: 0.45rem 0.9rem;
  font-size: 0.58rem;
}
.product-img {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  position: relative; overflow: hidden;
  margin-bottom: 1rem;
}
.product-img .photo-placeholder { min-height: 100%; }
.product-img .photo-label { font-size: 0.85rem; }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--terra); color: var(--warm-white);
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}
.product-name {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 400; color: var(--text-main);
  margin-bottom: 0.2rem;
}
.product-variant {
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.product-price {
  font-size: 0.85rem; color: var(--terra);
  font-weight: 400; letter-spacing: 0.05em;
}

.kits { padding: 6rem 3rem; background: var(--cream); }
.kits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 3.5rem;
}
.kit-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.kit-card:hover { transform: translateY(-3px); }
.kit-photo { background: var(--cream-dark); }
.kit-photo .photo-placeholder { min-height: 280px; }
.kit-content {
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; justify-content: center;
}
.kit-tag {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
}
.kit-name {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 300; line-height: 1.25; margin-bottom: 0.75rem;
}
.kit-desc {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.kit-price {
  font-size: 0.9rem; color: var(--terra); margin-bottom: 1rem;
}
.btn-outline {
  display: inline-block;
  border: 0.5px solid var(--terra); color: var(--terra);
  padding: 0.6rem 1.25rem;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; background: none;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.btn-outline:hover { background: var(--terra); color: var(--warm-white); }

.material {
  padding: 7rem 3rem;
  background: var(--charcoal); color: var(--warm-white);
  position: relative; overflow: hidden;
}
.material-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(700px, 70vw, 1100px);
  height: auto;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none; user-select: none;
  z-index: 0;
}
.material-inner {
  max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.material-tag {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.material-tag::before, .material-tag::after {
  content: ''; display: block; width: 40px; height: 0.5px; background: var(--terra-light);
}
.material-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.75rem;
  color: var(--warm-white);
}
.material-title em { font-style: italic; color: var(--terra-light); }
.material-text {
  font-size: 0.9rem; line-height: 1.9;
  color: rgba(250,248,244,0.65); max-width: 600px; margin: 0 auto 3.5rem;
}
.material-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3.5rem; text-align: left;
}
.pillar {
  border-top: 0.5px solid rgba(250,248,244,0.15);
  padding-top: 1.5rem;
}
.pillar-icon {
  font-size: 1.5rem; margin-bottom: 1rem; color: var(--terra-light);
}
.pillar-title {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 400; margin-bottom: 0.6rem;
  color: var(--warm-white);
}
.pillar-text {
  font-size: 0.8rem; line-height: 1.7;
  color: rgba(250,248,244,0.55);
}

.lifestyle {
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: 55vh;
}
.lifestyle-cell {
  background: var(--cream-dark);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.lifestyle-cell .photo-placeholder { min-height: 100%; }
.lifestyle-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.lifestyle-cell:hover .lifestyle-overlay { opacity: 1; }
.lifestyle-caption {
  color: var(--warm-white); font-family: var(--serif);
  font-size: 1rem; font-style: italic;
}

.newsletter {
  padding: 6rem 3rem; background: var(--cream-dark); text-align: center;
}
.newsletter-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1rem;
}
.newsletter-title em { font-style: italic; color: var(--terra); }
.newsletter-text {
  font-size: 0.9rem; color: var(--text-muted); max-width: 440px;
  margin: 0 auto 2.5rem; line-height: 1.8;
}
.newsletter-form {
  display: flex; justify-content: center; gap: 0; max-width: 460px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 1rem 1.25rem; border: 0.5px solid var(--sand);
  background: var(--warm-white); font-family: var(--sans);
  font-size: 0.85rem; color: var(--text-main); outline: none;
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { border-color: var(--terra); }
.newsletter-form button {
  background: var(--terra); color: var(--warm-white);
  border: none; padding: 1rem 1.75rem;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--terra-dark); }

footer {
  background: var(--charcoal); color: var(--warm-white);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(250,248,244,0.1);
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.8rem;
  font-weight: 300; color: var(--warm-white);
  margin-bottom: 0.75rem;
}
.footer-brand-name em { font-style: italic; color: var(--terra-light); }
.footer-tagline {
  font-size: 0.8rem; color: rgba(250,248,244,0.45);
  line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,248,244,0.55); text-decoration: none;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--terra-light); }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,248,244,0.35); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(250,248,244,0.55); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--warm-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 0.72rem; color: rgba(250,248,244,0.3);
}
.footer-origin {
  font-size: 0.7rem; color: rgba(250,248,244,0.3);
  font-family: var(--serif); font-style: italic;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: fadeUp 0.8s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--text-main);
  transition: all 0.3s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(250,248,244,0.98); backdrop-filter: blur(8px);
  z-index: 99; padding: 1.5rem 2rem 2rem;
  border-bottom: 0.5px solid rgba(155,107,75,0.15);
  flex-direction: column; gap: 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 0.9rem 0; border-bottom: 0.5px solid rgba(155,107,75,0.1);
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--terra); }

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-top: 60px;
  }
  .hero-left {
    order: 2;
    padding: 2.5rem 1.5rem 3rem;
  }
  .hero-right {
    order: 1;
    aspect-ratio: 5 / 7;
    height: auto;
    min-height: 380px;
    max-height: 560px;
  }
  .hero-right img {
    object-position: center top;
  }
  .hero-float-tag {
    position: static;
    margin: 0 1.5rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    max-width: none;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .band {
    padding: 0.85rem 1rem;
    gap: 0;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .band::-webkit-scrollbar { display: none; }
  .band-item { font-size: 0.6rem; white-space: nowrap; padding: 0 0.75rem; }
  .band-dot { flex-shrink: 0; }

  .origin {
    grid-template-columns: 1fr;
  }
  .origin-photo {
    height: 70vw; min-height: 260px; max-height: 380px;
  }
  .origin-photo .photo-placeholder { min-height: 100%; }
  .origin-content {
    padding: 2.5rem 1.5rem 3rem;
  }
  .origin-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .stat-number { font-size: 2rem; }

  .products { padding: 4.2rem 1.25rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 2rem; }
  .products .section-header { margin-bottom: 2.4rem; }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .product-name { font-size: 0.95rem; }
  .product-variant { font-size: 0.65rem; }

  .kits { padding: 3.5rem 1.25rem; }
  .kits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .kit-card {
    grid-template-columns: 1fr;
  }
  .kit-photo .photo-placeholder { min-height: 220px; }
  .kit-content { padding: 1.5rem; }

  .material { padding: 4rem 1.5rem; }
  .material-watermark { width: clamp(320px, 80vw, 600px); }
  .material-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lifestyle {
    grid-template-columns: 1fr;
    height: auto;
  }
  .lifestyle-cell { height: 70vw; }

  .newsletter { padding: 3.5rem 1.5rem; }
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  .newsletter-form input { width: 100%; }
  .newsletter-form button { width: 100%; padding: 1rem; }

  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.collection-page {
  padding: 8.5rem 3rem 5rem;
  background: var(--warm-white);
}
.collection-hero {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.collection-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.collection-hero p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.product-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  padding: 8rem 3rem 5rem;
  align-items: center;
}
.product-media .photo-placeholder {
  min-height: 500px;
  border: 1px solid rgba(155,107,75,0.12);
}
.product-info {
  max-width: 520px;
}
.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--terra);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.product-detail-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.product-detail-price {
  font-size: 1.2rem;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 1rem;
}
.product-detail-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-highlights {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.detail-card {
  padding: 0.95rem 1rem;
  border: 0.5px solid rgba(155,107,75,0.14);
  background: var(--warm-white);
  color: var(--text-main);
  font-size: 0.85rem;
}

.cart-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 30px rgba(44, 36, 32, 0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 200;
}
.cart-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .collection-page { padding: 7rem 1.25rem 4rem; }
  .product-shell {
    grid-template-columns: 1fr;
    padding: 7rem 1.25rem 4rem;
  }
  .product-media .photo-placeholder { min-height: 360px; }
  .product-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terra);
  color: var(--warm-white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(44, 36, 32, 0.18);
  z-index: 250;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--terra-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(44, 36, 32, 0.24);
}
.whatsapp-float svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}
@media (max-width: 480px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 5rem;
    width: 3rem;
    height: 3rem;
  }
  .whatsapp-float svg {
    width: 1.45rem;
    height: 1.45rem;
  }
}
