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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --red: #c8102e;
  --red-dark: #a00d24;
  --gold: #e5b923;
  --gold-light: #f5d260;
  --white: #f5f5f5;
  --gray: #9a9a9a;
  --light-gray: #cccccc;
  --green: #1db954;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px; width: auto;
  filter: brightness(1.1);
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: 0.08em; color: var(--white);
}
.nav-logo-text .sub {
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.1rem;
  list-style: none;
}
.nav-links a {
  display: block; padding: 0.5rem 0.9rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--light-gray); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0.9rem; right: 0.9rem;
  height: 2px; background: var(--gold);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 4px; padding: 0.45rem 1rem !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}
.nav-mobile a {
  display: block; padding: 0.65rem 0;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--light-gray); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-green { background: #25D366; color: #fff; }
.btn-green:hover { background: #1aad52; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ── SECTION UTILITIES ── */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1300px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 0.95;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.section-title span { color: var(--red); }
.section-title.gold span { color: var(--gold); }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }

/* ── BADGE / TAGS ── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 3px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-red { background: var(--red); color: #fff; }
.badge-gold { background: var(--gold); color: var(--black); }
.badge-dark { background: var(--border); color: var(--light-gray); }

/* ── DIVIDER ── */
.divider {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 1.25rem 0;
}
.divider-gold { background: var(--gold); }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.announce-bar a { color: #fff; font-weight: 700; }

/* ── FOOTER ── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 50px; margin-bottom: 1.25rem; }
.footer-brand p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: var(--gray); text-decoration: none;
  font-size: 0.87rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { color: var(--gray); font-size: 0.87rem; line-height: 2; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--gray);
}
.footer-bottom a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; }

/* ── STORE CARD ── */
.store-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
  transition: all 0.3s;
}
.store-card:hover { border-color: var(--gold); }
.store-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.store-card .location { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.store-card p { color: var(--gray); font-size: 0.87rem; line-height: 1.7; }
.store-card .contact-line { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.3rem; }
.store-card .contact-line a { color: var(--light-gray); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.store-card .contact-line a:hover { color: var(--gold); }

/* ── POLICY PAGE ── */
.policy-content {
  max-width: 860px; margin: 0 auto;
  padding: 4rem 2rem;
}
.policy-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.policy-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; text-transform: uppercase;
  color: var(--gold); margin: 2.5rem 0 0.75rem;
}
.policy-content p, .policy-content li {
  color: #b0b0b0; font-size: 0.92rem; line-height: 1.8;
}
.policy-content ul { padding-left: 1.5rem; margin: 0.5rem 0; }
.policy-content li { margin-bottom: 0.4rem; }
.policy-content .highlight {
  background: var(--card); border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem; border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}
.policy-content .highlight p { color: var(--light-gray); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3rem 1.25rem; }
}
@media (max-width: 400px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}
