/* ============================================================
   Papagayo Do-It Center - Premium Hardware Store Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --dark-900: #1a1a2e;
  --dark-800: #16213e;
  --dark-700: #0f3460;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --white: #ffffff;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-500: #ef4444;
  --blue-500: #3b82f6;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.section-header { margin-bottom: 3rem; text-align: center; }
.section-header .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-500));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark-900);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  font-size: 1rem;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.5);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark-900);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-800);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark-900);
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--orange-500); }
.top-bar-left { display: flex; align-items: center; gap: 1.25rem; }
.top-bar-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: flex;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  padding: 0.15rem;
  border-radius: var(--radius-sm);
}
.lang-switch button {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.lang-switch button.active,
.lang-switch button:hover {
  background: var(--orange-500);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-normal);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark-900);
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}
.logo span { color: var(--orange-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-700);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width var(--transition-normal);
}
.nav-links a:hover { color: var(--orange-600); }
.nav-links a:hover::after { width: 100%; }

.nav-cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.mobile-toggle span {
  display: block;
  height: 3px;
  background: var(--dark-900);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-700) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249,115,22,0.15), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(234,179,8,0.1), transparent);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
  font-size: 2rem;
  color: var(--orange-500);
  font-weight: 800;
}
.hero-stat p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
}
.hero-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.hero-card-header h3 {
  color: var(--white);
  font-size: 1.25rem;
}
.hero-card-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin: 0;
}
.hero-card-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-cat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  text-align: center;
  transition: all var(--transition-normal);
}
.hero-cat-item:hover {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-2px);
}
.hero-cat-item .icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.hero-cat-item .label { color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 500; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 10px,
    rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px
  );
}
.promo-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.promo-content .icon { font-size: 1.5rem; }
.promo-content strong { font-size: 1.05rem; }
.promo-content span { opacity: 0.9; font-size: 0.9rem; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { background: var(--gray-50); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-normal);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-500);
}
.category-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(234,179,8,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 0.875rem;
  transition: all var(--transition-normal);
}
.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-500));
  transform: scale(1.1);
}
.category-card h3 { font-size: 0.9375rem; color: var(--dark-900); margin-bottom: 0.25rem; }
.category-card p { font-size: 0.75rem; color: var(--gray-500); }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-normal);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  height: 200px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red-500);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  text-transform: uppercase;
}
.product-badge.new { background: var(--green-500); }
.product-info { padding: 1.25rem; }
.product-info h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.product-info .price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange-600);
}
.product-info .price .old {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.5rem;
}
.product-info .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.product-info .product-meta span { font-size: 0.8125rem; color: var(--gray-500); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--dark-900); color: var(--white); }
.services .section-header h2 { color: var(--white); }
.services .section-header p { color: rgba(255,255,255,0.5); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-normal);
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; line-height: 1.6; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--gray-50); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(234,179,8,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}
.why-card h3 { font-size: 1.125rem; color: var(--dark-900); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   LOCATION / HOURS
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-map {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-info h3 {
  font-size: 1.5rem;
  color: var(--dark-900);
  margin-bottom: 1.5rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-item .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(234,179,8,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.info-item h4 { font-size: 0.9375rem; color: var(--dark-900); margin-bottom: 0.15rem; }
.info-item p { font-size: 0.875rem; color: var(--gray-500); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}
.hours-table td:first-child { font-weight: 600; color: var(--dark-900); }
.hours-table td:last-child { text-align: right; color: var(--gray-500); }
.hours-table tr.today td { color: var(--orange-600); font-weight: 600; }

/* ============================================================
   PROMOS / SPECIALS
   ============================================================ */
.specials { background: var(--gray-50); }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.special-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.special-banner {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.special-banner::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.special-banner .discount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.special-banner .label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}
.special-body { padding: 1.5rem; flex: 1; }
.special-body h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.special-body p { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 1rem; }
.special-body .valid {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-strip {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.5;
}
.brand-item {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}
.faq-item.active { border-color: var(--orange-500); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-900);
  background: var(--white);
  width: 100%;
  text-align: left;
}
.faq-question .arrow {
  font-size: 1.25rem;
  color: var(--orange-500);
  transition: transform var(--transition-normal);
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-700) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px
  );
}
.cta-content { position: relative; }
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-900);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}
.footer-social a:hover { background: var(--orange-500); color: var(--white); }

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.625rem; }
.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer ul a:hover { color: var(--orange-500); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.footer-contact-item .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item p { font-size: 0.875rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--orange-500); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-normal);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-left { display: none; }

  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .section-padding { padding: 3.5rem 0; }
  .hero { min-height: 80vh; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat h3 { font-size: 1.5rem; }

  .categories-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.75rem; }
  .category-card { padding: 1.25rem 0.75rem; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .specials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-card-categories { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
