/* ============================================
   ELICARA - Bileşen Stilleri
   Kurumsal Mavi (Light Theme)
   ============================================ */

/* ========== GLOBAL ANNOUNCEMENT ========== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 18px rgba(18, 40, 60, 0.16);
}

.announcement-bar a,
.announcement-bar span {
  color: #fff;
}

.announcement-bar a {
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

.announcement-bar + .navbar {
  top: 36px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  box-shadow: 0 8px 28px rgba(18, 40, 60, 0.06);
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
  z-index: 1;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(18, 40, 60, 0.12);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.navbar-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.68rem;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 4px 10px 4px 4px;
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.navbar-logo:hover {
  color: var(--primary);
  background: rgba(235, 241, 247, 0.72);
  transform: translateY(-1px);
}

.navbar-logo::before {
  content: 'E';
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.36), transparent 36%),
    linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(193, 127, 89, 0.24);
}

.navbar-logo img + .navbar-logo::before {
  display: none;
}

.navbar-logo img {
  max-width: 148px;
  max-height: 42px;
  object-fit: contain;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 999px;
  background: rgba(247, 250, 252, 0.72);
}

.nav-link {
  position: relative;
  padding: 9px 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 40, 60, 0.08);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 999px;
  background: rgba(247, 250, 252, 0.72);
}

.navbar-icons .btn-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 14px rgba(18, 40, 60, 0.05);
}

.navbar-icons .btn-icon:hover {
  color: var(--primary);
  background: var(--primary-50);
  border-color: rgba(27, 58, 92, 0.14);
  box-shadow: 0 10px 24px rgba(18, 40, 60, 0.10);
  transform: translateY(-1px);
}

.cart-icon { position: relative; }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0 4px;
  border: 2px solid #fff;
}

.cart-badge:empty,
.cart-badge[data-count="0"] { display: none; }

.mobile-menu-btn { display: none; }

/* Navbar Search */
.navbar-search-bar {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: 0 14px 34px rgba(18, 40, 60, 0.10);
  padding: 18px 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.navbar-search-bar.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar-search-bar .form-input {
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border-radius: 999px;
  padding-left: 22px;
  box-shadow: 0 8px 24px rgba(18, 40, 60, 0.06);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-body);
  z-index: 1001;
  padding: 80px 24px 24px;
  transition: var(--transition-slow);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active { right: 0; }

.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-link:hover { color: var(--primary); background: var(--primary-50); }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-secondary);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--secondary-50);
  border: 1px solid rgba(193, 127, 89, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
  letter-spacing: 0;
  color: var(--text-heading);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-color);
}

.hero-stat { text-align: left; }

.hero-stat__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--primary);
  top: -150px; right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 350px; height: 350px;
  background: var(--secondary);
  bottom: -80px; left: 5%;
  animation: float2 10s ease-in-out infinite;
}

.hero-shape-3 {
  width: 250px; height: 250px;
  background: var(--primary-light);
  top: 25%; right: 15%;
  animation: float 12s ease-in-out infinite reverse;
}

.hero-shape-4 {
  width: 180px; height: 180px;
  background: var(--secondary-light);
  bottom: 15%; right: 8%;
  animation: float2 9s ease-in-out infinite;
}

/* Product-led hero */
.hero-product {
  min-height: 82vh;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(193, 127, 89, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(27, 58, 92, 0.05), transparent 50%),
    linear-gradient(135deg, rgba(237, 242, 247, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(27, 58, 92, 0.03) 0, rgba(27, 58, 92, 0.03) 1px, transparent 1px, transparent 72px);
}

.hero-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.hero-product .hero-title {
  font-size: 3.45rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-product .hero-buttons {
  margin-bottom: var(--space-xl);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust-row span::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-product__panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-xl);
}

.hero-product__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
}

.hero-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding-top: 16px;
}

.hero-product__eyebrow {
  grid-column: 1 / -1;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-product__summary strong {
  color: var(--text-heading);
  font-size: 1rem;
}

.hero-product__price {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
}

/* ========== CATEGORY CARDS ========== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

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

.category-card__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  transition: var(--transition-slow);
}

.category-card__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__bg,
.category-card:hover .category-card__image {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 60%, transparent 100%);
  z-index: 1;
}

.category-card__content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.category-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.category-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.4;
}

.category-card__link {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.category-card:hover .category-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PRODUCT CARD ========== */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover);
}

.variant-option {
  transform: translateY(0);
}

.variant-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 58, 92, 0.12);
}

.variant-option.active {
  box-shadow: 0 12px 28px rgba(27, 58, 92, 0.16);
}

.product-thumb {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-thumb:hover,
.product-thumb.active {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 58, 92, 0.16);
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-section);
}

.product-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
}

.product-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.product-card__favorite {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: var(--transition);
  z-index: 3;
  border: 1px solid var(--border-color);
}

.product-card__favorite:hover,
.product-card__favorite.active {
  color: var(--danger);
  background: #FFF5F5;
  border-color: rgba(229, 62, 62, 0.3);
}

.product-card__favorite.active svg { fill: var(--danger); }

.product-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

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

.product-card__name:hover { color: var(--primary); }

.product-card__price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
}

.product-card__old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.product-card__actions .btn {
  min-height: 40px;
  padding-left: 14px;
  padding-right: 14px;
}

.category-chip-row {
  display: none;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.category-chip {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-card);
}

.category-chip.active {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}

.products-hero {
  padding: 48px 0 34px;
}

.products-hero__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.products-hero__grid h1 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.products-search {
  display: flex;
  gap: 8px;
  min-width: min(100%, 320px);
}

.products-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
}

.filter-panel {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.filter-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.filter-panel__head h3 {
  font-size: 1.1rem;
}

.filter-panel__head a {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.active-filter-row span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.empty-state {
  text-align: center;
  padding: 72px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.empty-state h2,
.empty-state h3 {
  margin-bottom: 8px;
}

.empty-state .btn {
  margin-top: 20px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-secondary);
}

.checkout-step span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-section);
  color: var(--primary);
  font-weight: 800;
}

.checkout-step strong {
  font-size: 0.9rem;
  color: inherit;
}

.checkout-step.is-active,
.checkout-step.is-done {
  border-color: var(--primary-100);
  background: var(--primary-50);
  color: var(--primary);
}

/* Product Image Placeholder */
.product-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-section), var(--primary-50));
}

.product-image-placeholder span {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
}

/* ========== PROMO BANNER ========== */
.promo-banner {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-badge {
  display: inline-flex;
  padding: 6px 16px;
  background: rgba(193, 127, 89, 0.2);
  border: 1px solid rgba(193, 127, 89, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
}

.promo-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  font-family: 'Outfit', sans-serif;
  color: var(--text-inverse);
}

.promo-title .text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.promo-countdown {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 70px;
}

.countdown-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.promo-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 360px;
}

.promo-shape {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(193, 127, 89, 0.25), rgba(27, 58, 92, 0.1), transparent);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.promo-product-card {
  position: relative;
  width: min(100%, 360px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  color: var(--text-primary);
  transform: rotate(2deg);
  transition: var(--transition);
}

.promo-product-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.promo-product-card__discount {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(193, 127, 89, 0.32);
}

.promo-product-card__media {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-section);
}

.promo-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-product-card__body {
  padding: 18px 4px 2px;
}

.promo-product-card__category {
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-product-card__title {
  margin-bottom: 12px;
  color: var(--text-heading);
  font-size: 1.15rem;
  line-height: 1.25;
}

.promo-product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.promo-product-card__price {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
}

.promo-product-card__old-price {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: line-through;
}

.promo-product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(27, 58, 92, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-product-card:hover .promo-product-card__cta {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  box-shadow: 0 14px 30px rgba(193, 127, 89, 0.26);
}

/* ========== FEATURES SECTION ========== */
.features-section { background: var(--bg-section); }

.feature-box {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-100);
}

.feature-box__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
}

.feature-box__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.feature-box__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.newsletter-desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.newsletter-form { display: flex; gap: 12px; }
.newsletter-form .form-input { flex: 1; }
.newsletter-form .btn { flex-shrink: 0; }

/* ========== LOCATION MAP ========== */
.location-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.location-map__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(235, 241, 247, 0.9), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(27, 58, 92, 0.05) 0, rgba(27, 58, 92, 0.05) 1px, transparent 1px, transparent 64px);
}

.location-map__badge {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--secondary-50);
  border: 1px solid rgba(193, 127, 89, 0.28);
  border-radius: var(--radius-full);
  color: var(--secondary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.location-map__title {
  color: var(--text-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.location-map__desc {
  color: var(--text-secondary);
  margin-bottom: 22px;
  max-width: 420px;
}

.location-map__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  border-color: rgba(18, 140, 126, 0.35);
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.2);
}

.btn-whatsapp:hover {
  color: #fff;
  background: linear-gradient(135deg, #0F766E 0%, #16A34A 100%);
  box-shadow: 0 18px 32px rgba(18, 140, 126, 0.28);
  transform: translateY(-1px);
}

.location-map__frame {
  min-height: 360px;
  background: var(--bg-section);
}

.location-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

/* ========== CONTENT PAGES ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb span:last-child {
  color: var(--primary);
}

.page-hero {
  padding: 48px 0;
  background:
    linear-gradient(135deg, rgba(237, 242, 247, 0.98), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(27, 58, 92, 0.04) 0, rgba(27, 58, 92, 0.04) 1px, transparent 1px, transparent 72px);
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.05rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.page-hero__media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: var(--bg-card);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-mini {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.about-story p {
  font-size: 1.05rem;
}

.subtle-band {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card {
  min-height: 240px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.about-value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary);
  font-weight: 800;
}

.about-value-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stats div {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: #fff;
}

.about-stats strong {
  display: block;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  padding-bottom: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-card--primary {
  border-color: var(--primary-100);
}

.contact-card h2 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.contact-method-list {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  gap: 3px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
}

.contact-method span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-method strong {
  color: var(--primary);
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.contact-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.contact-map__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 34px;
  background: var(--gradient-dark);
}

.contact-map__info span {
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-map__info h2 {
  color: #fff;
  margin: 10px 0 22px;
  font-size: 1.35rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: var(--bg-dark);
  box-shadow: var(--shadow-card);
}

.gallery-card--featured {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 40, 60, 0.82), rgba(18, 40, 60, 0.08) 62%, transparent);
}

.gallery-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.gallery-card h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.gallery-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: none;
  padding: 64px 0 24px;
  margin-top: var(--space-4xl);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid--expanded {
  grid-template-columns: 1.45fr 0.95fr 0.95fr 1.05fr 1.1fr;
  gap: 34px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-inverse);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 4px;
}

.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-payments { display: flex; gap: 20px; }

.footer-payments span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
  position: fixed;
  top: 90px; right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 16px 24px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  color: var(--text-primary);
  font-size: 0.9rem;
  min-width: 280px;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  animation: toastSlideIn 0.3s ease forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--danger); }
.toast-warning { border-left-color: var(--warning); }
.toast-info { border-left-color: var(--primary-light); }

.toast-dismiss { animation: toastSlideOut 0.3s ease forwards; }

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toastSlideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* ========== RESPONSIVE ========== */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .hero { min-height: 72vh; padding: 56px 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-product__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-product__visual { max-width: 520px; }

  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .promo-banner { padding: 40px; }
  .promo-title { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid--expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .checkout-grid { grid-template-columns: 1fr !important; }
  .checkout-grid aside { position: static !important; }
  .cart-grid,
  .product-detail-grid,
  .products-layout,
  .profile-grid,
  .responsive-two-col,
  .success-grid { grid-template-columns: 1fr !important; }
  .product-detail-grid > .animate-on-scroll,
  .cart-grid > div:last-child { position: static !important; }
  .admin-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

  .page-hero__grid,
  .about-story,
  .contact-grid,
  .contact-map { grid-template-columns: 1fr; }
  .about-value-grid,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card--featured { grid-column: span 1; }
  .location-map { grid-template-columns: 1fr; }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {
  /* --- Navbar --- */
  .navbar-menu { display: none; }
  .mobile-menu-btn { display: flex; }

  /* --- Hero Section MOBILE --- */
  .hero {
    min-height: auto;
    padding: 48px 0 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: 0;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }

  .hero-stat {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--border-color);
  }
  .hero-stat:last-child { border-right: none; }

  .hero-stat__number {
    font-size: 1.35rem;
  }

  .hero-stat__label {
    font-size: 0.72rem;
    margin-top: 2px;
  }

  /* Hero shapes - smaller on mobile */
  .hero-shape-1 { width: 200px; height: 200px; top: -60px; right: -40px; }
  .hero-shape-2 { width: 180px; height: 180px; bottom: -40px; left: -20px; }
  .hero-shape-3 { width: 120px; height: 120px; }
  .hero-shape-4 { width: 100px; height: 100px; }

  .hero-product .hero-title { font-size: 2rem; }
  .hero-product__summary { grid-template-columns: 1fr; }
  .hero-product__price { font-size: 1.2rem; }

  .hero-trust-row {
    justify-content: center;
    gap: 8px;
  }

  .hero-trust-row span {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .hero-product__visual {
    max-width: 100%;
  }

  .hero-product__panel {
    padding: 12px;
  }

  .hero-product__image-wrap {
    aspect-ratio: 4 / 3;
  }

  /* --- Categories MOBILE --- */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    height: 160px;
    border-radius: var(--radius-md);
  }

  .category-card__content {
    padding: 14px;
  }

  .category-card__name {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .category-card__desc {
    display: none;
  }

  .category-card__link {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.78rem;
  }

  /* --- Product Cards MOBILE --- */
  .product-card__info {
    padding: 14px;
  }

  .product-card__category {
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .product-card__name {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  .product-card__old-price {
    font-size: 0.8rem;
  }

  .product-card__overlay {
    /* Show action buttons on mobile without hover */
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    padding: 10px;
  }

  .product-card__overlay .btn {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .product-card__favorite {
    width: 32px; height: 32px;
  }
  .product-card__favorite svg { width: 14px; height: 14px; }

  .product-card__actions { grid-template-columns: 1fr; }

  /* --- Promo Banner MOBILE --- */
  .promo-banner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .promo-visual { display: none; }

  .promo-badge { font-size: 0.78rem; padding: 5px 12px; }

  .promo-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .promo-desc {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .promo-countdown {
    gap: 8px;
    margin-bottom: 20px;
  }

  .countdown-item {
    min-width: 52px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
  }

  .countdown-value { font-size: 1.25rem; }
  .countdown-label { font-size: 0.6rem; letter-spacing: 0.5px; }

  .promo-product-card { width: 100%; max-width: 360px; transform: none; }

  /* --- Feature Boxes MOBILE --- */
  .feature-box {
    padding: 24px 18px;
  }

  .feature-box__icon {
    width: 52px; height: 52px;
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  .feature-box__title { font-size: 0.95rem; }
  .feature-box__desc { font-size: 0.82rem; }

  /* --- Section Headers MOBILE --- */
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* --- Newsletter MOBILE --- */
  .newsletter {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .newsletter-title { font-size: 1.2rem; }
  .newsletter-desc { font-size: 0.88rem; }

  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn { width: 100%; }

  .location-map__content { padding: 32px; }
  .location-map__frame,
  .location-map__frame iframe { min-height: 300px; }

  /* --- Footer MOBILE --- */
  .footer { padding: 40px 0 20px; margin-top: 40px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid--expanded { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-payments { justify-content: center; }

  /* --- Toast MOBILE --- */
  .toast-container { left: 12px; right: 12px; top: 80px; }
  .toast { min-width: auto; font-size: 0.85rem; padding: 12px 16px; }

  /* --- Products Page MOBILE --- */
  .products-sidebar { display: none; }
  .products-layout { grid-template-columns: 1fr; }
  .products-search { width: 100%; }
  .products-search .form-input { min-width: 0; }
  .category-chip-row { display: flex; }

  .page-hero { padding: 36px 0; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero__media img { aspect-ratio: 16 / 10; }

  /* --- Checkout & Cart MOBILE --- */
  .checkout-fields { grid-template-columns: 1fr !important; }
  .cart-row { grid-template-columns: 82px 1fr !important; }
  .cart-row > div:last-child { grid-column: 1 / -1; text-align: left !important; }
  .product-info-grid,
  .profile-fields,
  .profile-actions,
  .register-fields { grid-template-columns: 1fr !important; }
  .checkout-steps { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-map iframe { min-height: 300px; }
}

/* ---------- Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-stat__number { font-size: 1.15rem; }
  .hero-stat__label { font-size: 0.65rem; }

  .hero-product .hero-title { font-size: 1.7rem; }
  .hero-product__panel { padding: 12px; }

  /* Categories single column on very small screens */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-card {
    height: 130px;
  }

  .category-card__name { font-size: 0.9rem; }

  /* Product cards */
  .product-card__info { padding: 12px; }
  .product-card__name { font-size: 0.82rem; }
  .product-card__price { font-size: 1rem; }

  /* Promo */
  .promo-banner { padding: 22px 16px; }
  .promo-title { font-size: 1.2rem; }
  .countdown-item { min-width: 44px; padding: 6px 8px; }
  .countdown-value { font-size: 1.1rem; }

  .promo-product-card__title { font-size: 1rem; }
  .promo-product-card__price { font-size: 1.35rem; }

  /* Section titles */
  .section-title { font-size: 1.3rem; }
  .section-subtitle { font-size: 0.82rem; }

  /* Footer */
  .footer-logo { font-size: 1.3rem; }

  /* Newsletter */
  .newsletter { padding: 24px 16px; }
  .newsletter-title { font-size: 1.1rem; }

  /* Misc */
  .location-map__content { padding: 24px; }
  .location-map__title { font-size: 1.35rem; }
  .location-map__frame,
  .location-map__frame iframe { min-height: 260px; }
  .about-value-grid,
  .about-stats,
  .gallery-grid { grid-template-columns: 1fr; }
  .about-value-card,
  .contact-card { padding: 24px; }
  .filter-price-grid { grid-template-columns: 1fr; }
  .admin-stat-grid { grid-template-columns: 1fr !important; }
  .cart-row { grid-template-columns: 1fr !important; }
  .cart-row > a { width: 100% !important; height: auto !important; aspect-ratio: 1 / 1; }
  .checkout-steps { grid-template-columns: 1fr !important; }
}
