/* ===================================================
   RGV LURES — Modern Design System
   =================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary:   #0a0e17;
  --bg-secondary: #0f1624;
  --bg-card:      #141c2e;
  --bg-card-hover:#1a2440;
  --gold:         #d4af37;
  --gold-light:   #f0cf6a;
  --teal:         #00b4d8;
  --teal-dark:    #0096b7;
  --white:        #f0f4ff;
  --muted:        #8892a4;
  --border:       rgba(212,175,55,.18);
  --shadow:       0 8px 32px rgba(0,0,0,.55);
  --radius:       12px;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --nav-h:        70px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--sm{ padding: 50px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-family: var(--font-head);
  font-weight: 700; font-size: .9rem; letter-spacing: .5px;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0e17;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,.4);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0e17;
  transform: translateY(-2px);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), #48cae4);
  color: #0a0e17;
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,180,216,.35);
}
.btn-sm { padding: 9px 20px; font-size: .8rem; }

.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase;
}
.tag-gold { background: rgba(212,175,55,.15); color: var(--gold); border: 1px solid var(--border); }
.tag-teal { background: rgba(0,180,216,.15); color: var(--teal); border: 1px solid rgba(0,180,216,.25); }

.section-label {
  display: block; font-family: var(--font-head); font-size: .75rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 60%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--muted); max-width: 560px; margin-top: 14px; font-size: 1.05rem;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 14px auto 0; }

/* ===== SHIPPING BANNER ===== */
.shipping-banner {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), #48cae4, var(--teal), var(--teal-dark));
  background-size: 300% 100%;
  animation: bannerShimmer 6s linear infinite;
  text-align: center; padding: 10px 24px;
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  letter-spacing: .5px; color: #0a0e17;
}
@keyframes bannerShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,14,23,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: var(--transition);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 900; font-size: 1.25rem;
  letter-spacing: 1px;
}
.nav-logo .logo-icon { width: 44px; height: 44px; }
.nav-logo span { background: linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: .9rem; font-weight: 600;
  color: var(--muted); transition: var(--transition); font-family: var(--font-head);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(212,175,55,.08);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart-btn {
  position: relative; background: rgba(212,175,55,.1); color: var(--gold);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 9px 14px; font-size: 1.1rem; transition: var(--transition);
}
.nav-cart-btn:hover { background: rgba(212,175,55,.2); transform: scale(1.05); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--teal); color: #0a0e17;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: .65rem; font-weight: 700; font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,14,23,.97); backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--white); padding: 12px 32px; border-radius: 12px;
  transition: var(--transition); text-align: center; width: 100%;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(212,175,55,.08); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,180,216,.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,175,55,.08) 0%, transparent 50%),
              var(--bg-primary);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0; animation: float 8s infinite;
}
@keyframes float {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: .6; }
  80%  { opacity: .3; }
  100% { transform: translateY(-120vh) scale(.3); opacity: 0; }
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-top: 60px; padding-bottom: 60px;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.1); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px; width: fit-content;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
}
.hero-title .line1 { color: var(--white); display: block; }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 440px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: flex; gap: 32px; padding-top: 8px; border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.hero-stat-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-lure-showcase {
  position: relative;
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hero-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.hero-lure-ring {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,.15);
  animation: spin 30s linear infinite;
}
.hero-lure-ring::before {
  content:''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-fish-svg {
  width: 220px; height: 220px;
  filter: drop-shadow(0 0 30px rgba(0,180,216,.5));
  animation: fishSway 4s ease-in-out infinite;
}
@keyframes fishSway {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-10px); }
}
.floating-cards {
  position: absolute; inset: 0;
}
.f-card {
  position: absolute; background: rgba(20,28,46,.9);
  backdrop-filter: blur(12px); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  box-shadow: var(--shadow); animation: cardFloat 5s ease-in-out infinite;
}
.f-card:nth-child(1) { top: 20px; left: 0; color: var(--gold); animation-delay: 0s; }
.f-card:nth-child(2) { bottom: 30px; left: 10px; color: var(--teal); animation-delay: 1.5s; }
.f-card:nth-child(3) { top: 30px; right: 0; color: var(--gold-light); animation-delay: 3s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.features-strip .container {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px;
  padding: 28px 24px;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
}
.feature-icon { font-size: 1.6rem; }
.feature-text strong { display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--white); }
.feature-text span  { font-size: .78rem; color: var(--muted); }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px; margin-top: 40px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.1);
  background: var(--bg-card-hover);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--bg-secondary);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-label {
  position: absolute; top: 12px; left: 12px;
}
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-name {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white);
}
.product-desc { font-size: .82rem; color: var(--muted); flex: 1; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.product-price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.add-to-cart {
  background: rgba(212,175,55,.12); color: var(--gold);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 14px; font-size: .82rem; font-weight: 700; font-family: var(--font-head);
  transition: var(--transition);
}
.add-to-cart:hover {
  background: var(--gold); color: #0a0e17; border-color: var(--gold);
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 50px;
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  color: var(--muted); background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  color: #0a0e17; background: var(--gold); border-color: var(--gold);
}

/* ===== LOYALTY ===== */
.loyalty-hero {
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(212,175,55,.06));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.loyalty-hero::before {
  content:''; position: absolute; top:-60px; right:-60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
}
.loyalty-tiers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 48px;
}
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.tier-card::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.tier-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.4); background: var(--bg-card-hover); }
.tier-card.featured::before { background: linear-gradient(90deg, var(--teal), var(--gold)); }
.tier-pts {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 900;
  color: var(--gold);
}
.tier-pts span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.tier-reward {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-top: 8px;
}
.tier-desc { font-size: .85rem; color: var(--muted); margin-top: 8px; }

.earn-ways {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.earn-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; display: flex; gap: 16px;
  align-items: flex-start; transition: var(--transition);
}
.earn-card:hover { transform: translateY(-3px); border-color: rgba(0,180,216,.3); }
.earn-icon { font-size: 2rem; }
.earn-title { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.earn-sub { font-size: .83rem; color: var(--muted); margin-top: 4px; }

.loyalty-calc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; margin-top: 48px;
}
.loyalty-calc h3 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 20px;
}
.calc-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.calc-label { font-size: .9rem; color: var(--muted); white-space: nowrap; }
.calc-input {
  flex: 1; min-width: 120px; background: var(--bg-secondary);
  border: 1px solid var(--border); color: var(--white);
  border-radius: 10px; padding: 12px 16px;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  outline: none; transition: var(--transition);
}
.calc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.1); }
.calc-result {
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.25);
  border-radius: 12px; padding: 20px 24px; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.calc-result-pts { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--gold); }
.calc-result-text { font-size: .9rem; color: var(--muted); }
.calc-result-reward { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--teal); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap {
  border-radius: 20px; overflow: hidden; position: relative;
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-img-wrap::before {
  content:''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,180,216,.15), rgba(212,175,55,.1));
}
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; display: flex; gap: 12px;
}
.value-card .v-icon { font-size: 1.6rem; }
.value-card .v-title { font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.value-card .v-sub  { font-size: .8rem; color: var(--muted); margin-top: 4px; }

.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.location-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
}
.location-card:hover { transform: translateY(-3px); border-color: rgba(0,180,216,.3); }
.location-city { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gold); }
.location-details { font-size: .85rem; color: var(--muted); margin-top: 6px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(212,175,55,.35); transform: translateX(4px); }
.contact-icon { font-size: 1.8rem; width: 44px; text-align: center; }
.contact-label { font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-weight: 600; color: var(--white); margin-top: 2px; }

.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
}
.form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .83rem; font-weight: 600;
  color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px;
}
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); padding: 13px 16px;
  font-family: var(--font-body); font-size: .95rem; outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.form-group textarea { height: 130px; resize: vertical; }

.social-links { display: flex; gap: 14px; margin-top: 24px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px;
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  transition: var(--transition); border: 1px solid var(--border);
  background: var(--bg-card);
}
.social-btn.facebook { color: #1877f2; }
.social-btn.instagram { color: #e1306c; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.4); }

/* ===== FAQ ===== */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 700;
  font-size: .95rem; color: var(--white); text-align: left;
  background: none; transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  padding: 0 24px; font-size: .9rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--muted); margin-top: 14px; font-size: .9rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social-btn {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition);
}
.f-social-btn:hover { background: rgba(212,175,55,.15); border-color: var(--border); color: var(--gold); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a {
  font-size: .88rem; color: var(--muted); transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px; text-align: center;
  font-size: .82rem; color: var(--muted);
}
.footer-bottom a { color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(0,180,216,.06), rgba(212,175,55,.04));
  border-bottom: 1px solid var(--border);
  padding: 70px 0 50px; text-align: center;
}

/* ===== GIFT CARD ===== */
.gift-card-section { margin-top: 48px; }
.gift-card {
  background: linear-gradient(135deg, #1a2440, #0f1624);
  border: 1px solid var(--border); border-radius: 24px;
  padding: 48px; text-align: center; position: relative; overflow: hidden;
  max-width: 500px; margin: 40px auto 0;
}
.gift-card::before {
  content:''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 70%);
}
.gift-card-emoji { font-size: 4rem; margin-bottom: 16px; }
.gift-card-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; }
.gift-card-sub { color: var(--muted); margin: 12px 0 24px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px); z-index: 2000;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw;
  background: var(--bg-secondary); border-left: 1px solid var(--border);
  z-index: 2001; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.cart-close {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--white); width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,80,80,.15); color: #ff5050; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 60px; height: 60px; border-radius: 10px; object-fit: cover;
  background: var(--bg-card);
}
.cart-item-name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.cart-item-price { color: var(--gold); font-weight: 700; font-size: .85rem; }
.cart-item-remove { margin-left: auto; color: var(--muted); font-size: .85rem; transition: var(--transition); }
.cart-item-remove:hover { color: #ff5050; }
.cart-footer {
  padding: 20px; border-top: 1px solid var(--border);
}
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total-label { color: var(--muted); font-size: .9rem; }
.cart-total-val { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.free-shipping-progress { margin-bottom: 16px; }
.fsp-label { font-size: .78rem; color: var(--muted); margin-bottom: 6px; }
.fsp-bar { background: var(--bg-card); border-radius: 4px; height: 6px; overflow: hidden; }
.fsp-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--gold)); border-radius: 4px; transition: width .4s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .loyalty-hero { padding: 40px 24px; }
  .section { padding: 56px 0; }
  .hero-lure-showcase { width: 280px; height: 280px; }
}
