/* =========================================================
   HOUSE OF HENDLER — core stylesheet
   Palm Beach preppy x chinoiserie boutique brand site
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Libre+Franklin:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* ---- color tokens ---- */
  --hoh-green-deep:   #12352A;   /* announcement bar / wholesale / footer band */
  --hoh-green:        #2E6B4C;   /* primary brand green */
  --hoh-green-soft:   #E7EFE6;   /* pale green tint for backgrounds */
  --hoh-navy:         #1C2B45;   /* logo navy / headings */
  --hoh-pink:         #E2537D;   /* Palm Beach pink — CTAs & accents */
  --hoh-pink-dark:    #C43D66;   /* pink hover */
  --hoh-pink-pale:    #FBEEF1;   /* pale pink section bg */
  --hoh-blue:         #3E5F91;   /* chinoiserie blue */
  --hoh-blue-pale:    #EDF1F8;
  --hoh-gold:         #BB9A4E;   /* gold accent */
  --hoh-gold-soft:    #E4D7B0;
  --hoh-cream:        #FEFCF8;   /* warm white background */
  --hoh-white:        #FFFFFF;
  --hoh-ink:          #23303F;   /* body copy */
  --hoh-ink-soft:     #5B6673;   /* secondary copy */
  --hoh-line:         #E4E0D8;   /* hairline borders on cream */

  /* ---- type ---- */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- layout ---- */
  --max-width: 1240px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-card: 0 8px 24px rgba(28, 43, 69, 0.08);
  --shadow-lift: 0 14px 34px rgba(28, 43, 69, 0.14);
}

/* ---------------------------------------------------------
   Reset & base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hoh-ink);
  background: var(--hoh-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--hoh-navy);
  margin: 0 0 0.5em;
  font-weight: 500;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--hoh-green);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hoh-green);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-heading h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 10px;
}
.section-heading .rule {
  width: 46px;
  height: 2px;
  background: var(--hoh-pink);
  margin: 16px auto 0;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn-pink {
  background: var(--hoh-pink);
  color: var(--hoh-white);
}
.btn-pink:hover { background: var(--hoh-pink-dark); box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: var(--hoh-white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--hoh-white); }
.btn-outline-navy {
  background: transparent;
  color: var(--hoh-navy);
  border-color: var(--hoh-navy);
}
.btn-outline-navy:hover { background: var(--hoh-navy); color: var(--hoh-white); }
.btn-navy {
  background: var(--hoh-navy);
  color: var(--hoh-white);
}
.btn-navy:hover { background: #0F1B2E; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------
   Announcement bar
   --------------------------------------------------------- */
.announcement-bar {
  background: var(--hoh-green-deep);
  color: var(--hoh-white);
}
.announcement-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 9px 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  flex-wrap: wrap;
}
.announcement-track span { display: inline-flex; align-items: center; gap: 8px; }
.announcement-track .dot { opacity: 0.5; }

/* ---------------------------------------------------------
   Header / nav
   --------------------------------------------------------- */
.site-header {
  background: var(--hoh-white);
  border-bottom: 1px solid var(--hoh-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo img {
  height: 64px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hoh-navy);
  padding: 6px 2px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--hoh-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-icons a, .header-icons button {
  background: none;
  border: none;
  color: var(--hoh-navy);
  display: flex;
  padding: 4px;
}
.header-icons svg { width: 20px; height: 20px; }
.icon-mail-lg { width: 30px; height: 30px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--hoh-navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--hoh-white);
  border-top: 1px solid var(--hoh-line);
  padding: 8px 28px 20px;
}
.mobile-nav a {
  padding: 13px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hoh-navy);
  border-bottom: 1px solid var(--hoh-line);
}
.mobile-nav.is-open { display: flex; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  background: var(--hoh-white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 28px 76px;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero-copy p {
  font-size: 17px;
  color: var(--hoh-ink-soft);
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(254,252,248,0.94);
  color: var(--hoh-navy);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
}

/* ---------------------------------------------------------
   Product / collection grid
   --------------------------------------------------------- */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.bg-cream { background: var(--hoh-cream); }
.bg-white { background: var(--hoh-white); }
.bg-green-soft { background: var(--hoh-green-soft); }
.bg-pink-pale { background: var(--hoh-pink-pale); }

.motif-flanked {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.motif { opacity: 0.9; }
.motif svg { width: 100%; height: auto; }
@media (max-width: 900px) {
  .motif-flanked { grid-template-columns: 1fr; }
  .motif { display: none; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.product-card {
  background: var(--hoh-white);
  border: 1px solid var(--hoh-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.product-card .thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F4F2ED;
}
.product-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-card .info { padding: 22px 20px 26px; }
.product-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.product-card .price {
  color: var(--hoh-ink-soft);
  font-size: 14.5px;
  margin-bottom: 18px;
  font-weight: 500;
}
.product-card .btn { width: 100%; }

/* ---------------------------------------------------------
   Split / story section
   --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-media { min-height: 420px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 64px;
}
.split-copy .eyebrow { margin-bottom: 14px; }
.split-copy h2 { font-size: clamp(26px, 3.2vw, 36px); max-width: 420px; }
.split-copy p { color: var(--hoh-ink-soft); font-size: 16px; max-width: 420px; }
.split-media-square { min-height: 0; aspect-ratio: 1/1; align-self: center; }
.split-reverse .split-media { order: 2; }
.split-reverse .split-copy { order: 1; }

/* ---------------------------------------------------------
   Editorial wide image (horizontal lifestyle photo)
   --------------------------------------------------------- */
.editorial-wide { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); max-width: var(--max-width); margin: 0 auto; }
.editorial-wide img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; display: block; }

/* Safe fallback for images whose aspect ratio doesn't match their
   container exactly — shows the full photo with neutral padding
   rather than cropping any part of it. */
.img-contain { object-fit: contain !important; background: var(--hoh-cream); }

/* ---------------------------------------------------------
   Newsletter (scallop / stitched frame — signature motif)
   --------------------------------------------------------- */
.newsletter-wrap { padding: 0 28px; }
.newsletter-frame {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--hoh-white);
  border-radius: var(--radius-md);
  padding: 3px;
  background-image: repeating-linear-gradient(90deg, var(--hoh-green) 0 10px, transparent 10px 20px),
                     repeating-linear-gradient(90deg, var(--hoh-green) 0 10px, transparent 10px 20px),
                     repeating-linear-gradient(0deg, var(--hoh-green) 0 10px, transparent 10px 20px),
                     repeating-linear-gradient(0deg, var(--hoh-green) 0 10px, transparent 10px 20px);
  background-size: 20px 2px, 20px 2px, 2px 20px, 2px 20px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 42px 44px;
}
.newsletter-icon {
  width: 46px; height: 46px;
  color: var(--hoh-green);
  flex-shrink: 0;
}
.newsletter-copy h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 8px; line-height: 1.2; }
.newsletter-copy p { color: var(--hoh-ink-soft); margin-bottom: 0; font-size: 15px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 320px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid var(--hoh-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--hoh-cream);
  color: var(--hoh-ink);
}
.newsletter-form input[type="email"]::placeholder { color: #92897c; }

@media (max-width: 860px) {
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter-icon { margin: 0 auto; }
  .newsletter-form { justify-content: center; }
}

/* ---------------------------------------------------------
   Wholesale band
   --------------------------------------------------------- */
.wholesale-band {
  background: var(--hoh-green-deep);
  color: var(--hoh-white);
  overflow: hidden;
  position: relative;
}
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px 0;
}
.wholesale-copy h2 { color: var(--hoh-white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
.wholesale-copy p { color: rgba(255,255,255,0.82); font-size: 15.5px; margin-bottom: 22px; max-width: 440px; }
.wholesale-badge {
  width: 116px; height: 116px;
  border: 1.5px solid var(--hoh-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--hoh-cream);
  overflow: hidden;
  padding: 14px;
}
.wholesale-badge img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
@media (max-width: 720px) {
  .wholesale-inner { grid-template-columns: 1fr; text-align: center; }
  .wholesale-copy p { margin-left: auto; margin-right: auto; }
  .wholesale-badge { margin: 0 auto; }
}

/* ---------------------------------------------------------
   Instagram grid
   --------------------------------------------------------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.insta-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #eee;
}
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-grid a:hover img { transform: scale(1.06); }
@media (max-width: 720px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--hoh-white);
  border-top: 1px solid var(--hoh-line);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p { color: var(--hoh-ink-soft); font-size: 14px; max-width: 240px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-email {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--hoh-ink-soft);
}
.footer-email:hover { color: var(--hoh-pink); }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--hoh-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hoh-navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--hoh-navy); color: var(--hoh-white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hoh-navy);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--hoh-ink-soft); font-size: 14px; }
.footer-col a:hover { color: var(--hoh-pink); }
.footer-bottom {
  border-top: 1px solid var(--hoh-line);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--hoh-ink-soft);
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--hoh-navy); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------
   Page banner (interior pages)
   --------------------------------------------------------- */
.page-banner {
  padding: 68px 0 54px;
  text-align: center;
  background: var(--hoh-green-soft);
  border-bottom: 1px solid var(--hoh-line);
}
.page-banner .eyebrow { display: block; margin-bottom: 14px; }
.page-banner h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.page-banner p { color: var(--hoh-ink-soft); max-width: 560px; margin: 0 auto; font-size: 16px; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--hoh-ink-soft); font-size: 15.5px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose li { margin-bottom: 6px; }

.placeholder-note {
  background: var(--hoh-pink-pale);
  border: 1px dashed var(--hoh-pink);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--hoh-ink);
  margin-bottom: 36px;
}
.placeholder-note strong { color: var(--hoh-pink-dark); }

/* ---------------------------------------------------------
   Forms (wholesale / contact)
   --------------------------------------------------------- */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--hoh-white);
  border: 1px solid var(--hoh-line);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hoh-navy);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--hoh-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--hoh-cream);
  color: var(--hoh-ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--hoh-ink-soft); margin-top: 18px; text-align: center; }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--hoh-line);
}
.faq-item summary {
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--hoh-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--hoh-pink);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 20px; color: var(--hoh-ink-soft); font-size: 15px; }

/* Shop page filters / all-products intro */
.shop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 28px;
}
.shop-hero-media { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.shop-hero-media img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-copy p { max-width: 100%; }
  .split, .split-reverse { grid-template-columns: 1fr; }
  .split-reverse .split-media, .split-reverse .split-copy { order: 0; }
  .split-copy { padding: 44px 28px; }
  .split-media { min-height: 300px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .shop-hero { grid-template-columns: 1fr; padding-top: 36px; }
}

@media (max-width: 720px) {
  .header-inner { padding: 12px 20px; }
  .brand-logo img { height: 52px; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card .info { padding: 16px 14px 20px; }
  .product-card h3 { font-size: 16px; }
  .wholesale-inner { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-bottom: 32px; }
  .form-card { padding: 26px; }
  .announcement-track { gap: 16px; font-size: 10.5px; }
  .announcement-track .sep-dot:nth-of-type(n+2) { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
