:root {
  --cream: #fdf6ec;
  --cream-2: #fbeede;
  --cream-3: #f7e7d2;
  --card: #ffffff;
  --ink: #312b25;
  --ink-dim: #6f6358;
  --ink-mute: #a99c8d;
  --line: #efe2cf;
  --line-2: #e4d3bb;
  --coral: #ff6f61;
  --coral-dark: #ed5849;
  --yellow: #ffc24d;
  --blue: #4fb6d8;
  --green: #7cc576;
  --purple: #b58ad6;
  --shadow: 0 8px 24px rgba(124, 92, 52, .08);
  --shadow-lg: 0 20px 48px rgba(124, 92, 52, .16);
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: 'Nunito', -apple-system, system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }

/* ==================== TOP BAR ==================== */
.topbar {
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.topbar-track {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  width: max-content;
}
.topbar-track span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 37px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 50px;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--ink);
}
.logo img {
  height: 62px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 38px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 10px 24px;
  border: 2px solid var(--coral);
  color: var(--coral);
  border-radius: 999px;
  transition: all .2s;
}
.nav-cta:hover {
  background: var(--coral);
  color: #fff;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: all .3s;
}
.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--coral); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav { padding: 16px 20px; }
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 50px 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 194, 77, .12), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 100%, rgba(79, 182, 216, .10), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 70%, rgba(255, 111, 97, .08), transparent 55%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-doodles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  max-width: var(--maxw);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-logo {
  display: block;
  width: min(400px, 72%);
  height: auto;
  margin: 0 auto 26px;
}
.hero-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--coral);
  background: rgba(255, 111, 97, .12);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 34px;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(68px, 13vw, 172px);
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: var(--ink);
}
.hero-title span { display: block; }
.hero-outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--coral);
}
.hero-desc {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Buttons */
.btn-main {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 17px 38px;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 111, 97, .28);
  transition: all .22s;
}
.btn-main:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 111, 97, .36);
}
.btn-outline {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 17px 38px;
  border: 2px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  transition: all .22s;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: .01em;
  transition: color .2s;
}
.btn-link:hover { color: var(--coral); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-line {
  width: 2px;
  border-radius: 2px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--coral));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}
.hero-scroll span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--ink-mute);
  writing-mode: vertical-rl;
}

/* ==================== MARQUEE ==================== */
.marquee {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--cream-2);
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0;
  color: var(--ink);
  flex-shrink: 0;
}
.marquee-track span:nth-child(8n+1) { color: var(--coral); }
.marquee-track span:nth-child(8n+3) { color: var(--blue); }
.marquee-track span:nth-child(8n+5) { color: var(--yellow); }
.marquee-track span:nth-child(8n+7) { color: var(--green); }
.marquee-track span:nth-child(2n) { color: var(--line-2); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== SECTIONS BASE ==================== */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.label-line {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
}
.section-label span:last-child {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5.8vw, 62px);
  letter-spacing: .01em;
  line-height: 1.04;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
  color: var(--ink);
}
.section-desc {
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
}

/* ==================== SECTION BG (doodles) ==================== */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Let doodle motifs draw beyond their symbol viewBox instead of being clipped */
symbol[id^="dd-"] { overflow: visible; }

/* ==================== DROPS ==================== */
.drops {
  padding: 130px 50px;
  position: relative;
  overflow: hidden;
}

/* ==================== PRODUCTS ==================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 56px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.product {
  background: var(--card);
  border-radius: 24px;
  padding: 14px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg, #fff1e8 0%, #ffe3d2 100%);
  border-radius: 18px;
  margin-bottom: 16px;
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .5), transparent 60%);
  pointer-events: none;
}
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 7px 15px;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
}
.product-ph {
  transition: all .4s ease;
}
.product-ph.mockup {
  position: absolute;
  inset: 0;
  filter: none;
}
.product-ph.mockup svg {
  width: 56%;
  max-width: 160px;
  height: auto;
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.product:hover .product-photo {
  transform: scale(1.06);
}
.product-details {
  padding: 6px 8px 8px;
  text-align: center;
}
.product-details h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--ink);
}
.product-details p {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 8px;
}
.price {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--coral);
}

/* ==================== EM BREVE (placeholder dentro do card) ==================== */
.product-ph.soon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.product-ph.soon .soon-doodle {
  width: 44px;
  height: 44px;
  animation: cs-float 4s ease-in-out infinite;
}
.soon-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
@keyframes cs-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-9px) rotate(5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .product-ph.soon .soon-doodle { animation: none; }
}

/* ==================== CATEGORY SECTION ==================== */
.category-section {
  padding: 130px 50px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.category-section.alt {
  background: var(--cream-2);
}
.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.category-meta {
  display: flex;
  gap: 44px;
  justify-content: center;
}
.meta-item {
  text-align: center;
}
.meta-value {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.meta-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-mute);
}

/* ==================== SIZE GUIDE ==================== */
.sizes {
  padding: 130px 50px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.size-tabs {
  display: flex;
  gap: 0;
  margin: 46px auto 0;
  max-width: 700px;
  border: 2px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--card);
  position: relative;
  z-index: 1;
}
.size-tab {
  flex: 1;
  padding: 15px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink-mute);
  transition: all .2s;
}
.size-tab:hover { color: var(--ink); }
.size-tab.active {
  background: var(--coral);
  color: #fff;
}
.size-content {
  max-width: 700px;
  margin: 28px auto 0;
  position: relative;
  z-index: 1;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
}
.size-table.hidden { display: none; }
.size-table th,
.size-table td {
  padding: 16px 28px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table th {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-mute);
  background: var(--cream-2);
}
.size-table td {
  color: var(--ink-dim);
  font-weight: 700;
}
.size-table tbody tr {
  transition: background .2s;
}
.size-table tbody tr:hover {
  background: var(--cream-2);
}
.size-table tbody tr:hover td {
  color: var(--ink);
}

/* ==================== ABOUT / CAUSA ==================== */
.about {
  padding: 150px 50px;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 70px);
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 40px;
  color: var(--ink);
}
.about-right p {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.about-right strong { color: var(--coral); font-weight: 800; }
.about-values {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.value {
  padding: 26px 18px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform .25s;
  text-align: center;
}
.value:hover { transform: translateY(-6px); }
.value:nth-child(1) .value-number { color: var(--coral); }
.value:nth-child(2) .value-number { color: var(--blue); }
.value:nth-child(3) .value-number { color: var(--green); }
.value:nth-child(4) .value-number { color: var(--purple); }
.value-number {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 8px;
}
.value-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* ==================== SUBMIT ART ==================== */
.submit-art {
  padding: 130px 50px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.submit-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.submit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 48px 0 40px;
}
@media (max-width: 880px) {
  .submit-steps { grid-template-columns: repeat(2, 1fr); }
}
.step {
  background: var(--card);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform .25s;
}
.step:hover { transform: translateY(-6px); }
.step-num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: var(--coral);
  margin-bottom: 10px;
}
.step:nth-child(2) .step-num { color: var(--blue); }
.step:nth-child(3) .step-num { color: var(--green); }
.step:nth-child(4) .step-num { color: var(--purple); }
.step h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--ink);
}
.step p {
  font-size: 14px;
  color: var(--ink-dim);
  font-weight: 500;
  line-height: 1.6;
}
.submit-form {
  background: var(--card);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.submit-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.submit-form input,
.submit-form textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.submit-form input::placeholder,
.submit-form textarea::placeholder { color: var(--ink-mute); font-weight: 500; }
.submit-form input:focus,
.submit-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 111, 97, .14);
}
.submit-form textarea { resize: vertical; min-height: 92px; }
.form-note {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 700;
}
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-actions .btn-outline { cursor: pointer; }

@media (max-width: 600px) {
  .submit-art { padding: 90px 24px; }
  .submit-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .submit-form { padding: 26px 22px; }
}

/* ==================== REVIEWS ==================== */
.reviews {
  padding: 130px 50px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.review {
  background: var(--card);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: all .3s;
}
.review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 3px;
}
.review p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  font-weight: 500;
  flex: 1;
}
.review-author {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-author strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--ink);
}
.review-author span {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

/* ==================== CONTACT ==================== */
.contact {
  padding: 160px 50px;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255, 194, 77, .16), transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 0%, rgba(79, 182, 216, .12), transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(255, 111, 97, .12), transparent 55%),
    var(--cream);
}
.contact-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9.5vw, 128px);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--ink);
}
.outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--coral);
}
.contact p {
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 44px;
  line-height: 1.6;
  font-weight: 500;
}
.contact-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 56px 50px;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--ink);
}
.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink-mute);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--coral); }
.footer-copy {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ==================== PRODUCT MODAL ==================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(49, 43, 37, .5);
  backdrop-filter: blur(8px);
}
.modal-container {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--line);
  max-width: 900px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform .3s ease;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.modal.open .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-dim);
  z-index: 2;
  transition: all .2s;
  line-height: 1;
}
.modal-close:hover { background: var(--coral); color: #fff; }
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-image {
  background: linear-gradient(165deg, #fff1e8 0%, #ffe3d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  border-radius: 24px 0 0 24px;
  position: relative;
}
.modal-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .5), transparent 60%);
  pointer-events: none;
  border-radius: 24px 0 0 24px;
}
.modal-img-wrap {
  width: 100%;
  height: 100%;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px 0 0 24px;
}
.modal-img-wrap svg {
  width: 55%;
  max-width: 180px;
  height: auto;
}
.modal-info {
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--coral);
  margin-bottom: 4px;
}
.modal-info h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: .01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}
.modal-product-desc {
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 4px;
}
.modal-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 6px;
  color: var(--coral);
}
.modal-divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}
.modal-section {
  margin-bottom: 22px;
}
.modal-section-title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.modal-sizes {
  display: flex;
  gap: 10px;
}
.modal-size {
  width: 52px;
  height: 52px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border: 2px solid var(--line-2);
  border-radius: 14px;
  transition: all .2s;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-size:hover { color: var(--coral); border-color: var(--coral); }
.modal-size.selected {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.modal-material {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
  font-weight: 500;
}
.modal-actions {
  margin-top: 26px;
}
.modal-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 18px;
}

@media (max-width: 700px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-image {
    min-height: 280px;
    border-radius: 24px 24px 0 0;
  }
  .modal-image::before { border-radius: 24px 24px 0 0; }
  .modal-img-wrap img { border-radius: 24px 24px 0 0; }
  .modal-info { padding: 32px 28px; }
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 160px 24px 80px; }
  .hero-scroll { display: none; }
  .drops { padding: 90px 24px; }
  .category-section { padding: 90px 24px; }
  .sizes { padding: 90px 24px; }
  .reviews { padding: 90px 24px; }
  .about { padding: 110px 24px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .category-meta { gap: 28px; }
  .meta-value { font-size: 26px; }
  .contact { padding: 110px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .product-grid,
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .review-grid { grid-template-columns: 1fr; }
  .category-header { gap: 28px; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; gap: 18px; }
  .contact-links { flex-direction: column; align-items: center; }
  .size-table th, .size-table td { padding: 14px 16px; font-size: 13px; }
}

@media (max-width: 420px) {
  .product-grid,
  .product-grid.cols-3 { grid-template-columns: 1fr; gap: 18px; }
}

/* ==================== FAQ CHAT WIDGET ==================== */
.faq-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 58px;
  padding: 0 22px 0 18px;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 111, 97, .45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.faq-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 111, 97, .55);
  background: var(--coral-dark);
}
.faq-fab-ico {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.faq-fab-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
}
.faq-ico-close { display: none; }
.faq-fab.open .faq-ico-chat { display: none; }
.faq-fab.open .faq-ico-close { display: block; }
.faq-fab.open .faq-fab-label { display: none; }
.faq-fab.open { padding: 0; width: 58px; justify-content: center; }

.faq-chat {
  position: fixed;
  right: 26px;
  bottom: 98px;
  z-index: 180;
  width: 370px;
  max-width: calc(100vw - 40px);
  height: 540px;
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.faq-chat.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.faq-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--coral);
  color: #fff;
}
.faq-head-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.faq-head-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.faq-head-text { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.faq-head-text strong {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
}
.faq-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  opacity: .92;
}
.faq-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(124, 197, 118, .7);
  animation: faq-pulse 2s infinite;
}
@keyframes faq-pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 197, 118, .6); }
  70% { box-shadow: 0 0 0 7px rgba(124, 197, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 197, 118, 0); }
}
.faq-close {
  font-size: 26px;
  line-height: 1;
  color: #fff;
  opacity: .85;
  padding: 0 2px;
  transition: opacity .2s ease;
}
.faq-close:hover { opacity: 1; }

.faq-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-msg { display: flex; max-width: 84%; }
.faq-msg.bot { align-self: flex-start; }
.faq-msg.user { align-self: flex-end; }
.faq-bubble {
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.faq-msg.bot .faq-bubble {
  background: var(--card);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.faq-msg.user .faq-bubble {
  background: var(--coral);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.faq-msg.enter {
  animation: faq-msg-in .3s ease both;
}
@keyframes faq-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-typing .faq-bubble {
  display: flex;
  gap: 4px;
  padding: 14px 15px;
}
.faq-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-mute);
  animation: faq-bounce 1.2s infinite;
}
.faq-typing span:nth-child(2) { animation-delay: .15s; }
.faq-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes faq-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.faq-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}
.faq-chip {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  padding: 8px 14px;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.faq-chip:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .faq-status i,
  .faq-typing span,
  .faq-msg.enter { animation: none; }
}

@media (max-width: 520px) {
  .faq-fab { right: 16px; bottom: 16px; }
  .faq-chat {
    right: 12px;
    left: 12px;
    bottom: 86px;
    width: auto;
    max-width: none;
    height: 70vh;
  }
}
