/* =====================================================
   3029 — Sticker Store
   Bold / poppy / square / vibrant
   White base, black borders, yellow accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,900&family=Barlow:wght@400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --yellow:  #ffe600;
  --yellow-dark: #e6cf00;
  --red:     #ff2d2d;
  --blue:    #0047ff;
  --gray:    #f2f2f2;
  --mid-gray:#e0e0e0;
  --dark-gray:#666;
  --border:  2px solid var(--black);
  --border-thin: 1px solid var(--black);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 60px;
  --max-w: 1320px;
  --radius: 0px;
  --transition: 0.15s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: stretch;
  background: var(--white);
  border-bottom: var(--border);
}
.nav__logo {
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
  border-right: var(--border);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.nav__logo:hover { background: var(--yellow); }
.nav__links {
  display: flex; align-items: stretch; flex: 1;
}
.nav__link {
  display: flex; align-items: center;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-right: var(--border);
  transition: background var(--transition);
}
.nav__link:hover, .nav__link.active { background: var(--yellow); }
.nav__end {
  display: flex; align-items: stretch; margin-left: auto;
}
.nav__cart-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-left: var(--border);
  transition: background var(--transition);
  cursor: pointer;
}
.nav__cart-btn:hover { background: var(--yellow); }
.nav__cart-badge {
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 800;
  padding: 2px 6px;
  min-width: 20px; text-align: center;
}
.nav__cart-badge[data-empty="true"] { display: none; }

.nav__mobile-toggle {
  display: none; align-items: center; justify-content: center;
  padding: 0 20px; border-left: var(--border); cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav__mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--black);
}

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--white); padding-top: var(--nav-h);
  flex-direction: column; border-top: var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  text-transform: uppercase; padding: 16px 28px;
  border-bottom: var(--border);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--yellow); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav__cart-btn span:not(.nav__cart-badge) { display: none; }
}

/* ── CART DRAWER ── */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.4);
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(440px, 100vw);
  background: var(--white);
  border-left: var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-h);
  border-bottom: var(--border);
}
.cart-drawer__title {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cart-drawer__close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: var(--border); font-weight: 700;
  transition: background var(--transition);
}
.cart-drawer__close:hover { background: var(--yellow); }
.cart-drawer__items { flex: 1; overflow-y: auto; }
.cart-drawer__empty {
  padding: 48px 24px; text-align: center;
  font-family: var(--font-display); font-size: 20px;
  font-weight: 700; text-transform: uppercase; color: var(--dark-gray);
}
.cart-item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 0; border-bottom: var(--border);
}
.cart-item__img {
  width: 72px; height: 72px; object-fit: cover;
  border-right: var(--border);
}
.cart-item__info { padding: 12px 16px; }
.cart-item__name { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.cart-item__price { font-size: 13px; color: var(--dark-gray); margin-top: 2px; }
.cart-item__qty {
  display: flex; align-items: center; gap: 0; margin-top: 8px;
  border: var(--border); width: fit-content;
}
.cart-item__qty button {
  width: 26px; height: 26px; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-item__qty button:hover { background: var(--yellow); }
.cart-item__qty span { width: 28px; text-align: center; font-size: 13px; font-weight: 600; border-left: var(--border); border-right: var(--border); line-height: 26px; }
.cart-item__remove {
  padding: 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark-gray); border-left: var(--border);
  align-self: stretch; display: flex; align-items: flex-start;
  transition: background var(--transition);
}
.cart-item__remove:hover { background: var(--gray); color: var(--red); }
.cart-drawer__footer {
  border-top: var(--border);
  padding: 20px 24px; display: flex; flex-direction: column; gap: 12px;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cart-drawer__subtotal span:first-child {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cart-drawer__subtotal-amount {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: var(--border);
  transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--yellow); color: var(--black);
}
.btn-primary:hover { background: var(--yellow-dark); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-outline {
  background: var(--white); color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-black {
  background: var(--black); color: var(--white);
}
.btn-black:hover { background: var(--yellow); color: var(--black); }
.btn-full { width: 100%; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #cc0000; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  border-bottom: var(--border);
}
.hero__left {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: var(--border);
  background: var(--white);
}
.hero__right {
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 500px;
}
.hero__right-img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero__price-tag {
  position: absolute; top: 40px; right: 40px; z-index: 2;
  background: var(--black); color: var(--yellow);
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  padding: 16px 24px; line-height: 1;
  transform: rotate(3deg);
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
}
.hero__eyebrow {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dark-gray); margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 900; line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__title em { font-style: italic; color: var(--black); }
.hero__description {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--dark-gray); margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 60px 28px; }
  .hero__right { min-height: 50vw; }
  .hero__title { font-size: clamp(64px, 16vw, 100px); }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--black); color: var(--yellow);
  border-bottom: var(--border);
  padding: 14px 0; overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 18s linear infinite;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FEATURE STRIP ── */
.feature-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--border);
}
.feature-item {
  padding: 32px 28px;
  border-right: var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.feature-item:last-child { border-right: none; }
.feature-item__num {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  line-height: 1; color: var(--yellow);
  -webkit-text-stroke: 2px var(--black);
}
.feature-item__label {
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.feature-item__desc { font-size: 13px; color: var(--dark-gray); line-height: 1.5; }

@media (max-width: 700px) {
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item { border-bottom: var(--border); }
}

/* ── PRODUCTS SECTION ── */
.products-section { padding: 0; }
.products-section__header {
  padding: 56px 0 40px;
  border-bottom: var(--border);
}
.products-section__eyebrow {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dark-gray); margin-bottom: 8px;
}
.products-section__title {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
}

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--border);
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  border-right: var(--border);
  border-bottom: var(--border);
  display: flex; flex-direction: column;
  background: var(--white);
  transition: background var(--transition);
}
.product-card:hover { background: var(--gray); }
.product-card__img-wrap {
  aspect-ratio: 1 / 1; overflow: hidden;
  border-bottom: var(--border);
  background: var(--gray);
}
.product-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__info { padding: 20px 20px 12px; flex: 1; }
.product-card__name {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px;
}
.product-card__desc { font-size: 13px; color: var(--dark-gray); line-height: 1.5; }
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border-top: var(--border);
}
.product-card__price {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
}
.product-card__badge {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  padding: 4px 8px; border: var(--border);
}
.product-card__add-wrap { padding: 12px 20px; border-top: var(--border); }
.product-card__loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; grid-column: 1 / -1;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark-gray);
}

/* ── PRODUCT DETAIL ── */
.product-page { padding-top: var(--nav-h); }
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  border-bottom: var(--border);
}
.product-gallery {
  border-right: var(--border);
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden; background: var(--gray);
}
.product-gallery__main {
  width: 100%; height: 100%; object-fit: cover;
}
.product-gallery__thumbs {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; border-top: var(--border);
}
.product-gallery__thumb {
  width: 72px; height: 72px; object-fit: cover; flex-shrink: 0;
  cursor: pointer; border-right: var(--border);
  opacity: 0.6; transition: opacity var(--transition);
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { opacity: 1; }
.product-info {
  padding: 56px 48px; display: flex; flex-direction: column; gap: 28px;
  overflow-y: auto;
}
.product-info__eyebrow {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark-gray);
}
.product-info__title {
  font-family: var(--font-display); font-size: clamp(40px, 4vw, 64px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
}
.product-info__price {
  font-family: var(--font-display); font-size: 56px; font-weight: 900;
  line-height: 1;
  background: var(--yellow); display: inline-block;
  padding: 8px 20px; border: var(--border);
}
.product-info__desc { font-size: 15px; line-height: 1.7; color: var(--black); }
.product-info__qty-row { display: flex; align-items: center; gap: 16px; }
.qty-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.qty-input {
  display: flex; align-items: stretch;
  border: var(--border);
}
.qty-input button {
  width: 44px; height: 44px; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.qty-input button:hover { background: var(--yellow); }
.qty-input input {
  width: 52px; text-align: center;
  background: transparent; color: var(--black); font-size: 16px; font-weight: 700;
  border: none; border-left: var(--border); border-right: var(--border);
  -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; }
.product-info__note {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark-gray);
  display: flex; align-items: center; gap: 8px;
}
.spec-section { padding: 56px 48px; border-top: var(--border); }
.spec-section__title {
  font-family: var(--font-display); font-size: 32px; font-weight: 900;
  text-transform: uppercase; margin-bottom: 28px;
}
.spec-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: var(--border);
}
.spec-item {
  padding: 16px 20px; border-right: var(--border); border-bottom: var(--border);
}
.spec-item:nth-child(even) { border-right: none; }
.spec-item__label {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dark-gray); margin-bottom: 4px;
}
.spec-item__value { font-size: 14px; font-weight: 500; }

@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-gallery { position: relative; height: 70vw; min-height: 320px; }
  .product-info { padding: 36px 24px; }
  .spec-section { padding: 36px 24px; }
}

/* ── COLLECTION PAGE ── */
.collection-header {
  padding: calc(var(--nav-h) + 56px) 0 40px;
  border-bottom: var(--border);
}
.collection-header__title {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px);
  font-weight: 900; text-transform: uppercase; line-height: 0.9;
}
.collection-header__desc { font-size: 15px; color: var(--dark-gray); margin-top: 16px; max-width: 480px; }

/* ── CHECKOUT ── */
.checkout-page { padding: calc(var(--nav-h) + 56px) 0 80px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.checkout-section-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 900;
  text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.form-grid.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.form-input {
  background: var(--white); border: var(--border);
  padding: 12px 14px; color: var(--black); font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--transition); border-radius: 0;
}
.form-input:focus { outline: none; background: var(--yellow); }
.form-input::placeholder { color: #aaa; }

.cash-pickup-banner {
  background: var(--yellow); border: var(--border);
  padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.cash-pickup-banner__icon { font-size: 28px; flex-shrink: 0; }
.cash-pickup-banner__title {
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  text-transform: uppercase; margin-bottom: 4px;
}
.cash-pickup-banner__desc { font-size: 13px; line-height: 1.6; }

.order-summary {
  background: var(--white); border: var(--border);
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.order-summary__title {
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  text-transform: uppercase; padding: 16px 20px;
  border-bottom: var(--border);
}
.order-items { display: flex; flex-direction: column; }
.order-item {
  display: flex; gap: 0; align-items: stretch;
  border-bottom: var(--border);
}
.order-item__img { width: 60px; height: 60px; object-fit: cover; flex-shrink: 0; border-right: var(--border); }
.order-item__info { flex: 1; padding: 10px 14px; }
.order-item__name { font-family: var(--font-display); font-size: 15px; font-weight: 800; text-transform: uppercase; }
.order-item__qty { font-size: 12px; color: var(--dark-gray); }
.order-item__price { padding: 10px 14px; font-family: var(--font-display); font-size: 16px; font-weight: 800; align-self: center; }
.order-totals { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.order-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--dark-gray); }
.order-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 20px; border-top: var(--border);
  font-family: var(--font-display);
}
.order-total span:first-child { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.order-total-amount { font-size: 36px; font-weight: 900; }
.order-summary__checkout { padding: 16px 20px; border-top: var(--border); }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}

/* ── CONFIRMATION ── */
.confirmation-page {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  min-height: 100vh;
}
.confirmation-box {
  border: var(--border); max-width: 600px;
  background: var(--white);
}
.confirmation-box__header {
  background: var(--yellow); padding: 32px 36px;
  border-bottom: var(--border);
}
.confirmation-box__title {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  text-transform: uppercase; line-height: 1;
}
.confirmation-box__body { padding: 32px 36px; display: flex; flex-direction: column; gap: 20px; }

/* ── PAGE CONTENT ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 48px;
  border-bottom: var(--border);
}
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(48px, 7vw, 80px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
}
.page-hero__desc { font-size: 15px; color: var(--dark-gray); margin-top: 16px; max-width: 520px; }
.page-content { padding: 56px 0 80px; }
.page-content h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 900;
  text-transform: uppercase; margin: 40px 0 14px;
}
.page-content h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.page-content p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.page-content ul, .page-content ol { padding-left: 20px; margin-bottom: 14px; }
.page-content li { font-size: 15px; line-height: 1.75; margin-bottom: 6px; }
.page-content a { text-decoration: underline; }
.prose-max { max-width: 720px; }

/* ── ACCORDION ── */
.accordion { border-top: var(--border); }
.accordion-item { border-bottom: var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: color var(--transition);
}
.accordion-trigger svg { flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-content { display: none; padding: 0 0 20px; font-size: 14px; line-height: 1.75; color: var(--dark-gray); }
.accordion-item.open .accordion-content { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--black); color: var(--white);
  border-top: var(--border);
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 2px solid #222;
}
.footer__col {
  padding: 48px 32px;
  border-right: 2px solid #222;
}
.footer__col:last-child { border-right: none; }
.footer__brand-name {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  text-transform: uppercase; line-height: 1; margin-bottom: 16px;
  color: var(--yellow);
}
.footer__brand-desc { font-size: 13px; line-height: 1.7; color: #888; }
.footer__col-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #666; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px; color: #ccc;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--yellow); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: #555;
}
.newsletter-form { display: flex; margin-top: 16px; border: 1px solid #333; }
.newsletter-input {
  flex: 1; background: transparent; border: none;
  padding: 10px 14px; color: var(--white);
  font-family: var(--font-body); font-size: 13px;
}
.newsletter-input:focus { outline: none; background: #111; }
.newsletter-input::placeholder { color: #555; }
.newsletter-submit {
  padding: 10px 16px; background: var(--yellow); color: var(--black);
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background var(--transition);
}
.newsletter-submit:hover { background: var(--yellow-dark); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__col { border-right: none; border-bottom: 1px solid #222; }
}

/* ── SPINNER ── */
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 3px solid rgba(0,0,0,0.15); border-top-color: var(--black);
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--black); color: var(--white);
  border: var(--border);
  padding: 14px 20px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(20px); opacity: 0;
  transition: all 0.25s ease; pointer-events: none;
}
.toast.show { transform: none; opacity: 1; }
.toast__dot { width: 8px; height: 8px; background: var(--yellow); flex-shrink: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeUp 0.4s ease both; }
