/* ============================================
   AmigurumiGuide.com — Main Stylesheet
   Warm, editorial, handcraft aesthetic
   ============================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:       #faf7f2;
  --cream-dark:  #f2ebe0;
  --brown:       #8B6543;
  --brown-dark:  #6b4e32;
  --brown-light: #c4a47c;
  --text:        #2d1f0f;
  --text-muted:  #7a6552;
  --white:       #ffffff;
  --shadow:      rgba(45, 31, 15, 0.08);
  --shadow-md:   rgba(45, 31, 15, 0.15);
  --radius:      12px;
  --radius-sm:   6px;
  --transition:  0.25s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
}

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

a {
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brown-dark);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}

p {
  margin-bottom: 1.2em;
}

p:last-child {
  margin-bottom: 0;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 780px;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.btn--primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-md);
}

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

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

.btn--light {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--cream);
}

.btn--light:hover {
  background: var(--white);
  color: var(--brown-dark);
}

/* ============================================
   HEADER & NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-logo span {
  color: var(--brown);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brown);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--brown);
}

.nav-cta {
  background: var(--brown);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--brown-dark) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(135deg, #f5ede0 0%, #faf7f2 60%, #ede0ce 100%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Two-column hero layout */
.hero-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text .hero-title {
  margin-left: 0;
  margin-right: 0;
}

.hero-text .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero-text .hero-actions {
  justify-content: flex-start;
}

.hero-text .hero-decor {
  justify-content: flex-start;
  margin-top: 2rem;
}

.hero-image-wrap {
  flex: 0 0 380px;
  position: relative;
  z-index: 2;
}

.hero-product-img {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.hero-image-wrap a:hover .hero-product-img {
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.16);
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(139, 101, 67, 0.06);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(139, 101, 67, 0.05);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
  background: rgba(139, 101, 67, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-decor {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown);
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============================================
   SECTIONS — General
   ============================================ */

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--cream-dark);
}

.section--dark {
  background: var(--text);
  color: var(--white);
}

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================
   CARDS — Articles
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px var(--shadow-md);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--cream-dark);
}

/* Decorative placeholder when no image */
.card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8d9c5 0%, #d4be9e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-title a {
  color: var(--text);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--brown);
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-meta::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brown-light);
}

/* ── Pattern cards (shop) ── */
.pattern-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.pattern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px var(--shadow-md);
}

.pattern-card-emoji {
  font-size: 5rem;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(135deg, #f5ede0 0%, #ede0ce 100%);
  display: block;
}

.pattern-card-img-link {
  display: block;
  overflow: hidden;
}

.pattern-card-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pattern-card-img-link:hover .pattern-card-photo {
  transform: scale(1.04);
}

.pattern-card-img-placeholder {
  font-size: 5rem;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(135deg, #f5ede0 0%, #ede0ce 100%);
  display: block;
  text-align: center;
}

.pattern-card-body {
  padding: 1.5rem;
}

.pattern-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.pattern-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pattern-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

/* ── Shop banner ── */
.shop-banner {
  background: linear-gradient(135deg, #8B6543 0%, #6b4e32 100%);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
}

.shop-banner h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.shop-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  background: var(--cream-dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-avatar {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8d9c5 0%, #d4be9e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  margin: 0 auto;
  box-shadow: 0 8px 32px var(--shadow-md);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  background: var(--brown);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px var(--shadow-md);
}

.about-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.about-text .btn {
  margin-top: 1rem;
}

/* ============================================
   NEWSLETTER STRIP
   ============================================ */

.newsletter-strip {
  background: var(--text);
  padding: 4rem 0;
  text-align: center;
}

.newsletter-strip h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.6rem;
}

.newsletter-strip p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  outline: none;
  transition: background var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-form input[type="email"]:focus {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #1e1208;
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo {
  color: var(--white);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--white);
}

.affiliate-disclaimer {
  background: rgba(139, 101, 67, 0.12);
  border-left: 3px solid var(--brown-light);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================
   BLOG / ARTICLE LAYOUT
   ============================================ */

.article-header {
  background: linear-gradient(135deg, #f5ede0 0%, #faf7f2 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.article-header .card-tag {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.article-header h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Article body */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
  padding: 3.5rem 0 5rem;
}

.article-body h2 {
  font-size: 1.7rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--text);
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #3d2c1a;
  margin-bottom: 1.2em;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2em;
}

.article-body li {
  margin-bottom: 0.45em;
  font-size: 1rem;
  line-height: 1.7;
  color: #3d2c1a;
}

.article-body strong {
  color: var(--text);
  font-weight: 700;
}

/* Affiliate box */
.affiliate-box {
  background: linear-gradient(135deg, #f5ede0 0%, #faf7f2 100%);
  border: 1px solid #e0d0bc;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.affiliate-box-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.75rem;
  display: block;
}

.affiliate-box h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.affiliate-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.affiliate-box .btn {
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
}

/* Tip box */
.tip-box {
  background: rgba(139, 101, 67, 0.08);
  border-left: 4px solid var(--brown);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
}

.tip-box strong {
  color: var(--brown);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tip-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 16px var(--shadow);
  margin-bottom: 1.75rem;
}

.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.88rem;
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-shop {
  background: linear-gradient(135deg, #8B6543 0%, #6b4e32 100%);
  color: var(--white);
  text-align: center;
}

.sidebar-shop h3 {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.sidebar-shop p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.sidebar-shop .pattern-emoji {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--brown);
}

.breadcrumb-sep {
  color: var(--brown-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px var(--shadow-md);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.75rem;
    display: inline-block;
    width: auto;
  }

  .nav-toggle {
    display: flex;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-layout {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text .hero-title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text .hero-actions {
    justify-content: center;
  }

  .hero-text .hero-decor {
    justify-content: center;
  }

  .hero-image-wrap {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .section {
    padding: 3.5rem 0;
  }

  .shop-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 420px) {
  .hero-decor {
    gap: 1.25rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input[type="email"] {
    min-width: unset;
  }
}
