/* ===========================
   Sguides — Design System
   =========================== */
:root {
  --cream: #faf6f0;
  --sand: #f0e9dd;
  --sand-dark: #e4dcc9;
  --charcoal: #2e2a25;
  --taupe: #8c8275;
  --taupe-light: #b8afa0;
  --accent: #e08e45;
  --accent-dark: #c97a38;
  --accent-light: #f6d9b8;
  --sage: #7c9070;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(46, 42, 37, 0.08);
  --shadow-lg: 0 20px 45px rgba(46, 42, 37, 0.14);
  --font-head: "Quicksand", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--taupe);
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(224, 142, 69, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}

.btn-light:hover {
  background: var(--sand-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
}

.brand svg {
  width: 38px;
  height: 38px;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 6px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  transition: background 0.2s ease;
}

.cart-link:hover {
  background: var(--sand-dark);
}

.cart-link svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  padding: 72px 0 40px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--taupe);
  max-width: 480px;
  margin-bottom: 32px;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stats div strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  display: block;
}

.hero-stats div span {
  color: var(--taupe);
  font-size: 0.9rem;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  max-width: 90vw;
  max-height: 90vw;
  background: linear-gradient(160deg, var(--accent-light), var(--sand));
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  z-index: 0;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: 300px;
  max-width: 88vw;
}

.hero-card .play-thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--charcoal), #4a4238);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-card .play-thumb svg {
  width: 46px;
  height: 46px;
  fill: var(--white);
}

.hero-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-card p {
  color: var(--taupe);
  font-size: 0.88rem;
}

/* ===== Marquee ===== */
.marquee-wrap {
  padding: 20px 0;
  background: var(--sand);
  overflow: hidden;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}

.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== Cards Grid (Guides) ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-thumb svg {
  width: 44px;
  height: 44px;
}

.card-thumb .thumb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--charcoal);
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--taupe);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--taupe);
}

/* Guide thumb color variants */
.thumb-1 { background: linear-gradient(135deg, #e08e45, #f6d9b8); }
.thumb-2 { background: linear-gradient(135deg, #7c9070, #d9e3d3); }
.thumb-3 { background: linear-gradient(135deg, #8c8275, #e4dcc9); }
.thumb-4 { background: linear-gradient(135deg, #c97a38, #f0e9dd); }
.thumb-5 { background: linear-gradient(135deg, #2e2a25, #8c8275); }
.thumb-6 { background: linear-gradient(135deg, #e0b845, #f6d9b8); }

.thumb-1 svg, .thumb-4 svg { fill: var(--white); }
.thumb-2 svg { fill: var(--white); }
.thumb-3 svg { fill: var(--white); }
.thumb-5 svg { fill: var(--accent-light); }
.thumb-6 svg { fill: var(--white); }

/* ===== About Split ===== */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.split-art {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}

.split-art svg {
  width: 70%;
  height: auto;
}

.split h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}

.split p {
  color: var(--taupe);
  margin-bottom: 16px;
}

.checklist {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.checklist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--accent);
  margin-top: 2px;
}

/* ===== Alt background sections ===== */
.bg-sand {
  background: var(--sand);
}

.bg-charcoal {
  background: var(--charcoal);
  color: var(--sand);
}

.bg-charcoal .section-head p {
  color: var(--taupe-light);
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial-person strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-person span {
  font-size: 0.82rem;
  color: var(--taupe);
}

/* ===== Newsletter / CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cta-form input {
  padding: 14px 18px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-width: 240px;
}

.cta-form input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
}

/* ===== Shop ===== */
.concept-banner {
  background: var(--sand);
  border: 1px dashed var(--taupe-light);
  border-radius: var(--radius);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.concept-banner svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-dark);
  flex-shrink: 0;
}

.concept-banner strong {
  font-family: var(--font-head);
}

.concept-banner p {
  font-size: 0.92rem;
  color: var(--taupe);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img svg {
  width: 76px;
  height: 76px;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.product-info p.desc {
  color: var(--taupe);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}

.price .old {
  text-decoration: line-through;
  color: var(--taupe-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 6px;
}

.add-to-cart {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.add-to-cart:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.add-to-cart.added {
  background: var(--sage);
}

/* Product image color variants */
.pimg-1 { background: linear-gradient(150deg, #f6d9b8, #e08e45); }
.pimg-2 { background: linear-gradient(150deg, #d9e3d3, #7c9070); }
.pimg-3 { background: linear-gradient(150deg, #e4dcc9, #8c8275); }
.pimg-4 { background: linear-gradient(150deg, #f0e9dd, #c97a38); }
.pimg-5 { background: linear-gradient(150deg, #f6e6b8, #e0b845); }

.pimg-1 svg { fill: var(--white); }
.pimg-2 svg { fill: var(--white); }
.pimg-3 svg { fill: var(--white); }
.pimg-4 svg { fill: var(--white); }
.pimg-5 svg { fill: var(--white); }

/* ===== FAQ ===== */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-dark);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--taupe);
  font-size: 0.94rem;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 24px 22px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-card .icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-dark);
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--taupe);
  font-size: 0.94rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  font-size: 0.82rem;
  color: var(--taupe);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: var(--taupe-light);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid .brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-grid p {
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-row a:hover {
  background: var(--accent);
}

.social-row svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  fill: var(--sage);
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 64px 0 24px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--taupe);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-art {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--sand-dark);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
  }
  .grid-3,
  .grid-2,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-form {
    width: 100%;
  }
  .cta-form input {
    min-width: 0;
    flex: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .nav-links {
    max-height: calc(100vh - 73px);
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  section {
    padding: 48px 0;
  }
  .nav {
    padding: 14px 18px;
  }
  .brand {
    font-size: 1.15rem;
  }
  .brand svg {
    width: 32px;
    height: 32px;
  }
  .hero {
    padding: 40px 0 24px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-card {
    width: 100%;
    padding: 20px;
  }
  .split-art {
    padding: 28px;
  }
  .cta-form {
    flex-direction: column;
  }
  .cta-form input,
  .cta-form button {
    width: 100%;
  }
  .concept-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .product-price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .product-price-row .add-to-cart {
    justify-content: center;
  }
}
