/* ============================
   TUGÓ COLOMBIA - Estilos Principales
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --color-primary: #1a1a1a;
  --color-secondary: #4f4f51;
  --color-accent: #c8a97e;
  --color-accent-dark: #a8895e;
  --color-bg: #ffffff;
  --color-bg-light: #f7f5f2;
  --color-bg-dark: #1a1a1a;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0ddd8;
  --color-red: #e53935;
  --color-gold: #c8a97e;
  --font-main: 'Roboto', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --header-height: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

input, select, textarea {
  font-family: var(--font-main);
}

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.badge {
  display: inline-block;
  background: var(--color-red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: var(--color-gold);
  color: #1a1a1a;
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__promo {
  flex: 1;
  text-align: center;
  letter-spacing: 0.5px;
}

.top-bar__promo strong {
  color: var(--color-accent);
}

.top-bar__links {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}

.top-bar__links a {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  transition: var(--transition);
}

.top-bar__links a:hover {
  color: white;
}

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-sm);
}

.header__main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -1px;
}

.header__logo-text span {
  color: var(--color-accent);
}

.header__search {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.header__search input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border: 2px solid var(--color-border);
  border-radius: 30px;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg-light);
  transition: var(--transition);
  outline: none;
}

.header__search input:focus {
  border-color: var(--color-accent);
  background: white;
}

.header__search input::placeholder {
  color: var(--color-text-light);
}

.header__search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: white;
}

.header__search-btn:hover {
  background: var(--color-accent-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header__action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.header__action-btn:hover {
  color: var(--color-accent);
  background: var(--color-bg-light);
}

.header__action-btn svg {
  width: 22px;
  height: 22px;
}

.header__cart-count {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--color-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 14px 18px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__item:hover > .nav__link {
  color: var(--color-accent);
  background: rgba(255,255,255,0.05);
}

.nav__link--highlight {
  color: var(--color-accent) !important;
}

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 3px solid var(--color-accent);
  animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav__item:hover .nav__dropdown {
  display: block;
}

.nav__dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--color-text);
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.nav__dropdown-link:hover {
  color: var(--color-accent);
  background: var(--color-bg-light);
  padding-left: 28px;
}

/* ============================
   HERO BANNER
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__slider {
  display: flex;
  transition: transform 0.6s ease;
}

.hero__slide {
  min-width: 100%;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.hero__content {
  padding: 0 80px;
  max-width: 600px;
  color: white;
}

.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: white;
  padding: 15px 36px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.hero__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,126,0.4);
}

.hero__controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero__dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
  backdrop-filter: blur(4px);
}

.hero__arrow:hover {
  background: rgba(255,255,255,0.4);
  border-color: white;
}

.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* ============================
   BENEFITS BAR
   ============================ */
.benefits {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.benefits__list {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  flex: 1;
  border-right: 1px solid var(--color-border);
}

.benefits__item:last-child {
  border-right: none;
}

.benefits__icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 18px;
}

.benefits__text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefits__text p {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================
   CATEGORIES
   ============================ */
.categories {
  padding: 80px 0;
  background: white;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.categories__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  group: true;
}

.categories__card::before {
  content: '';
  display: block;
  padding-top: 120%;
}

.categories__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.categories__card:hover img {
  transform: scale(1.06);
}

.categories__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.categories__card:hover .categories__card-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.categories__card-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.categories__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.categories__card:hover .categories__card-link {
  transform: translateY(0);
  opacity: 1;
}

/* Large category card (spans 2 cols) */
.categories__card--large::before {
  padding-top: 60%;
}

/* ============================
   PRODUCTS SECTION
   ============================ */
.products-section {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.products__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.products__tab {
  padding: 10px 24px;
  border: 2px solid var(--color-border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
  background: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products__tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.products__tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--color-bg-light);
}

.product-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text-light);
  font-size: 18px;
}

.product-card__wishlist:hover {
  color: var(--color-red);
  transform: scale(1.1);
}

.product-card__info {
  padding: 16px;
}

.product-card__brand {
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.product-card__price-old {
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-card__installment {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.product-card__installment strong {
  color: var(--color-primary);
}

.product-card__add-btn {
  width: 100%;
  padding: 12px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-card__add-btn:hover {
  background: var(--color-accent);
}

/* ============================
   PROMO BANNER
   ============================ */
.promo-banner {
  padding: 80px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,126,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.promo-banner__content {
  flex: 1;
  color: white;
}

.promo-banner__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-banner__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.promo-banner__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.promo-banner__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.promo-banner__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.promo-banner__feature-icon {
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: white;
  padding: 15px 36px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.promo-banner__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.promo-banner__image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  max-width: 500px;
}

.promo-banner__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* ============================
   STORES SECTION
   ============================ */
.stores {
  padding: 80px 0;
  background: white;
}

.stores__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.store-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.store-card:hover::before {
  transform: scaleX(1);
}

.store-card__city {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.store-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.store-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-light);
}

.store-card__detail-icon {
  font-size: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.store-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}

.store-card__map-link:hover {
  color: var(--color-accent-dark);
  gap: 10px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
}

.testimonial-card__date {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter {
  padding: 80px 0;
  background: var(--color-accent);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.newsletter__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 16px;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.newsletter__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.newsletter__form {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter__input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--color-text);
}

.newsletter__btn {
  background: var(--color-primary);
  color: white;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--color-secondary);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
}

.footer__top {
  padding: 60px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -1px;
}

.footer__brand-logo span {
  color: var(--color-accent);
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--color-accent);
  padding-left: 6px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.footer__contact-icon {
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-link {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer__bottom-link:hover {
  color: var(--color-accent);
}

.footer__payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__payment-badge {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-primary);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100%;
  background: white;
  z-index: 999;
  transition: left 0.3s ease;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-primary);
}

.mobile-menu__list {
  padding: 20px 0;
}

.mobile-menu__item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu__link:hover {
  color: var(--color-accent);
  background: var(--color-bg-light);
}

.mobile-menu__sub {
  background: var(--color-bg-light);
  display: none;
}

.mobile-menu__sub.open {
  display: block;
}

.mobile-menu__sub-link {
  display: block;
  padding: 12px 36px;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__sub-link:hover {
  color: var(--color-accent);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  box-shadow: var(--shadow-md);
  border: none;
  font-size: 18px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-4px);
}

/* ============================
   WHATSAPP BUTTON
   ============================ */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  font-size: 28px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .hero__title { font-size: 40px; }
  .hero__content { padding: 0 48px; }
  
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promo-banner__inner {
    flex-direction: column;
    gap: 48px;
  }
  
  .promo-banner__image {
    max-width: 100%;
    width: 100%;
  }
  
  .stores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar__links { display: none; }
  
  .header__search { display: none; }
  .header__action-btn span { display: none; }
  
  .nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-overlay { display: block; }
  
  .hero__slide { height: 420px; }
  .hero__title { font-size: 30px; }
  .hero__content { padding: 0 24px; max-width: 100%; }
  .hero__subtitle { font-size: 15px; }
  
  .benefits__list {
    flex-direction: column;
  }
  .benefits__item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  
  .categories__grid { grid-template-columns: 1fr; }
  
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  
  .section-header__title { font-size: 28px; }
  .promo-banner__title { font-size: 32px; }
  
  .stores__grid { grid-template-columns: 1fr; }
  
  .testimonials__grid { grid-template-columns: 1fr; }
  
  .newsletter__title { font-size: 30px; }
  .newsletter__form { flex-direction: column; }
  
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .hero__slide { height: 320px; }
  .hero__title { font-size: 24px; }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up-delay-1 { animation-delay: 0.1s; }
.fade-in-up-delay-2 { animation-delay: 0.2s; }
.fade-in-up-delay-3 { animation-delay: 0.3s; }

/* Skeleton loading */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite;
}
