/* ===========================
   SÚPER STORE 24 — Styles v2
   Premium Local Store
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #161616;
  --gray-900: #1e1e1e;
  --gray-800: #2a2a2a;
  --gray-600: #6b6b6b;
  --gray-400: #9a9a9a;
  --gray-200: #e0e0e0;
  --gray-100: #f2f2f2;
  --white: #fafafa;
  --red: #e02d45;
  --red-hover: #c4253b;
  --red-glow: rgba(224, 45, 69, .15);
  --red-glow-strong: rgba(224, 45, 69, .35);
  --yellow: #f5a623;
  --yellow-soft: rgba(245, 166, 35, .12);
  --green: #2ecc71;
  --green-soft: rgba(46, 204, 113, .15);
  --warm: #ff6b35;
  --warm-soft: rgba(255, 107, 53, .1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--dark { background: var(--black); color: var(--white); }

/* Subtle pattern for white sections */
.about, .services, .reviews {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Specials gets a warmer pattern */
.specials {
  background-color: var(--gray-100);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4243b' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.section__tag {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 12px;
}
.section__tag--light { color: var(--yellow); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section__title--light { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--accent {
  background: var(--red);
  color: var(--white);
}
.btn--accent:hover { background: var(--red-hover); transform: translateY(-2px); }
.btn--glow {
  box-shadow: 0 4px 20px var(--red-glow-strong);
}
.btn--glow:hover {
  box-shadow: 0 8px 32px var(--red-glow-strong);
}
.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--ghost {
  color: var(--gray-200);
  background: rgba(255,255,255,.08);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); }

/* --- Top Bar --- */
.topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 8px 0;
  font-size: .8rem;
  color: var(--gray-400);
  position: relative;
  z-index: 1001;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 20px;
}
.topbar__badge--open {
  background: var(--green-soft);
  color: var(--green);
}
.topbar__badge--closed {
  background: rgba(255,255,255,.08);
  color: var(--gray-400);
}
.topbar__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  transition: var(--transition);
}
.topbar__right a:hover { color: var(--white); }

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  font-size: 1.35rem;
}
.brand__icon {
  font-size: 1rem;
  margin-right: 4px;
  filter: drop-shadow(0 0 4px rgba(224,45,69,.25));
  animation: cart-bounce 3s ease-in-out infinite;
  opacity: .8;
}
@keyframes cart-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.brand__super {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-weight: 800;
}
.brand__store { color: var(--gray-400); font-weight: 500; }
.brand__24 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.brand__24::after {
  content: '24';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: .5;
}
.navbar__links {
  display: flex;
  gap: 28px;
}
.navbar__links a {
  color: var(--gray-400);
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { width: 100%; }
.navbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__cta { display: none; }
.navbar__toggle { display: none; }

/* Language Toggle */
.lang-toggle {
  color: var(--gray-400);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid var(--gray-800);
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 1px;
}
.lang-toggle:hover { color: var(--white); border-color: var(--gray-600); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--red-glow), transparent),
    radial-gradient(ellipse 40% 40% at 30% 70%, var(--warm-soft), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, var(--yellow-soft), transparent);
  opacity: .7;
  animation: hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0% { opacity: .5; transform: scale(1); }
  100% { opacity: .8; transform: scale(1.05); }
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero__content {
  position: relative;
  padding: 100px 0 80px;
  max-width: 680px;
}
.hero__tag {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__tag-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(224, 45, 69, .15);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-600);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gray-400);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: .3; top: 18px; }
}

/* --- Brands Marquee --- */
.brands {
  background: var(--black-light);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 18px 0;
  overflow: hidden;
}
.brands__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.brands__track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes food-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brands__slide {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}
.brands__item {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: var(--transition);
}
.brands__item:hover {
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(245,166,35,.3);
}
.brands__dot { color: var(--gray-800); font-size: 1.2rem; }

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image { position: relative; }
.about__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-600);
}
.about__placeholder span { font-size: .85rem; font-weight: 500; }
.about__accent-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: linear-gradient(135deg, var(--red), var(--warm));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px var(--red-glow-strong), 0 0 0 1px rgba(255,255,255,.1) inset;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.about__accent-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px var(--red-glow-strong);
}
.about__accent-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about__accent-text {
  font-size: .8rem;
  line-height: 1.4;
  font-weight: 500;
}
.about__text p { color: var(--gray-600); margin-bottom: 16px; }
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}
.stat__label {
  font-size: .8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* --- Weekly Specials --- */
.specials { background: var(--gray-100); }
.specials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.specials__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.4;
}
.specials__badge-icon { font-size: 1.5rem; }
.specials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.special-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.special-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px var(--red);
  border-color: var(--red);
}
.special-card:hover .special-card__tag {
  background: linear-gradient(135deg, var(--red), var(--warm));
  transform: scale(1.05);
}
.special-card__tag { transition: var(--transition); }
.special-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.special-card__image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.special-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.special-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.special-card__old {
  font-size: .9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.special-card__new {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
}

/* --- Products --- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.product-card {
  background: var(--black-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(224,45,69,.2), 0 0 0 1px rgba(224,45,69,.1);
}
.product-card__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
  transition: .6s;
  pointer-events: none;
}
.product-card:hover .product-card__shine {
  left: 100%;
}
.product-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-card p {
  font-size: .9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* --- Services --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  border-color: var(--red);
  background: linear-gradient(180deg, var(--white), rgba(224,45,69,.03));
}
.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- Gallery --- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--gray-800);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
}
.gallery__placeholder span { font-size: .8rem; font-weight: 500; }
.gallery__placeholder:hover {
  background: var(--gray-900);
  color: var(--gray-400);
  transform: scale(1.02);
}

/* --- Reviews --- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  border-color: var(--yellow);
}
.review-card__stars {
  background: linear-gradient(90deg, var(--yellow), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-card__stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
}
.review-card__author strong {
  display: block;
  font-size: .9rem;
}
.review-card__author span {
  font-size: .8rem;
  color: var(--gray-400);
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__details { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(212,36,59,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact__item strong { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; color: var(--gray-400); }
.contact__item p { color: var(--gray-200); }
.contact__item a { color: var(--gray-200); text-decoration: underline; text-underline-offset: 3px; }
.contact__item a:hover { color: var(--white); }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--gray-900);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; }
.contact__cta { margin-top: 8px; }

/* --- Hiring --- */
.hiring {
  background: linear-gradient(135deg, #1a0a0e 0%, var(--black) 50%, #0a0a1a 100%);
  border-top: 1px solid rgba(224,45,69,.15);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hiring::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, var(--red-glow), transparent);
  pointer-events: none;
}
.hiring__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hiring__text p {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 500px;
}
.hiring .section__title { color: var(--white); }

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 340px;
}
.footer__brand .navbar__brand {
  font-family: var(--font-sans);
  font-style: normal;
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.footer__brand .navbar__brand .brand__super {
  color: var(--white);
  font-weight: 800;
  -webkit-text-fill-color: var(--white);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.footer__brand .navbar__brand .brand__store {
  color: var(--gray-400);
  font-weight: 500;
}
.footer__brand .navbar__brand .brand__24 {
  color: var(--red);
  -webkit-text-fill-color: var(--red);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.footer__brand .navbar__brand .brand__24::after {
  display: none;
}

/* Footer social icons */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--gray-400);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer links */
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__links a {
  font-size: .88rem;
  transition: var(--transition);
  display: inline-block;
}
.footer__links a:hover { color: var(--white); }
.footer__links p { font-size: .88rem; }

/* Footer hours */
.footer__schedule {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .82rem;
}
.footer__schedule:last-child { border-bottom: none; }
.footer__schedule-day {
  color: var(--gray-200);
  font-weight: 500;
  min-width: 75px;
}
.footer__schedule-time {
  color: var(--gray-400);
  text-align: right;
  white-space: nowrap;
}

/* Footer trust badges */
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--gray-400);
}
.footer__trust-badge--ebt {
  background: var(--green-soft);
  border-color: rgba(46,204,113,.2);
  color: var(--green);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  font-size: .8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__copyright {
  color: var(--gray-600);
  font-size: .78rem;
}
.footer__powered {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-600);
  opacity: .5;
  transition: var(--transition);
}
.footer__powered:hover {
  opacity: .8;
}
.footer__powered a {
  color: var(--yellow);
  text-decoration: none;
  opacity: .7;
  transition: var(--transition);
}
.footer__powered a:hover {
  opacity: 1;
}

/* --- WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  transform: scale(0) translateY(20px);
}
.whatsapp-fab.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-fab__tooltip {
  position: absolute;
  right: 72px;
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: var(--transition);
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  border: 1px solid var(--gray-800);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red);
  transform: translateY(-2px);
  border-color: var(--red);
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .specials__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hiring__inner { flex-direction: column; text-align: center; }
  .hiring__text p { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .topbar__right { display: none; }
  .topbar__hours { font-size: .75rem; }

  /* Nav mobile */
  .navbar__links {
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--black);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 20px;
    transform: translateX(100%);
    transition: var(--transition);
    border-left: 1px solid rgba(255,255,255,.06);
    z-index: 1001;
  }
  .navbar__links.is-open { transform: translateX(0); }
  .navbar__links a { font-size: 1.1rem; color: var(--white); }
  .navbar__links a::after { display: none; }
  .navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1002;
  }
  .navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
  }
  .navbar__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
  .navbar__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .lang-toggle { display: none; }

  .hero__content { padding: 80px 0 100px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero__scroll { display: none; }

  .specials__header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .specials__grid { grid-template-columns: 1fr 1fr; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }

  .reviews__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; }
  .contact__map iframe { min-height: 300px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .whatsapp-fab { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-fab__tooltip { display: none; }
  .back-to-top { bottom: 84px; right: 24px; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .specials__grid { grid-template-columns: 1fr; }
  .about__stats { flex-direction: column; gap: 20px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .about__accent-card { right: 0; bottom: -20px; }
}

@media (min-width: 769px) {
  .navbar__cta { display: inline-flex; }
}
