@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ==========================================================================
   BROTE V3 PLAY — ORIGINAL TEMPLATE DESIGN SYSTEM (CÁLIDO, INFANTIL & E-COMMERCE)
   ========================================================================== */

:root {
  --ink: #19211E;
  --ink-muted: #5D6862;
  --paper: #F5F2EB;
  --lime: #DFF270;
  --purple: #A79BE5;
  --purple-dark: #7969C7;
  --coral: #EF876F;
  --sand: #E9D9B8;
  --line: #D9D8CF;
  --white: #FFFFFF;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow-soft: 0 16px 40px rgba(25, 33, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #DEDFD8;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Floating Toy Shapes Background Canvas - Positioned BEHIND content */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

body > *:not(#bg-canvas) {
  position: relative;
  z-index: 2;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   DEMO SHELL & TOPLINE (SIGNATURE BROTE V3 FRAME)
   ========================================================================== */

.demo-shell {
  width: min(1440px, calc(100% - 36px));
  margin: 18px auto;
  background: var(--paper);
  box-shadow: 0 25px 90px rgba(30, 38, 32, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.demo-topline {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4.2vw;
  background: var(--ink);
  color: #BFC9C3;
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.demo-topline span:first-child {
  color: var(--lime);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 4.2vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1.4px;
}

.brand small, footer small {
  display: block;
  font-size: 6px;
  letter-spacing: 1.6px;
  color: #78817B;
  text-transform: uppercase;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 16px;
}

.site-header nav {
  display: flex;
  gap: 29px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
}

.site-header nav a {
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--purple-dark);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons {
  display: flex;
  gap: 6px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #CDD0C6;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

/* Header Cart Button */
.cart-button {
  background: var(--ink);
  color: var(--lime);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.cart-button:hover {
  transform: translateY(-2px);
  background: #000000;
}

.cart-badge {
  background: var(--coral);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
}

.header-link b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

/* ==========================================================================
   HERO SECTION (ORIGINAL V3 GEOMETRIC ART & TYPOGRAPHY)
   ========================================================================== */

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  grid-template-rows: 1fr 100px;
  padding: 70px 4.2vw 0;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding-bottom: 45px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-dark);
}

.eyebrow.purple {
  color: var(--purple-dark);
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(65px, 7.5vw, 110px);
  line-height: 0.82;
  letter-spacing: -5px;
}

.hero h1 em, .intro h2 em, .collection h2 em, .feature h2 em, .steps h2 em, .contact h2 em, .faq-section h2 em {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--purple-dark);
  font-style: italic;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button-dark {
  background: var(--ink);
  color: #FFFFFF;
}

.button-dark b, .button-dark i {
  color: var(--lime);
  font-style: normal;
}

.button-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 33, 30, 0.25);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 242, 112, 0.4);
}

.quiet-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #AEB4AA;
  font-size: 11px;
  font-weight: 700;
}

.quiet-link span {
  margin-left: 9px;
  color: var(--purple-dark);
}

/* Original Geometric Toy Art Display */
.hero-art {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #D8E2D7;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.hero-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(25, 33, 30, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 33, 30, 0.07) 1px, transparent 1px);
  background-size: 55px 55px;
}

.sun {
  position: absolute;
  width: 370px;
  height: 370px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: var(--lime);
}

.art-label {
  position: absolute;
  left: 28px;
  top: 28px;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 1.4px;
  font-weight: 700;
}

.toy-stack {
  position: absolute;
  inset: 0;
}

.toy-block {
  position: absolute;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: var(--ink);
  box-shadow: 15px 16px 0 rgba(25, 33, 30, 0.12);
  border-radius: 12px;
}

.block-a {
  width: 128px;
  height: 128px;
  right: 24%;
  top: 32%;
  font: italic 70px "DM Serif Display";
  transform: rotate(9deg);
}

.block-b {
  width: 84px;
  height: 84px;
  right: 45%;
  bottom: 23%;
  background: var(--purple);
  transform: rotate(-16deg);
}

.toy-arch {
  position: absolute;
  width: 220px;
  height: 260px;
  left: 16%;
  bottom: 10%;
  border: 48px solid var(--ink);
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
  transform: rotate(-9deg);
}

.toy-ring {
  position: absolute;
  width: 125px;
  height: 125px;
  right: 8%;
  bottom: 14%;
  border: 25px solid #FFF7E9;
  border-radius: 50%;
}

.art-note {
  position: absolute;
  right: 25px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: 0 17px 35px rgba(25, 33, 30, 0.15);
  border: 1px solid var(--line);
}

.art-note > span {
  font: italic 25px "DM Serif Display";
  color: var(--purple-dark);
}

.art-note div {
  display: flex;
  flex-direction: column;
}

.art-note b {
  font-size: 11px;
}

.art-note small {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 9px;
}

.scribble {
  position: absolute;
  left: 47%;
  top: 22%;
  color: var(--purple-dark);
  font-size: 35px;
  animation: spin 9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--ink-muted);
  padding-top: 16px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-metrics b {
  font: italic 32px "DM Serif Display";
  color: var(--purple-dark);
}

.hero-metrics small {
  font-size: 9px;
  line-height: 1.4;
  margin-right: 25px;
}

/* ==========================================================================
   MARQUEE BAR
   ========================================================================== */

.marquee {
  height: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lime);
  border-y: 1px solid var(--line);
}

.marquee div {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  word-spacing: 11px;
  animation: marqueeText 24s linear infinite;
}

@keyframes marqueeText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee i {
  color: var(--purple-dark);
  font-style: normal;
}

/* ==========================================================================
   INTRO SECTION (PHILOSOPHY)
   ========================================================================== */

.intro {
  padding: 110px 4.2vw;
  display: grid;
  grid-template-columns: 100px 1fr 260px;
  gap: 4vw;
}

.section-tag {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 1.4px;
  font-weight: 700;
}

.section-tag b {
  font: italic 32px "DM Serif Display";
  color: var(--purple-dark);
}

.intro-main h2, .collection h2, .feature h2, .steps h2, .contact h2, .faq-section h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.92;
  letter-spacing: -3px;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  margin-top: 40px;
}

.intro-columns p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.intro aside {
  border-left: 1px solid var(--line);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}

.intro aside span {
  font-size: 9px;
  letter-spacing: 1.3px;
  font-weight: 700;
}

.intro aside strong {
  margin: auto 0;
  font: italic 29px/1.1 "DM Serif Display";
}

.intro aside i {
  font-size: 26px;
  font-style: normal;
  margin-left: auto;
  color: var(--purple-dark);
}

/* ==========================================================================
   COLLECTION CATALOG (RICH PRODUCTS + E-COMMERCE CARDS)
   ========================================================================== */

.collection {
  padding: 100px 0 110px;
  background: var(--white);
}

.collection-heading {
  display: grid;
  grid-template-columns: 100px 1fr 0.55fr;
  gap: 4vw;
  align-items: end;
  padding: 0 4.2vw 52px;
}

.collection-heading h2 {
  margin-top: 13px;
}

.collection-heading > p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Age Filter Tabs */
.collection-tabs {
  display: flex;
  gap: 12px;
  padding: 0 4.2vw 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.v3-tab {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.v3-tab:hover, .v3-tab.active {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 4.2vw;
}

.product {
  min-height: 600px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(25, 33, 30, 0.14);
}

.product-sand { background: var(--sand); }
.product-coral { background: var(--coral); }
.product-lilac { background: var(--purple); }
.product-lime { background: var(--lime); }
.product-paper { background: var(--paper); }

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1.3px;
  font-weight: 700;
}

.product-top b {
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.product-art-wrapper {
  height: 240px;
  margin: 16px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
}

.product-art-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product:hover .product-art-wrapper img {
  transform: scale(1.05);
}

.product-number {
  font: italic 25px "DM Serif Display";
  color: rgba(25, 33, 30, 0.4);
}

.product h3 {
  margin: 6px 0 8px;
  font: italic 32px/1 "DM Serif Display";
}

.product p {
  max-width: 280px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.product-footer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(25, 33, 30, 0.15);
}

.product-price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.btn-v3-cart {
  background: var(--ink);
  color: var(--lime);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-v3-cart:hover {
  background: #000000;
  transform: scale(1.04);
}

/* ==========================================================================
   FEATURE / VALUES SECTION
   ========================================================================== */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: #FFFFFF;
}

.feature-art {
  min-height: 710px;
  position: relative;
  overflow: hidden;
  background: #9FC6B1;
}

.feature-art:before {
  content: "GROW";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(110px, 18vw, 245px);
  font-weight: 700;
  letter-spacing: -18px;
}

.feature-circle {
  position: absolute;
  width: 330px;
  height: 330px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(25, 33, 30, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.08), 0 0 0 90px rgba(255, 255, 255, 0.05);
}

.feature-card {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 220px;
  min-height: 250px;
  padding: 24px;
  background: #FFF7E9;
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 17px 20px 0 rgba(25, 33, 30, 0.17);
  display: flex;
  flex-direction: column;
}

.feature-card small {
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.feature-card b {
  margin: auto 0;
  font: italic 32px/1 "DM Serif Display";
}

.feature-card em {
  color: var(--purple-dark);
}

.feature-card span {
  font-size: 10px;
  color: var(--ink-muted);
}

.feature-star {
  position: absolute;
  right: 12%;
  top: 18%;
  font-size: 40px;
  color: var(--lime);
}

.feature-copy {
  padding: 105px 7vw;
}

.section-tag.light {
  color: #BDC9C2;
}

.section-tag.light b {
  color: var(--lime);
}

.feature h2 {
  margin: 45px 0 28px;
}

.feature h2 em {
  color: var(--lime);
}

.feature-copy > p {
  max-width: 470px;
  color: #AEBBB4;
  font-size: 15px;
  line-height: 1.75;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.values div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.values b {
  display: block;
  color: var(--lime);
  font: italic 28px "DM Serif Display";
}

.values span {
  display: block;
  margin-top: 8px;
  color: #BDC9C2;
  font-size: 11px;
  line-height: 1.45;
}

/* ==========================================================================
   STEPS & FAQ FOR MOMS
   ========================================================================== */

.steps {
  padding: 110px 4.2vw;
}

.steps > h2 {
  max-width: 850px;
  margin: 28px 0 60px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.step-grid article {
  min-height: 220px;
  padding: 25px 25px 25px 0;
  border-right: 1px solid var(--line);
}

.step-grid article:not(:first-child) {
  padding-left: 25px;
}

.step-grid article:last-child {
  border-right: 0;
}

.step-grid span {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-dark);
}

.step-grid b {
  display: block;
  margin: 36px 0 10px;
  font: italic 28px "DM Serif Display";
}

.step-grid p {
  max-width: 200px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* FAQ Accordion Section for Moms with Smooth Expansion Animation */
.faq-section {
  padding: 90px 4.2vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--purple-dark);
  box-shadow: 0 8px 24px rgba(121, 105, 199, 0.12);
  transform: translateY(-2px);
}

.faq-item summary {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "✦";
  font-size: 1.3rem;
  color: var(--purple-dark);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
  color: var(--coral);
}

.faq-item p {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  animation: faqSlideDown 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top;
}

@keyframes faqSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-12px) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact {
  padding: 110px 4.2vw;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 8vw;
  background: #E1E6DC;
}

.contact h2 {
  margin: 25px 0;
}

.contact > div > p {
  max-width: 480px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-card {
  align-self: end;
  padding: 36px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 14px 14px 0 #C9D3C8;
  border-radius: var(--radius-md);
}

.contact-card > span {
  font-size: 9px;
  letter-spacing: 1.4px;
  font-weight: 700;
}

.contact-card > b {
  display: block;
  margin: 40px 0 24px;
  font: italic 27px/1.1 "DM Serif Display";
}

/* ==========================================================================
   SLIDE-OUT VIRTUAL CART DRAWER
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 33, 30, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  z-index: 1001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--line);
}

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

.cart-header {
  padding: 20px 24px;
  background: var(--ink);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--lime);
}

.free-shipping-bar {
  background: var(--lime);
  color: var(--ink);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.cart-items-container {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-muted);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  background: #FFFFFF;
  padding: 14px;
  border-radius: var(--radius-md);
}

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--purple-dark);
  margin-top: 4px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: #FFFFFF;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--lime);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-checkout-btn:hover {
  background: #000000;
}

/* ==========================================================================
   FOOTER & FLOATING WHATSAPP
   ========================================================================== */

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding: 36px 4.2vw;
  background: var(--ink);
  color: #FFFFFF;
}

footer > span {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -1px;
}

footer p {
  margin: 0;
  color: #899791;
  font-size: 11px;
}

footer > a {
  font-size: 11px;
  color: var(--lime);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 25px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #07110F;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(7, 17, 15, 0.25);
  transition: all 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float span {
  font-size: 10px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (ORIGINAL BROTE V3 BREAKPOINTS)
   ========================================================================== */

@media (max-width: 950px) {
  .site-header nav {
    display: none;
  }
  
  .header-right {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 80px;
    gap: 25px;
  }

  .hero-copy {
    padding: 30px 0 0;
  }

  .hero-art {
    min-height: 500px;
  }

  .hero-bottom {
    grid-column: 1;
  }

  .intro {
    grid-template-columns: 70px 1fr;
  }

  .intro aside {
    display: none;
  }

  .collection-heading {
    grid-template-columns: 70px 1fr;
  }

  .collection-heading > p {
    grid-column: 2;
  }

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

  .feature {
    grid-template-columns: 1fr;
  }

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

  .feature-copy {
    padding: 80px 7vw;
  }

  .step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 620px) {
  .demo-shell {
    width: calc(100% - 18px);
    margin: 9px auto;
  }

  .demo-topline {
    padding: 0 18px;
    font-size: 7px;
  }

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    padding: 22px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .hero {
    padding: 45px 20px 0;
  }

  .hero h1 {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    min-height: 390px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .feature-art {
    min-height: 430px;
  }

  .feature-copy {
    padding: 60px 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-grid article {
    min-height: 155px;
    padding: 20px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact {
    padding: 60px 20px;
  }

  footer {
    padding: 28px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

/* FLOATING CIRCULAR WHATSAPP ICON BADGE */
.wa-float-circle {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45) !important;
  z-index: 99999 !important;
  text-decoration: none !important;
  pointer-events: auto !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.wa-float-circle:hover {
  transform: scale(1.1) translateY(-4px) !important;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.6) !important;
  color: #FFFFFF !important;
}

@media (max-width: 600px) {
  .wa-float-circle {
    width: 52px !important;
    height: 52px !important;
    right: 18px !important;
    bottom: 18px !important;
  }
}
