/* =============================================================================
   MUNDO GRAPPLING STORE — style.css
   Design: Industrial Combat Dark
   Mercado: Portugal | Moeda: EUR (€)
   Tipografia: Barlow Condensed (display) + DM Sans (corpo)
   Paleta: #0a0a0a (fundo) · #FFC107 (âmbar/marca) · #fff (texto)
   ============================================================================= */

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

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --bg:       #0a0a0a;
  --dark:     #111111;
  --card:     #161616;
  --card2:    #1e1e1e;
  --border:   #2a2a2a;
  --amber:    #FFC107;
  --amber-dk: #e6ac00;
  --text:     #f0f0f0;
  --muted:    #777;
  --radius:   2px;
  --shadow:   0 4px 24px rgba(0,0,0,.6);
}

/* ── Announce Bar ─────────────────────────────────────────────────────────── */
.announce-bar {
  background: var(--amber);
  color: #000;
  text-align: center;
  padding: .55rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.8); }

.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar__inner {
  display: flex; align-items: center;
  height: 64px; gap: 2rem;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0; text-decoration: none;
}
.logo__img {
  height: 42px; width: auto;
  object-fit: contain;
  filter: brightness(1);
}

/* Nav Links */
.nav__links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto;
}
.nav__links li { position: relative; }
.nav__links a,
.nav__links button {
  display: flex; align-items: center; gap: .35rem;
  padding: .5rem .75rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: #bbb; transition: color .2s; background: none; border: none;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links button:hover { color: var(--amber); }

/* Dropdown */
.nav__dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--card); border: 1px solid var(--border);
  min-width: 240px; padding: .5rem;
  box-shadow: var(--shadow); z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .75rem; font-family: var(--font-body);
  font-size: .85rem; color: #bbb; text-transform: none;
  letter-spacing: 0; transition: all .2s;
}
.nav__dropdown-menu a:hover { color: var(--amber); background: var(--card2); }
.cat-icon { font-size: 1.1rem; }
.cat-count { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
.nav__dropdown-divider { height: 1px; background: var(--border); margin: .4rem 0; }
.nav__dropdown-menu .see-all { color: var(--amber); font-weight: 600; }

/* Nav Actions */
.nav__actions { display: flex; align-items: center; gap: .5rem; }
.nav__icon-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: #bbb;
  transition: color .2s;
}
.nav__icon-btn svg { width: 20px; height: 20px; }
.nav__icon-btn:hover { color: var(--amber); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--amber); color: #000;
  width: 16px; height: 16px; border-radius: 50%;
  font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.nav__hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: #bbb;
}
.nav__hamburger svg { width: 22px; height: 22px; }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .65rem 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  color: #bbb; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav__cats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .5rem; margin-top: .75rem;
}
.mobile-nav__cats a {
  border: 1px solid var(--border); padding: .5rem .75rem;
  font-size: .78rem; border-bottom: 1px solid var(--border);
  text-transform: none; letter-spacing: 0;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem;
  background: var(--amber); color: #000;
  font-family: var(--font-display); font-weight: 800;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber-dk); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem;
  background: transparent;
  border: 2px solid var(--amber); color: var(--amber);
  font-family: var(--font-display); font-weight: 800;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  transition: all .2s; cursor: pointer;
}
.btn-outline:hover { background: var(--amber); color: #000; }

.btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem;
  background: #000; color: var(--amber);
  border: 2px solid #000;
  font-family: var(--font-display); font-weight: 800;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  transition: all .2s; cursor: pointer;
}
.btn-dark:hover { background: var(--amber); color: #000; border-color: var(--amber); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero_grappling.jpg');
  background-size: cover; background-position: center top;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,.97) 40%,
    rgba(10,10,10,.55) 70%,
    rgba(10,10,10,.2) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 6rem 0 4rem; max-width: 600px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .75rem;
  background: var(--amber); color: #000;
  font-family: var(--font-display); font-weight: 800;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(4rem, 9vw, 8rem);
  text-transform: uppercase; color: #fff;
  line-height: .9; margin-bottom: 1.25rem;
}
.hero__title .accent { color: var(--amber); display: block; }
.hero__desc {
  color: #aaa; font-size: 1rem; line-height: 1.7;
  margin-bottom: 2rem; max-width: 440px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2rem; color: var(--amber); line-height: 1;
}
.hero__stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

/* ── Perks ────────────────────────────────────────────────────────────────── */
.perks {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.perks__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) { .perks__grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (max-width: 480px) { .perks__grid { grid-template-columns: 1fr; } }

.perk {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
}
.perk__icon { font-size: 1.5rem; flex-shrink: 0; }
.perk__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: .85rem; text-transform: uppercase; color: #fff;
  letter-spacing: .04em;
}
.perk__desc { font-size: .75rem; color: var(--muted); margin-top: .1rem; }

/* ── Section Header ───────────────────────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header__eyebrow {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .75rem;
}
.section-header__eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--amber);
}
.section-header__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase; color: #fff; line-height: 1;
}
.section-header__title span { color: var(--amber); }
.section-header__sub { color: var(--muted); margin-top: .5rem; font-size: .9rem; }

/* ── Categories ───────────────────────────────────────────────────────────── */
.categories { padding: 5rem 0; }
.categories__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .categories__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .categories__grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.75rem 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: all .25s; text-align: center;
}
.cat-card:hover {
  border-bottom-color: var(--amber);
  background: var(--card2); transform: translateY(-3px);
}
.cat-card__icon { font-size: 2.25rem; margin-bottom: .75rem; }
.cat-card__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: .85rem; text-transform: uppercase; color: #fff;
  letter-spacing: .06em;
}
.cat-card__count { font-size: .72rem; color: var(--muted); margin-top: .25rem; }

/* ── Products Section ─────────────────────────────────────────────────────── */
.products-section { padding: 5rem 0; }
.products-section--alt { background: var(--dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

/* ── Product Card ─────────────────────────────────────────────────────────── */
.product-card {
  background: var(--card); border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

.product-card__img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1rem;
  opacity: 0; transition: opacity .25s;
}
.product-card:hover .product-card__overlay { opacity: 1; }

.badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .6rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
}
.badge--novo     { background: #22c55e; color: #000; }
.badge--oferta   { background: #ef4444; color: #fff; }
.badge--destaque { background: var(--amber); color: #000; }

.product-card__body { padding: 1rem; }
.product-card__cat {
  font-family: var(--font-display); font-weight: 700;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .35rem;
}
.product-card__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; text-transform: uppercase; color: #fff;
  line-height: 1.2; margin-bottom: .5rem;
}
.product-card__rating {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--muted); margin-bottom: .6rem;
}
.stars { color: var(--amber); letter-spacing: -.05em; }
.product-card__price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.price-current {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.3rem; color: var(--amber);
}
.price-original {
  font-size: .8rem; color: var(--muted);
  text-decoration: line-through;
}
.price-discount {
  font-family: var(--font-display); font-weight: 800;
  font-size: .72rem; background: #ef4444; color: #fff;
  padding: .1rem .35rem;
}

/* ── Feature Banner ───────────────────────────────────────────────────────── */
.feature-banner {
  position: relative; padding: 6rem 0;
  overflow: hidden;
}
.feature-banner__bg {
  position: absolute; inset: 0;
  background-image: url('../images/kimono_hero.jpg');
  background-size: cover; background-position: center;
  opacity: .15;
}
.feature-banner__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .feature-banner__content { grid-template-columns: 1fr; } }

.feature-banner__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase; color: #fff; line-height: .95;
  margin-bottom: 1.25rem;
}
.feature-banner__title span { color: var(--amber); display: block; }
.feature-banner__text { color: #aaa; line-height: 1.8; margin-bottom: 2rem; font-size: .95rem; }
.feature-banner__img {
  border-left: 4px solid var(--amber); overflow: hidden;
}
.feature-banner__img img { width: 100%; height: 380px; object-fit: cover; }

/* ── Domains ──────────────────────────────────────────────────────────────── */
.domains { padding: 5rem 0; background: var(--dark); }
.domains__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .domains__grid { grid-template-columns: 1fr; } }

.domain-card {
  display: block; padding: 2rem 1.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  transition: all .25s;
}
.domain-card:hover { background: var(--card2); transform: translateY(-3px); box-shadow: var(--shadow); }
.domain-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.domain-card__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; text-transform: uppercase; color: var(--amber);
  letter-spacing: .04em; margin-bottom: .75rem;
}
.domain-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── Newsletter ───────────────────────────────────────────────────────────── */
.newsletter {
  background: var(--amber); padding: 3.5rem 0;
}
.newsletter__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.newsletter__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase; color: #000; line-height: 1;
}
.newsletter__sub { color: rgba(0,0,0,.6); font-size: .9rem; margin-top: .35rem; }
.newsletter__form { display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter__input {
  padding: .75rem 1.25rem; min-width: 280px;
  background: #000; color: #fff; border: none;
  font-family: var(--font-body); font-size: .9rem;
  outline: none;
}
.newsletter__input::placeholder { color: #555; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { background: #000; padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo-img { height: 36px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer__brand-desc { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: .5rem; }
.footer__social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 800; font-size: .7rem;
  color: #bbb; transition: all .2s;
}
.footer__social a:hover { background: var(--amber); color: #000; border-color: var(--amber); }

.footer__col-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.footer__links { display: flex; flex-direction: column; gap: .4rem; }
.footer__links a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--amber); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.footer__copy { font-size: .78rem; color: var(--muted); }
.footer__domains { display: flex; gap: 1.5rem; }
.footer__domains a {
  font-family: var(--font-display); font-weight: 700;
  font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.footer__domains a:hover { color: var(--amber); }

/* ── Cart Drawer ──────────────────────────────────────────────────────────── */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 1100;
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--dark); border-left: 1px solid var(--border);
  z-index: 1200; display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { right: 0; }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.2rem; text-transform: uppercase; color: #fff;
  letter-spacing: .06em;
}
.cart-drawer__close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: #bbb; transition: color .2s;
}
.cart-drawer__close svg { width: 20px; height: 20px; }
.cart-drawer__close:hover { color: var(--amber); }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }

.cart-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--muted);
}
.cart-empty__icon { font-size: 3rem; margin-bottom: 1rem; }

.cart-item {
  display: flex; gap: 1rem;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.cart-item__img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: .85rem; text-transform: uppercase; color: #fff; line-height: 1.2;
}
.cart-item__price { font-size: .8rem; color: var(--amber); margin-top: .25rem; }
.cart-item__remove {
  font-size: .72rem; color: #ef4444; margin-top: .4rem;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.cart-item__remove:hover { color: #ff6b6b; }

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cart-total__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; text-transform: uppercase; color: var(--muted); letter-spacing: .08em;
}
.cart-total__value {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.4rem; color: var(--amber);
}

/* ── Search Modal ─────────────────────────────────────────────────────────── */
.search-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.85); z-index: 1300;
  align-items: flex-start; justify-content: center;
  padding-top: 8rem;
}
.search-modal.open { display: flex; }
.search-modal__box {
  width: 100%; max-width: 600px;
  background: var(--dark); border: 1px solid var(--border);
  padding: 1.5rem; margin: 0 1rem;
}
.search-modal__input-wrap {
  display: flex; align-items: center; gap: .75rem;
  border-bottom: 2px solid var(--amber); padding-bottom: .75rem;
}
.search-modal__input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; text-transform: uppercase; color: #fff;
  letter-spacing: .04em;
}
.search-modal__input::placeholder { color: #444; }
.search-modal__close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .2s;
}
.search-modal__close svg { width: 18px; height: 18px; }
.search-modal__close:hover { color: var(--amber); }

/* ── Toast ────────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 9999; display: flex; flex-direction: column; gap: .5rem;
}
.toast {
  padding: .75rem 1.25rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
  animation: toastIn .3s ease;
  max-width: 320px;
}
.toast.success { background: #22c55e; color: #000; }
.toast.info    { background: var(--amber); color: #000; }
.toast.error   { background: #ef4444; color: #fff; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Fade-in Animation ────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── International Banner ─────────────────────────────────────────────────── */
.intl-banner {
  background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.intl-banner__icon { font-size: 2rem; flex-shrink: 0; }
.intl-banner__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; text-transform: uppercase; color: #fff; letter-spacing: .04em;
}
.intl-banner__desc { font-size: .85rem; color: var(--muted); margin-top: .25rem; }
.intl-banner__email {
  color: var(--amber); font-weight: 600;
  transition: opacity .2s;
}
.intl-banner__email:hover { opacity: .8; }
