@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Syne:wght@400;600;700;800&display=swap');

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: #F7F5F2;
  color: #0C0C0C;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid #0C0C0C; outline-offset: 3px; }

/* =====================================================
   COLOUR SYSTEM
===================================================== */
:root {
  --cream:        #F7F5F2;
  --ink:          #0C0C0C;
  --pastel-blue:  #B8D8F8;
  --pastel-sage:  #C1E5C8;
  --pastel-blush: #F5C1C8;
  --muted:        rgba(12,12,12,0.5);
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.section      { padding: 80px 0; }
.section-alt  { background: var(--cream); }

/* =====================================================
   HEADER
===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 12, 12, 0.07);
  transition: box-shadow 300ms ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(12, 12, 12, 0.07);
}
.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
}
.nav-model-canvas {
  width: 72px !important;
  height: 44px !important;
  display: block;
  cursor: pointer;
}
.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity 200ms;
}
.nav-links a:hover { opacity: 0.45; }
.nav-soon { opacity: 0.3 !important; cursor: not-allowed; pointer-events: none; }
.nav-badge {
  font-size: 9px;
  background: var(--ink);
  color: white;
  padding: 1px 6px;
  border-radius: 99px;
  vertical-align: middle;
  margin-left: 4px;
}
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: opacity 200ms;
}
.btn-primary:hover { opacity: 0.75; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 250ms, opacity 250ms;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(247, 245, 242, 0.98);
  border-top: 1px solid rgba(12, 12, 12, 0.07);
}
.mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 4%;
  border-bottom: 1px solid rgba(12, 12, 12, 0.05);
  transition: background 200ms;
}
.mobile-menu a:hover { background: rgba(12, 12, 12, 0.04); }
.mobile-menu .mobile-cta {
  background: var(--ink);
  color: white;
  text-align: center;
  margin: 12px 4%;
  padding: 14px;
  border: none;
}
.mobile-menu .mobile-cta:hover { opacity: 0.8; background: var(--ink); }
.mobile-menu.open { display: flex; }

/* =====================================================
   HERO
===================================================== */
.hero {
  background: var(--ink);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 55%, rgba(184, 216, 248, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 85% 75%, rgba(193, 229, 200, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(245, 193, 200, 0.04) 0%, transparent 50%);
}
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 0 140px;
  width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
}
.hero-model-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-model-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}
.hero-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(68px, 11vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}
.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.45);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-solid {
  display: inline-block;
  background: white;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: opacity 200ms;
}
.btn-hero-solid:hover { opacity: 0.85; }
.btn-hero-ghost {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: border-color 200ms, color 200ms;
}
.btn-hero-ghost:hover { border-color: white; color: white; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}
@keyframes scrollDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100%); }
}
.scroll-bar {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.38);
  animation: scrollDown 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* =====================================================
   MARQUEE
===================================================== */
.marquee-wrap {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; flex-shrink: 0; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: white;
  padding: 0 22px;
}
.m-text {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 22px;
}
.m-dot        { font-size: 14px; padding: 0 8px; }
.m-dot.blue   { color: #B8D8F8; }
.m-dot.sage   { color: #C1E5C8; }
.m-dot.blush  { color: #F5C1C8; }

/* =====================================================
   SECTION TYPOGRAPHY
===================================================== */
.section-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.32);
  margin-bottom: 12px;
}
.section-kicker.light { color: rgba(255, 255, 255, 0.3); }
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title.light { color: white; }
.section-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* =====================================================
   COLLECTIONS GRID
===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  padding: 28px 24px 24px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: default;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(12, 12, 12, 0.09);
}
.card-blue  { background: rgba(184, 216, 248, 0.22); border-color: rgba(184, 216, 248, 0.45); }
.card-sage  { background: rgba(193, 229, 200, 0.22); border-color: rgba(193, 229, 200, 0.45); }
.card-blush { background: rgba(245, 193, 200, 0.22); border-color: rgba(245, 193, 200, 0.45); }
.card-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(12, 12, 12, 0.06);
  line-height: 1;
  margin-bottom: 4px;
  user-select: none;
}
.card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 6px;
  transition: opacity 200ms;
}
.card-link:hover { opacity: 0.45; }

/* =====================================================
   ABOUT
===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 48ch;
}
.arrow-link {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 6px;
  transition: opacity 200ms;
  display: inline-block;
}
.arrow-link:hover { opacity: 0.45; }
.pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar {
  padding: 24px 26px;
  border: 1px solid rgba(12, 12, 12, 0.05);
}
.pillar-blue  { background: rgba(184, 216, 248, 0.18); }
.pillar-sage  { background: rgba(193, 229, 200, 0.18); }
.pillar-blush { background: rgba(245, 193, 200, 0.18); }
.pillar-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: rgba(12, 12, 12, 0.06);
  margin-bottom: 8px;
  user-select: none;
}
.pillar h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   DROPS
===================================================== */
.drops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.drop-card {
  border: 1px solid rgba(12, 12, 12, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.drop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(12, 12, 12, 0.1);
}
.drop-visual {
  height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.drop-visual-blue  {
  background: linear-gradient(145deg,
    rgba(184, 216, 248, 0.35) 0%,
    rgba(184, 216, 248, 0.65) 100%);
}
.drop-visual-sage  {
  background: linear-gradient(145deg,
    rgba(193, 229, 200, 0.35) 0%,
    rgba(193, 229, 200, 0.65) 100%);
}
.drop-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.55);
  background: rgba(247, 245, 242, 0.92);
  padding: 5px 12px;
}
.drop-info {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
}
.drop-info h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.drop-info p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  margin-top: 8px;
  width: fit-content;
  transition: background 200ms, color 200ms;
}
.btn-outline:hover { background: var(--ink); color: white; }

/* =====================================================
   BRAND INFO
===================================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}
.info-box {
  background: white;
  border: 1px solid rgba(12, 12, 12, 0.07);
  padding: 30px 28px;
}
.info-box h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
}
.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.info-box li {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.list-dot {
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 4px;
}
.list-dot.blue  { color: #B8D8F8; }
.list-dot.sage  { color: #C1E5C8; }
.list-dot.blush { color: #F5C1C8; }

/* =====================================================
   JOIN / CONTACT
===================================================== */
.section-dark {
  background: var(--ink);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 52px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.form-full { grid-column: 1 / -1; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 200ms;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.28); }
.form-input:focus { border-color: rgba(255, 255, 255, 0.38); }
.form-input option { background: #1a1a1a; }
textarea.form-input { resize: vertical; min-height: 100px; }
.btn-submit {
  background: white;
  color: var(--ink);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 34px;
  cursor: pointer;
  transition: opacity 200ms;
}
.btn-submit:hover { opacity: 0.82; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 12px;
  transition: color 300ms;
}
.contact-info-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
}
.contact-info-box h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 26px;
}
.contact-info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-box li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-dot {
  color: var(--pastel-blue);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-box strong {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  display: block;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.contact-info-box p {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  display: block;
  margin-bottom: 12px;
}
.footer-model-canvas {
  width: 100px !important;
  height: 62px !important;
  display: block;
  cursor: pointer;
}
.footer-brand p {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  gap: 52px;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-title {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 2px;
}
.footer-nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 150ms;
}
.footer-nav a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
}
.footer-bottom p {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  transition: color 150ms;
}
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.5); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 960px) {
  .card-grid       { grid-template-columns: 1fr 1fr; }
  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .drops-grid      { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav      { justify-content: flex-start; }
  .hero-split      { grid-template-columns: 1fr; padding: 100px 0 60px; }
  .hero-model-wrap { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .section         { padding: 60px 0; }
  .navbar          { display: none; }
  .menu-toggle     { display: flex; }
  .card-grid       { grid-template-columns: 1fr; }
  .info-grid       { grid-template-columns: 1fr; }
  .form-grid       { grid-template-columns: 1fr; }
  .footer-nav      { gap: 28px; }
  .hero-model-wrap { aspect-ratio: 1 / 1; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .scroll-bar    { animation: none; }
}

/* =====================================================
   SHOPIFY PRODUCTS
===================================================== */
.products-section {
  background: #060606;
  color: white;
  padding: 100px 40px;
}

.products-section h2 {
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.product-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  background: rgba(255,255,255,0.04);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-card p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.product-btn {
  display: inline-block;
  color: #060606;
  background: white;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.add-to-cart-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
  width: 100%;
}

.add-to-cart-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-img--placeholder {
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img--placeholder span {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Checkout bar */
.checkout-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 48px;
}

.checkout-btn {
  background: white;
  color: #060606;
  border: none;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-btn:hover {
  background: rgba(255,255,255,0.85);
}

/* Cart message */
.cart-msg {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

.cart-msg.error {
  color: #f87171;
}

/* Cart count badge (nav) */
.cart-count {
  background: white;
  color: #060606;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
