:root {
  --bg: #070707;
  --bg-light: #121212;
  --card: #0e0e0e;
  --gold: #d4af37;
  --gold-dark: #b89224;
  --text: #ffffff;
  --muted: #adadad;
  --border: rgba(212, 175, 55, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --green: #1fca5b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #030303, #0a0a0a);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.section {
  padding: 85px 8%;
}

.section-title {
  text-align: center;
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 800;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 46px;
  font-size: 1.12rem;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0;
  color: var(--gold);
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 42px;
}

.nav a {
  color: #f3f3f3;
  transition: 0.3s;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn,
.whatsapp-btn {
  border-radius: 18px;
  transition: 0.3s;
}

.cart-btn {
  width: 72px;
  height: 72px;
  background: var(--bg-light);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  position: relative;
}

.cart-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.cart-btn.bump {
  animation: cartBump 0.45s ease;
}

@keyframes cartBump {
  0% { transform: scale(1); }
  30% { transform: scale(1.12); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.whatsapp-btn {
  min-height: 68px;
  padding: 0 28px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  font-size: 1.1rem;
}

.whatsapp-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.25);
}

/* HERO */
.hero {
  min-height: 88vh;
  background:
    linear-gradient(rgba(0,0,0,0.74), rgba(0,0,0,0.82)),
    url("img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 8%;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 45%);
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 5rem;
  line-height: 1.02;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.hero h2 span {
  color: var(--gold);
}

.hero p {
  color: #efefef;
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 1.16rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.18);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.large-btn,
.full-width {
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.hero-stats h3 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 2px;
}

.hero-stats p {
  margin: 0;
  color: #d7d7d7;
  font-size: 1rem;
}

/* CATEGORÍAS */
.categories-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.categories-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px;
  flex: 1;
  scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
  display: none;
}

.category-card {
  position: relative;
  min-width: 220px;
  max-width: 220px;
  background: linear-gradient(180deg, #080808, #0f0f0f);
  color: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 18px 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.category-card:hover,
.category-card.active {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 18px 30px rgba(212,175,55,0.08);
}

.category-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.category-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.category-count {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #121212;
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* BUSCADOR */
.search-box {
  max-width: 680px;
  margin: 0 auto 34px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  height: 64px;
}

.search-box i {
  color: var(--gold);
  font-size: 1rem;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
}

.search-box input::placeholder {
  color: #9f9f9f;
}

/* PRODUCTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
  gap: 22px;
  justify-content: start;
}

.product-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(180deg, #0d0d0d, #141414);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.22);
}

.product-image {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #1a1a1a;
  padding: 14px;
}

.product-info {
  padding: 18px;
}

.product-category {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-name {
  font-size: 1.2rem;
  margin: 8px 0;
  font-weight: 800;
}

.product-description {
  color: #d0d0d0;
  font-size: 1rem;
  min-height: 55px;
  margin-bottom: 12px;
}

.product-price {
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.add-btn,
.quick-buy-btn {
  width: 100%;
  padding: 13px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.add-btn {
  background: var(--gold);
  color: #111;
}

.add-btn i {
  font-size: 1rem;
}

.add-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.quick-buy-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.quick-buy-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* COBERTURA */
.coverage-section {
  background: linear-gradient(180deg, rgba(212,175,55,0.04), transparent);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.coverage-card {
  background: linear-gradient(180deg, #080808, #101010);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
  transition: 0.3s;
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.35);
}

.coverage-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.coverage-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.coverage-card p {
  color: var(--muted);
}

/* PROMOS */
.promo-section {
  background: linear-gradient(135deg, #921127, #c71930);
  padding: 85px 8%;
  text-align: center;
}

.promo-content h2 {
  font-size: 3.3rem;
  margin: 14px 0 10px;
  font-weight: 800;
}

.promo-content p {
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
}

.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.promo-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.promo-card {
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 26px;
}

.promo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.promo-btn {
  background: white;
  color: #b1132a;
  margin-top: 30px;
}

.promo-btn:hover {
  transform: translateY(-2px);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  background: linear-gradient(180deg, #080808, #0f0f0f);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 30px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.28);
}

.feature-icon,
.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 26px;
}

.feature-icon.yellow {
  background: rgba(212,175,55,0.12);
  color: #f0c419;
}

.feature-icon.blue {
  background: rgba(37,99,235,0.12);
  color: #2f7cff;
}

.feature-icon.green {
  background: rgba(34,197,94,0.12);
  color: #00dd66;
}

.feature-icon.red {
  background: rgba(239,68,68,0.12);
  color: #ff3f4d;
}

.feature-card h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.feature-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.review-card {
  background: linear-gradient(180deg, #080808, #101010);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.3);
}

.review-stars {
  display: flex;
  gap: 6px;
  color: var(--gold);
  margin-bottom: 18px;
}

.review-card p {
  color: #e2e2e2;
  margin-bottom: 16px;
  min-height: 84px;
}

.review-card h4 {
  color: var(--gold);
  font-size: 1rem;
}

/* CONTACTO */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.contact-card {
  background: linear-gradient(180deg, #080808, #0f0f0f);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 30px;
  transition: 0.3s;
  display: block;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.28);
}

.contact-icon.whatsapp {
  background: rgba(34,197,94,0.12);
  color: #00e05f;
}

.contact-icon.instagram {
  background: rgba(236,72,153,0.12);
  color: #ff35a2;
}

.contact-icon.facebook {
  background: rgba(37,99,235,0.12);
  color: #2f7cff;
}

.contact-icon.location {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
}

.contact-card h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

/* FOOTER */
.footer {
  padding: 55px 8% 18px;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 35px;
}

.footer-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.footer-brand {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 24px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  color: #8f8f8f;
  font-size: 0.92rem;
  align-items: center;
}

.footer-bottom-left {
  text-align: left;
}

.footer-bottom-center {
  text-align: center;
}

.footer-bottom-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.footer-bottom-right i {
  color: #ffb347;
  flex-shrink: 0;
}

.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
  color: #8d8d8d;
}

.footer-credit a {
  color: #b0b0b0;
}

.footer-credit a:hover {
  color: var(--gold);
}

/* TOAST */
.add-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.add-toast i {
  color: #24d366;
}

.add-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* WHATSAPP FLOTANTE */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

/* CARRITO */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 390px;
  max-width: 100%;
  height: 100vh;
  background: #090909;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 2000;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-size: 2rem;
  font-weight: 800;
}

.close-btn {
  background: transparent;
  color: white;
  font-size: 1.4rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  align-items: center;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 14px;
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.cart-item p {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.15rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #000;
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
}

.remove-btn {
  background: transparent;
  color: #ff4343;
  font-size: 1.1rem;
}

.cart-summary {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
}

.cart-summary p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.cart-summary h3 {
  margin: 14px 0 12px;
  font-size: 1.9rem;
  color: var(--gold);
}

.cart-delivery-time {
  color: var(--muted);
  font-size: 0.98rem;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* CHECKOUT */
.checkout-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 2500;
  transition: 0.3s;
  overflow-y: auto;
}

.checkout-modal.show {
  opacity: 1;
  visibility: visible;
}

.checkout-content {
  width: 100%;
  max-width: 520px;
  background: #090909;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  margin: auto;
}

.checkout-content label {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

.checkout-content input,
.checkout-content textarea {
  width: 100%;
  background: #161616;
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  font-size: 1rem;
}

.checkout-content textarea {
  min-height: 110px;
  resize: vertical;
}

.payment-options {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option {
  display: block;
}

.payment-option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #111111, #151515);
  transition: 0.3s;
}

.payment-option:hover .payment-option-content {
  border-color: rgba(212,175,55,0.28);
  transform: translateY(-2px);
}

.payment-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.payment-badge.sinpe {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
}

.payment-badge.cash {
  background: rgba(34,197,94,0.12);
  color: #26d366;
}

.payment-check {
  color: #5e5e5e;
  font-size: 1.2rem;
  transition: 0.3s;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(212,175,55,0.08);
  background: linear-gradient(180deg, #121212, #181818);
}

.payment-option input[type="radio"]:checked + .payment-option-content .payment-check {
  color: var(--gold);
}

.payment-help {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 3px;
}

.checkout-total {
  margin-top: 20px;
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: bold;
}

.whatsapp-send {
  background: var(--green);
  color: white;
  margin-top: 18px;
}

.whatsapp-send:hover {
  background: #18b652;
}

.empty-cart {
  text-align: center;
  color: var(--muted);
  padding: 50px 0;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .nav {
    gap: 28px;
  }

  .brand-title {
    font-size: 1.9rem;
  }

  .logo {
    width: 74px;
    height: 74px;
  }

  .cart-btn {
    width: 64px;
    height: 64px;
  }

  .whatsapp-btn {
    min-height: 64px;
    padding: 0 24px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hero h2 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .promo-content h2 {
    font-size: 2.6rem;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 16px 5%;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: none;
  }

  .category-card {
    min-width: 190px;
    max-width: 190px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
  }

  .product-card {
    max-width: 280px;
  }

  .logo {
    width: 64px;
    height: 64px;
  }

  .brand-title {
    font-size: 1.6rem;
  }

  .cart-btn {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }

  .whatsapp-btn {
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.95rem;
    gap: 10px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 14px 5%;
    gap: 12px;
  }

  .logo-box {
    gap: 10px;
  }

  .logo {
    width: 56px;
    height: 56px;
  }

  .brand-title {
    font-size: 1.35rem;
  }

  .hero,
  .section,
  .promo-section,
  .footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero {
    min-height: 84vh;
  }

  .hero h2 {
    font-size: 2.65rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats h3 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .promo-content h2 {
    font-size: 2.2rem;
  }

  .product-image {
    height: 220px;
  }

  .cart-sidebar {
    width: 100%;
  }

  .header-actions {
    gap: 10px;
  }

  .cart-btn {
    width: 50px;
    height: 50px;
    font-size: 0.95rem;
  }

  .whatsapp-btn {
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .cart-header h2 {
    font-size: 1.7rem;
  }

  .checkout-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .checkout-content {
    max-height: calc(100vh - 24px);
    padding: 18px;
    margin: 0 auto;
  }

  .payment-option-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-top {
    width: 100%;
  }

  .payment-check {
    align-self: flex-end;
  }

  .search-box {
    height: 58px;
  }

  .add-toast {
    bottom: 80px;
    width: calc(100% - 24px);
    justify-content: center;
  }
}