/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fcfcfc;
  --fg: #020912;
  --muted: #767d84;
  --footer-bg: #e4f6ff;
  --shopify-purple: #635bff;
  --border: rgba(2,9,18,0.15);
}
html { font-family: 'Aleo', Georgia, serif; background: var(--bg); color: var(--fg); }
body { background: var(--bg); min-height: 100vh; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  width: 100%; background: var(--fg); color: var(--bg);
  min-height: 44px; height: auto; display: flex; align-items: center; justify-content: space-between; padding: 8px 16px;
}
.ann-bar__btn { color: var(--bg); display: flex; align-items: center; flex-shrink: 0; opacity: 1; transition: opacity .2s; }
.ann-bar__btn:hover { opacity: .6; }
.ann-bar__msg { text-align: center; font-weight: 600; font-size: 12px; letter-spacing: .5px; transition: opacity .3s; flex: 1; user-select: none; line-height: 1.4; }
.ann-bar__msg.fade { opacity: 0; }
@media (min-width: 768px) { .ann-bar { height: 44px; padding: 0 16px; } .ann-bar__msg { font-size: 18.4px; letter-spacing: .69px; } }

/* ── HEADER ── */
header { width: 100%; background: var(--bg); }
.header-desktop {
  display: none; max-width: 1380px; margin: 0 auto; padding: 8px 57.5px 0;
  grid-template-columns: auto 1fr auto; align-items: center; height: 155px;
}
@media (min-width: 768px) { .header-desktop { display: grid; } .header-mobile { display: none !important; } }
.header-logo img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; }
.header-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.header-nav a { font-weight: 600; font-size: 16px; color: var(--fg); transition: opacity .2s; white-space: nowrap; }
.header-nav a:hover { opacity: .7; }
.header-nav a.active { text-decoration: underline; text-underline-offset: 4px; }
.header-actions { display: flex; align-items: center; gap: 16px; color: var(--fg); }
.header-actions button { display: flex; align-items: center; gap: 4px; font-weight: 600; font-size: 14px; color: var(--fg); transition: opacity .2s; }
.header-actions button:hover { opacity: .7; }
.cart-btn { position: relative; }
.cart-badge { position: absolute; top: -6px; right: -6px; width: 16px; height: 16px; background: var(--fg); color: var(--bg); border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.header-mobile { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 0 16px; height: 155px; }
.header-mobile > button:first-child { justify-self: start; }
.header-mobile .header-logo { display: flex; justify-content: center; }
.header-mobile .header-logo img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.header-mobile-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; color: var(--fg); }
.mobile-nav { display: none; flex-direction: column; gap: 16px; padding: 0 16px 24px; background: var(--bg); border-top: 1px solid rgba(2,9,18,.1); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 600; font-size: 16px; color: var(--fg); padding-top: 8px; }
.mobile-nav a.active { text-decoration: underline; text-underline-offset: 4px; }
.mobile-nav .locale-btn { display: flex; align-items: center; gap: 4px; font-weight: 600; font-size: 14px; padding-top: 8px; }

/* ── FOOTER ── */
footer { background: var(--footer-bg); padding: 28px 20px; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 24px; }
.social-links { display: flex; align-items: center; justify-content: center; gap: 16px; }
.social-links a { color: var(--fg); display: flex; align-items: center; transition: opacity .2s; }
.social-links a:hover { opacity: .6; }
.follow-btn { display: flex; align-items: center; gap: 6px; background: var(--shopify-purple); color: #fff; border-radius: 20px; padding: 8px 20px; font-size: 14px; font-family: 'Aleo', Georgia, serif; font-weight: 600; }
.follow-btn:hover { opacity: .85; }
.payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 16px; }
.payment-chip { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 4px 8px; font-size: 11px; color: #555; }
.footer-copyright { text-align: center; font-size: 13.8px; color: rgba(2,9,18,.75); }
.footer-copyright a { color: rgba(2,9,18,.75); }
.footer-copyright a:hover { opacity: .6; }

/* ── iOS zoom fix: font-size < 16px triggers auto-zoom on input focus ── */
@media (max-width: 1024px) {
  input, select, textarea { font-size: 16px !important; }
}
