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

:root {
  --orange: #e8650a;
  --orange-dark: #c4530a;
  --green: #2a7a2a;
  --green-light: #3a9a3a;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f7f7f5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,101,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ── SECTION COMMON ── */
.section { padding: 96px 0; }
.section-alt { background: var(--light-gray); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.section-title span { color: var(--orange); }
.section-sub {
  margin-top: 16px;
  color: var(--gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item svg { width: 14px; height: 14px; fill: var(--orange); }
.topbar-social { margin-left: auto; }
.topbar-social a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--orange); }
.topbar-social svg { width: 16px; height: 16px; }

/* ── LANG SWITCHER ── */
.lang-switcher { margin-left: 8px; display: flex; gap: 4px; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-btn.lang-active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fef200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}
.nav-logo-text strong { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}
.nav-links a {
  padding: 10px 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/store-dairy-juices.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,10,0.82) 0%, rgba(20,30,15,0.65) 60%, rgba(232,101,10,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 100px 24px 60px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-poinciana { color: #fef200; }
.hero-produce   { color: var(--orange); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-style: italic;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 36px; height: 36px; fill: white; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.badge-num { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; }
.badge-year { font-size: 1.5rem; line-height: 1; }

.about-text { padding-left: 8px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--light-gray);
}
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  font-weight: 600;
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.products-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── PREPARED FOODS ── */
.prepared-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.prepared-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.prepared-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prepared-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.prepared-card:hover img { transform: scale(1.04); }
.prepared-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 24px 14px 12px;
  text-align: center;
}
.empanadas-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.empanadas-banner img {
  width: 100%;
  display: block;
  height: auto;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  overflow: hidden;
  height: 200px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-info {
  padding: 24px;
}
.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.product-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── BANNER CTA ── */
.banner-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: url('img/store-canned-goods.jpg') center/cover no-repeat fixed;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 20, 0.82);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.banner-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.3;
}
.banner-content h2 span { color: var(--orange); }

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: stretch;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.loc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(232,101,10,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon svg { fill: var(--orange); width: 22px; height: 22px; }
.loc-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.loc-item p, .loc-item a {
  color: var(--gray);
  font-size: 0.9rem;
}
.loc-item a:hover { color: var(--orange); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { display: block; }

/* ── CONTACT ── */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,101,10,0.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.contact-form .btn { width: 100%; justify-content: center; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(42,122,42,0.1);
  color: var(--green);
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 24px;
}
.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
  font-style: normal;
}
.footer-logo-text em   { color: #fef200; font-style: normal; }
.footer-logo-text strong { color: var(--orange); }
.footer-brand p { font-size: 0.82rem; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid,
  .products-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .prepared-grid   { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 380px; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
}

@media (max-width: 768px) {
  .topbar-item:first-child { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-links .nav-cta { text-align: center; }
  .section { padding: 64px 0; }
  .products-grid,
  .products-grid-6 { grid-template-columns: 1fr 1fr; }
  .prepared-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid,
  .products-grid-6 { grid-template-columns: 1fr; }
  .prepared-grid   { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
