/* style.css - Habebe Showroom Handoff Design Integration */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Handoff Color Palette */
  --color-teal-dark: #072E2A;      /* Footer background */
  --color-teal-mid: #0A3833;       /* Story section background / Scroll nav */
  --color-teal-brand: #0E4A45;     /* Main brand teal / Showroom background */
  --color-teal-stage: #15564F;     /* Radial center of showroom stage */
  --color-cream-base: #F5F0E7;     /* Page background / Light cream text selection */
  --color-gold: #E0A24A;           /* Gold highlights / CTA buttons */
  --color-gold-hover: #C58F3C;     /* Hover gold */
  
  /* Text and neutrals */
  --color-text-dark: #1E1B17;
  --color-text-light: #F5F0E7;
  --color-text-muted-dark: #6B6256;
  --color-text-muted-light: #CBD6CF;
  --color-border-light: rgba(245, 240, 231, 0.16);
  --color-border-dark: #E6DCCB;
  
  /* Fonts */
  --font-serif: 'Bodoni Moda', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-cream-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-teal-brand);
  color: var(--color-cream-base);
}

/* Animations */
@keyframes habFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream-base);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-teal-brand);
}

/* Floating Elements & Scroll Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2, .7, .2, 1), transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
}

.header-nav.scrolled {
  padding: 15px 56px;
  background: rgba(14, 74, 69, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245, 240, 231, 0.12);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px;
  width: 191px;
  display: block;
  object-fit: contain;
  transition: height 0.35s ease;
}

.header-nav.scrolled .nav-logo-img {
  height: 48px;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: #F5F0E7;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-cta {
  color: #0A3833;
  background: var(--color-gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: #F5F0E7;
  color: #0E4A45;
}

.cart-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #F5F0E7;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.cart-toggle-btn:hover {
  opacity: 1;
}

.cart-icon-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.cart-badge-count {
  background-color: var(--color-gold);
  color: #072E2A;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  display: inline-block;
}

/* Hero Section */
.hero-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(180deg, rgba(10,38,33,0.55) 0%, rgba(10,38,33,0) 22%), 
                    linear-gradient(90deg, rgba(10,38,33,0.78) 0%, rgba(10,38,33,0.34) 42%, rgba(10,38,33,0.05) 75%), 
                    url('images/life_tender.jpg');
  background-size: cover;
  background-position: 60% 28%;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 56px 96px;
}

.hero-box {
  max-width: 620px;
}

.hero-line-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-line {
  width: 46px;
  height: 1px;
  background: var(--color-gold);
  display: block;
}

.hero-tag-text {
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E7D9BE;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  color: #F5F0E7;
  font-size: clamp(46px, 6.4vw, 90px);
  line-height: 0.98;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: #E4E7E0;
  max-width: 480px;
  margin: 0 0 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F5F0E7;
  color: #0E4A45;
  padding: 16px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, color .3s;
}

.btn-hero-primary:hover {
  background: var(--color-gold);
  color: #0A3833;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245,240,231,0.45);
  color: #F5F0E7;
  padding: 16px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: border-color .3s;
}

.btn-hero-secondary:hover {
  border-color: #F5F0E7;
}

.hero-scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.hero-scroll-text {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E7D9BE;
}

.hero-scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--color-gold), transparent);
}

/* Intro Section */
.intro-sec {
  background: var(--color-cream-base);
  padding: 110px 56px 96px;
  text-align: center;
}

.intro-inner {
  max-width: 880px;
  margin: 0 auto;
}

.intro-mark {
  height: 54px;
  width: auto;
  margin-bottom: 34px;
  opacity: 0.9;
}

.intro-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.32;
  color: var(--color-teal-brand);
  margin: 0;
  letter-spacing: -0.01em;
}

.intro-text em {
  font-style: italic;
}

/* Showroom Section */
.showroom-sec {
  background: var(--color-teal-brand);
  color: var(--color-text-light);
  padding: 96px 56px 110px;
  position: relative;
}

.showroom-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.showroom-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 54px;
}

.showroom-header-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.showroom-header-line {
  width: 46px;
  height: 1px;
  background: var(--color-gold);
  display: block;
}

.showroom-header-tag {
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.showroom-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  margin: 0;
  color: #F5F0E7;
}

.showroom-header-desc-wrapper {
  max-width: 340px;
}

.showroom-header-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text-muted-light);
  font-weight: 300;
  margin: 0 0 16px;
}

.showroom-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(224, 162, 74, 0.5);
  color: var(--color-gold);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.showroom-card-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border: 1px solid rgba(245, 240, 231, 0.16);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

/* Stage & Floating Carrier */
.showroom-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: radial-gradient(circle at 50% 38%, var(--color-teal-stage) 0%, var(--color-teal-brand) 55%, #0A3E39 100%);
  border-right: 1px solid rgba(245, 240, 231, 0.16);
}

.showroom-shadow {
  position: absolute;
  inset: auto 0 9%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28), transparent 70%);
  margin: 0 18%;
}

.showroom-giant-num {
  position: absolute;
  top: 30px;
  left: 34px;
  font-family: var(--font-serif);
  font-size: 104px;
  line-height: 1;
  color: rgba(245, 240, 231, 0.10);
  font-weight: 600;
  user-select: none;
}

.showroom-product-img {
  max-height: 430px;
  max-width: 74%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(0,0,0,0.4));
  animation: habFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Detail Area */
.showroom-details-pane {
  padding: 54px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0B3E3A;
}

.showroom-details-tag {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.showroom-product-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.04;
  margin: 0 0 18px;
  color: #F5F0E7;
}

.showroom-product-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted-light);
  font-weight: 300;
  margin: 0 0 30px;
  min-height: 82px;
}

/* Specs list */
.showroom-specs-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 34px;
}

.showroom-spec-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  color: #E4E7E0;
  font-weight: 300;
  border-bottom: 1px solid rgba(245, 240, 231, 0.10);
  padding-bottom: 11px;
}

.showroom-spec-bullet {
  color: var(--color-gold);
  font-size: 11px;
}

/* Swatches selector */
.showroom-swatch-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.showroom-select-label {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9FB2AB;
}

.showroom-swatches-container {
  display: flex;
  gap: 12px;
}

.showroom-swatch-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.showroom-swatch-btn:hover {
  transform: scale(1.08);
}

.showroom-swatch-btn.active {
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 0 3px rgba(224, 162, 74, 0.22);
  transform: scale(1.12);
}

/* Size selector for showroom details */
.showroom-size-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.showroom-size-btn-group {
  display: flex;
  gap: 8px;
}

.showroom-size-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 240, 231, 0.15);
  color: #CBD6CF;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.showroom-size-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.showroom-size-btn.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #0A3833;
  font-weight: 600;
}

/* Action Area */
.showroom-action-area {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.showroom-btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gold);
  color: #0A3833;
  padding: 15px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.showroom-btn-buy:hover {
  background: #F5F0E7;
  color: #0E4A45;
}

.showroom-pricing-terms {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.showroom-bundle-terms {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  font-weight: 500;
}

.showroom-bundle-est {
  font-size: 12px;
  color: #9FB2AB;
  font-weight: 300;
}

/* Built for the Long Carry (Craft Details) */
.craft-sec {
  background: var(--color-cream-base);
  padding: 106px 56px;
}

.craft-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.craft-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.craft-header-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.craft-header-line {
  width: 46px;
  height: 1px;
  background: var(--color-gold-hover);
  display: block;
}

.craft-header-tag {
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  font-weight: 500;
}

.craft-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--color-teal-brand);
}

.craft-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text-muted-dark);
  font-weight: 300;
  margin: 0;
}

.craft-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.craft-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.craft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(107, 98, 86, 0.08);
  border-color: var(--color-gold-hover);
}

.craft-card-img-box {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.craft-card-details {
  padding: 30px 30px 34px;
}

.craft-card-num {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-gold-hover);
  letter-spacing: 0.04em;
}

.craft-card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 23px;
  margin: 8px 0 12px;
  color: var(--color-teal-brand);
}

.craft-card-body {
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--color-text-muted-dark);
  font-weight: 300;
  margin: 0;
}

/* Stats band */
.stats-band {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #D9CDB8;
  border-bottom: 1px solid #D9CDB8;
}

.stats-item {
  padding: 38px 26px;
  border-right: 1px solid var(--color-border-dark);
  text-align: center;
}

.stats-item:last-child {
  border-right: none;
}

.stats-key {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
  color: var(--color-teal-brand);
  margin-bottom: 10px;
}

.stats-val {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8E7B;
}

/* Lifestyle Parallax-style Block */
.lifestyle-banner {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(10,38,33,0.62), rgba(10,38,33,0.12) 60%, transparent), 
                    url('images/life_marina.jpg');
  background-size: cover;
  background-position: 50% 32%;
}

.lifestyle-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 56px;
}

.lifestyle-box {
  max-width: 540px;
}

.lifestyle-tag {
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.lifestyle-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.05;
  margin: 20px 0 22px;
  color: #F5F0E7;
}

.lifestyle-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #E4E7E0;
  font-weight: 300;
  margin: 0;
}

/* Story Section */
.story-sec {
  background: var(--color-teal-mid);
  color: var(--color-text-light);
  padding: 110px 56px;
}

.story-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.story-image-box {
  position: relative;
}

.story-image-canvas {
  aspect-ratio: 4/5;
  background-image: url('images/story_mother.jpg');
  background-size: cover;
  background-position: center 20%;
  border-radius: 4px;
}

.story-mark-overlap {
  position: absolute;
  bottom: -26px;
  right: -22px;
  height: 90px;
  width: auto;
  opacity: 0.95;
}

.story-details {
  /* left blank for padding */
}

.story-tag-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.story-tag-line {
  width: 46px;
  height: 1px;
  background: var(--color-gold);
  display: block;
}

.story-tag-text {
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.story-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.08;
  margin: 0 0 26px;
}

.story-body-text {
  font-size: 16.5px;
  line-height: 1.74;
  color: var(--color-text-muted-light);
  font-weight: 300;
  margin: 0 0 20px;
}

.story-stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.story-stat-card-title {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--color-gold);
}

.story-stat-card-subtitle {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9FB2AB;
  margin-top: 6px;
}

/* Footer Section */
.footer-sec {
  background: var(--color-teal-dark);
  color: var(--color-text-light);
  padding: 96px 56px 44px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-newsletter-box {
  text-align: center;
  border-bottom: 1px solid rgba(245, 240, 231, 0.14);
  padding-bottom: 72px;
  margin-bottom: 50px;
}

.footer-mark {
  height: 60px;
  width: auto;
  margin-bottom: 26px;
  opacity: 0.92;
}

.footer-newsletter-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  margin: 0 auto 20px;
  max-width: 680px;
}

.footer-newsletter-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #B9C7C0;
  font-weight: 300;
  margin: 0 auto 34px;
  max-width: 440px;
}

.newsletter-email-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-email-input {
  flex: 1;
  min-width: 220px;
  background: rgba(245, 240, 231, 0.06);
  border: 1px solid rgba(245, 240, 231, 0.22);
  color: #F5F0E7;
  padding: 15px 18px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease;
}

.newsletter-email-input:focus {
  border-color: var(--color-gold);
}

.newsletter-submit-btn {
  background: var(--color-gold);
  color: var(--color-teal-dark);
  border: none;
  padding: 15px 30px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s;
}

.newsletter-submit-btn:hover {
  background: #F5F0E7;
  color: var(--color-teal-dark);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo-img {
  height: 22px;
  width: auto;
  opacity: 0.9;
}

.footer-menu-links {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-menu-link {
  color: #B9C7C0;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer-menu-link:hover {
  color: var(--color-text-light);
}

.footer-copyright {
  color: #6E837B;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* Interactive Cart Drawer - Custom Handoff Theme */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 46, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: 100%;
  background: var(--color-cream-base);
  z-index: 201;
  box-shadow: -10px 0 40px rgba(7, 46, 42, 0.15);
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
}

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

.cart-header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-teal-brand);
  margin: 0;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted-dark);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  color: var(--color-teal-brand);
  transform: rotate(90deg);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty-state {
  text-align: center;
  margin: auto;
  color: var(--color-text-muted-dark);
  padding: 2rem;
}

.cart-empty-svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-gold-hover);
  stroke-width: 1.25;
  margin-bottom: 1rem;
}

.cart-empty-text {
  font-size: 15px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Cart Item Styling */
.cart-item {
  display: flex;
  gap: 1.25rem;
  background: #FFFFFF;
  padding: 1.25rem;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--color-cream-base);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-teal-brand);
  margin: 0 0 4px;
  font-weight: 500;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--color-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-price {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-text-dark);
}

.cart-item-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted-dark);
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
}

.cart-item-remove-btn:hover {
  color: #c93b2b;
}

/* Footer Section of Drawer */
.cart-footer-pane {
  padding: 2rem;
  background: #FFFFFF;
  border-top: 1px solid var(--color-border-dark);
}

.cart-calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: var(--color-text-muted-dark);
}

.cart-calc-row.discount {
  color: #1E6B5D;
  font-weight: 500;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-teal-brand);
  border-top: 1px solid var(--color-border-dark);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cart-promo-badge {
  background: #EFF6F4;
  border: 1px dashed #1E6B5D;
  border-radius: 2px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #1E6B5D;
  font-size: 12px;
  font-weight: 500;
}

.cart-promo-badge-svg {
  width: 16px;
  height: 16px;
}

.btn-checkout {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: #0A3833;
  padding: 16px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-checkout:hover {
  background: var(--color-teal-brand);
  color: #FFFFFF;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .header-nav {
    padding: 20px 30px;
  }
  .header-nav.scrolled {
    padding: 12px 30px;
  }
  .hero-inner {
    padding: 0 30px 60px;
  }
  .showroom-sec {
    padding: 72px 30px;
  }
  .showroom-card-layout {
    grid-template-columns: 1fr;
  }
  .showroom-stage {
    border-right: none;
    border-bottom: 1px solid rgba(245, 240, 231, 0.16);
    min-height: 460px;
  }
  .craft-sec {
    padding: 72px 30px;
  }
  .craft-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-item:nth-child(2) {
    border-right: none;
  }
  .stats-item:nth-child(3) {
    border-top: 1px solid var(--color-border-dark);
  }
  .stats-item:nth-child(4) {
    border-top: 1px solid var(--color-border-dark);
    border-right: none;
  }
  .story-sec {
    padding: 72px 30px;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-sec {
    padding: 72px 30px 30px;
  }
}

@media (max-width: 768px) {
  .nav-links-wrapper {
    display: none; /* Mobile menu fallback can be triggered */
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .stats-band {
    grid-template-columns: 1fr;
  }
  .stats-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border-dark);
  }
  .stats-item:last-child {
    border-bottom: none;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
