﻿/* ============================================
   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);
}

/* ========== 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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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: var(--font-heading);
  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;
}

/* ========== ELICARA FOOTER ICON + CATEGORY REFRESH ========== */
.footer--refined {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(214, 101, 63, 0.16), transparent 26%),
    radial-gradient(circle at 90% 92%, rgba(43, 182, 115, 0.1), transparent 25%),
    linear-gradient(145deg, #071d14, #0b2d20 58%, #10251b);
}

.footer--refined::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 44% 56% 62% 38%;
  transform: rotate(18deg);
}

.footer--refined .container {
  position: relative;
  z-index: 1;
}

.footer-logo--with-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #d6653f, #f09654);
  color: #fff;
  box-shadow: 0 14px 30px rgba(214, 101, 63, 0.22);
}

.footer-brand-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer--refined .footer-title {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.footer--refined .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6653f, #ffd166);
}

.footer-links--icon {
  display: grid;
  gap: 8px;
}

.footer-links--icon li {
  margin-bottom: 0;
}

.footer-links--icon a,
.footer-contact--icon li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links--icon a {
  width: fit-content;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links--icon a:hover {
  color: #ffd166;
  padding-left: 0;
  transform: translateX(4px);
}

.footer-link-icon,
.footer-contact__icon,
.footer-payment__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffd166;
}

.footer-link-icon {
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-link-icon svg,
.footer-contact__icon svg,
.footer-payment__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-links--icon a:hover .footer-link-icon {
  background: rgba(214, 101, 63, 0.2);
  border-color: rgba(214, 101, 63, 0.32);
  color: #fff;
}

.footer-contact--icon {
  display: grid;
  gap: 12px;
}

.footer-contact--icon li {
  align-items: flex-start;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.footer-contact__icon {
  width: 30px;
  height: 30px;
  margin-top: -2px;
  background: rgba(214, 101, 63, 0.16);
  border: 1px solid rgba(214, 101, 63, 0.24);
}

.footer-contact--icon a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-contact--icon a:hover {
  color: #ffd166;
  padding-left: 0;
}

.footer-payments {
  flex-wrap: wrap;
  gap: 10px;
}

.footer-payments > span {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.footer-payment__icon {
  width: 22px;
  height: 22px;
  background: rgba(255, 209, 102, 0.12);
  color: #ffd166;
}

/* ========== 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; }
}

/* ========== ELICARA IMAGE LOGO HEADER REFRESH - FINAL OVERRIDES ========== */
.site-header {
  height: auto;
  min-height: 124px;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid #e7e1d8;
  box-shadow: none;
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.site-header::before {
  height: 6px;
  background: #10251b;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.99);
  box-shadow: 0 14px 34px rgba(18, 40, 60, 0.08);
}

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

.site-header__main {
  height: auto;
  min-height: 80px;
  display: grid;
  grid-template-columns: minmax(198px, 270px) minmax(320px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding-top: 6px;
}

.site-header__brand,
.site-header__brand:hover {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-heading);
  transform: none;
}

.site-header__brand::before {
  display: none;
}

.site-header__logo {
  width: auto;
  height: 52px;
  max-width: 228px;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__brand:hover .site-header__logo {
  opacity: 0.9;
  transform: scale(1.02);
}

.site-header__search {
  width: 100%;
  height: 46px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid #cfc8bd;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header__search:focus-within {
  border-color: #10251b;
  box-shadow: 0 0 0 3px rgba(16, 37, 27, 0.08);
}

.site-header__search-icon {
  margin-left: 14px;
  color: #10251b;
}

.site-header__search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #17211d;
  font: inherit;
  font-size: 0.9rem;
}

.site-header__search input::placeholder {
  color: #8b857c;
}

.site-header__search button {
  min-width: 64px;
  height: 38px;
  margin-right: 3px;
  border: 0;
  border-radius: 4px;
  background: #10251b;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header__search button:hover {
  background: var(--secondary);
  transform: scale(1.03);
}

.site-header__actions {
  gap: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-header__action {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 7px;
  border-radius: 5px;
  color: #17211d;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header__action:hover {
  background: #e2eadf;
  transform: translateY(-1px);
}

.site-header__action small,
.site-header__action strong {
  display: block;
  line-height: 1.2;
}

.site-header__action small {
  color: #5c665f;
  font-size: 0.62rem;
}

.site-header__action strong {
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 750;
}

.site-header__action-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #17211d;
}

.site-header__action-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-header__cart-count {
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  border: 0;
  background: var(--secondary);
  font-size: 0.62rem;
  font-weight: 800;
}

.site-header__cart-count[data-count="0"] {
  display: none;
}

.site-header__menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d8d0c4;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

.site-header__menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 999px;
  background: #17211d;
}

.site-header__category-bar {
  border-top: 1px solid #eee9e1;
  background: #fffefa;
}

.site-header__category-nav {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-header__category-nav::-webkit-scrollbar {
  display: none;
}

.site-header__category-nav .nav-link {
  position: relative;
  padding: 10px 11px;
  border-radius: 0;
  color: #4f4b45;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
}

.site-header__category-nav .nav-link::after {
  right: 11px;
  bottom: 5px;
  left: 11px;
  width: auto;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}

.site-header__category-nav .nav-link:hover,
.site-header__category-nav .nav-link.active {
  color: #17211d;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-header__category-nav .nav-link:hover::after,
.site-header__category-nav .nav-link.active::after {
  width: auto;
  transform: scaleX(1);
}

.site-header__category-nav .site-header__all-products {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  padding-right: 20px;
  color: var(--secondary);
}

.site-header__category-nav .site-header__all-products::after {
  right: 20px;
  left: 0;
}

.site-header-spacer {
  height: var(--site-header-spacer, 124px);
}

.site-mobile-drawer hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 16px 0;
}

.site-mobile-drawer__danger {
  color: var(--danger) !important;
}

@media (max-width: 1180px) {
  .site-header__main {
    grid-template-columns: minmax(180px, 228px) minmax(260px, 1fr) auto;
    gap: 16px;
  }

  .site-header__action:nth-child(2) {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 132px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header__main {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    padding-top: 8px;
  }

  .site-header__logo {
    height: 46px;
    max-width: 202px;
  }

  .site-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 10px;
  }

  .site-header__action {
    display: none;
  }

  .site-header__menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-header__category-bar {
    display: none;
  }

  .site-header-spacer {
    height: calc(var(--site-header-spacer, 124px) + 8px);
  }

  .site-mobile-drawer {
    width: min(360px, 88vw);
    padding: 88px 22px 30px;
    border-left: 1px solid var(--border-color);
    background: #fffefa;
    box-shadow: -24px 0 70px rgba(24, 23, 20, 0.16);
  }

  .site-mobile-drawer .nav-link {
    padding: 13px 4px;
    border-bottom: 1px solid #e7e1d8;
    border-radius: 0;
    color: #17211d;
    font-size: 0.86rem;
    font-weight: 700;
  }
}

@media (max-width: 520px) {
  .site-header__main {
    padding-inline: 0;
  }

  .site-header__logo {
    height: 42px;
    max-width: 184px;
  }

  .site-header__search {
    height: 44px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .site-header__search input {
    font-size: 0.82rem;
  }

  .site-header__search button {
    min-width: 56px;
    height: 36px;
  }
}

/* ========== ELICARA HERO PRODUCT STAGE REFRESH ========== */
.hero-product {
  min-height: 76vh;
  padding: 92px 0 76px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.98) 0%, rgba(245, 248, 247, 0.98) 48%, rgba(241, 237, 230, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(16, 37, 27, 0.035) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(214, 101, 63, 0.028) 0 1px, transparent 1px 84px);
  isolation: isolate;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 58%, rgba(226, 234, 223, 0.72) 58% 76%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 48%);
}

.hero-product__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.95fr);
  gap: clamp(54px, 6vw, 92px);
}

.hero-product .hero-content {
  max-width: 690px;
}

.hero-product .hero-badge {
  padding: 9px 18px;
  border: 1px solid rgba(214, 101, 63, 0.28);
  border-radius: 6px;
  background: rgba(255, 247, 239, 0.88);
  color: #a34c32;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-product .hero-title {
  max-width: 720px;
  margin-bottom: 18px;
  color: #10251b;
  font-family: var(--font-heading);
  font-size: 3.7rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-product .hero-subtitle {
  max-width: 600px;
  margin-bottom: 30px;
  color: #4e5c68;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-product .hero-buttons {
  gap: 12px;
  margin-bottom: 26px;
}

.hero-product .hero-buttons .btn {
  min-height: 56px;
  border-radius: 7px;
  padding-inline: 28px;
  box-shadow: none;
}

.hero-product .hero-buttons .btn-primary {
  background: #173f69;
  box-shadow: 0 18px 36px rgba(23, 63, 105, 0.18);
}

.hero-product .hero-buttons .btn-primary:hover {
  background: #10251b;
}

.hero-product .hero-buttons .btn-secondary {
  border-color: #173f69;
  color: #173f69;
  background: rgba(255, 255, 255, 0.44);
}

.hero-trust-row {
  gap: 9px;
}

.hero-trust-row span {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #dce3e7;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #536171;
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-trust-row span::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #173f69, #245b8f);
  box-shadow: inset 0 0 0 5px #fff;
}

.hero-product__visual {
  position: relative;
  width: min(100%, 610px);
  justify-self: end;
}

.hero-product__stage {
  position: relative;
  min-height: 570px;
  display: grid;
  align-content: end;
  padding: 42px 24px 20px;
}

.hero-product__stage::before {
  content: "";
  position: absolute;
  inset: 18px 0 46px 70px;
  z-index: -1;
  border: 1px solid #dfe7e1;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 248, 0.7)),
    repeating-linear-gradient(135deg, rgba(16, 37, 27, 0.035) 0 1px, transparent 1px 16px);
  box-shadow: 0 34px 90px rgba(16, 37, 27, 0.12);
}

.hero-product__stage::after {
  content: "moduler zemin";
  position: absolute;
  right: 14px;
  bottom: 112px;
  z-index: -1;
  color: rgba(16, 37, 27, 0.06);
  font-family: var(--font-heading);
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-product__floating-label {
  position: absolute;
  top: 34px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(214, 101, 63, 0.26);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 38px rgba(16, 37, 27, 0.08);
  color: #b95438;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-product__image-wrap {
  position: relative;
  width: min(92%, 455px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  margin: 0 auto 18px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  filter: drop-shadow(0 26px 34px rgba(28, 31, 30, 0.22));
}

.hero-product__image-wrap::before {
  content: "";
  position: absolute;
  inset: 9% 7% 5%;
  z-index: -1;
  border-radius: 22px;
  background: rgba(16, 37, 27, 0.08);
  filter: blur(20px);
  transform: translateY(18px) rotate(-2deg);
}

.hero-product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-card-lg);
}

.hero-product__summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 18px;
  align-items: center;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 17px 18px;
  border: 1px solid rgba(223, 231, 225, 0.96);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 60px rgba(16, 37, 27, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-product__eyebrow {
  color: #b95438;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-product__summary strong {
  max-width: 300px;
  color: #10251b;
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-product__price {
  color: #173f69;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-product__summary .btn {
  grid-column: 1 / -1;
  min-height: 42px;
  border-radius: 7px;
  background: #173f69;
}

@media (max-width: 1024px) {
  .hero-product {
    padding: 62px 0 58px;
  }

  .hero-product__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-product__visual {
    justify-self: center;
  }

  .hero-product .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-product {
    padding: 46px 0 44px;
  }

  .hero-product .hero-title {
    font-size: 2.18rem;
  }

  .hero-product .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-product__stage {
    min-height: 430px;
    padding: 34px 8px 10px;
  }

  .hero-product__stage::before {
    inset: 22px 0 38px 20px;
  }

  .hero-product__stage::after {
    display: none;
  }

  .hero-product__floating-label {
    left: 0;
    top: 18px;
  }

  .hero-product__image-wrap {
    width: min(88%, 340px);
  }

  .hero-product__summary {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

@media (max-width: 480px) {
  .hero-product .hero-title {
    font-size: 1.86rem;
  }

  .hero-product .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust-row span {
    width: 100%;
  }

  .hero-product__stage {
    min-height: 390px;
  }
}

/* ========== ELICARA HERO LEFT COMPOSITION REFRESH ========== */
.hero-product .hero-content {
  position: relative;
  padding-left: 28px;
}

.hero-product .hero-content::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6653f, rgba(214, 101, 63, 0.08));
}

.hero-product .hero-content::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 92px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(214, 101, 63, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 101, 63, 0.075), transparent 68%);
}

.hero-product__intro-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #7a6e64;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-product__intro-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-product__intro-line span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d6653f;
}

.hero-product .hero-title {
  position: relative;
  max-width: 760px;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-product .hero-title::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 0.08em;
  z-index: -1;
  width: min(56%, 360px);
  height: 0.18em;
  border-radius: 999px;
  background: rgba(214, 101, 63, 0.16);
}

.hero-product .hero-subtitle {
  position: relative;
  padding-left: 18px;
  border-left: 1px solid rgba(16, 37, 27, 0.18);
}

.hero-product .hero-buttons {
  align-items: center;
}

.hero-product .hero-buttons .btn {
  min-width: 176px;
}

.hero-product .hero-buttons .btn-primary {
  border: 1px solid #173f69;
}

.hero-product .hero-buttons .btn-secondary {
  box-shadow: inset 0 0 0 1px rgba(23, 63, 105, 0.06);
}

.hero-trust-row {
  max-width: 620px;
  padding-top: 4px;
}

.hero-trust-row span {
  border-color: rgba(16, 37, 27, 0.12);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 24px rgba(16, 37, 27, 0.045);
}

@media (max-width: 1024px) {
  .hero-product .hero-content {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .hero-product .hero-content {
    padding-left: 0;
  }

  .hero-product .hero-content::before,
  .hero-product .hero-content::after {
    display: none;
  }

  .hero-product__intro-line {
    justify-content: center;
    margin-bottom: 14px;
  }

  .hero-product .hero-title::after {
    right: 50%;
    width: min(72%, 280px);
    transform: translateX(50%);
  }

  .hero-product .hero-subtitle {
    padding-left: 0;
    border-left: 0;
  }
}

/* ========== HEADER PHONE + FLOATING WHATSAPP ========== */
.site-header__category-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__category-inner .site-header__category-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__utility {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header__language {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(18, 63, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 10px 24px rgba(16, 37, 27, 0.045);
}

.site-header__language-option {
  min-width: 35px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: #56665d;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header__language-option:hover {
  color: #d6653f;
  transform: translateY(-1px);
}

.site-header__language-option.active {
  background: linear-gradient(135deg, #123f2d, #1f6a49);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 63, 45, 0.16);
}

.site-header__phone {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid rgba(214, 101, 63, 0.23);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.86);
  color: #10251b;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header__phone:hover {
  border-color: rgba(214, 101, 63, 0.42);
  background: #fff7ef;
  color: #10251b;
  transform: translateY(-1px);
}

.site-header__phone-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d6653f;
  color: #fff;
}

.site-header__phone-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 980;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f3f2c;
  box-shadow: 0 20px 54px rgba(16, 37, 27, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-floating-whatsapp:hover {
  color: #0f3f2c;
  border-color: rgba(22, 163, 74, 0.48);
  box-shadow: 0 26px 70px rgba(22, 163, 74, 0.22);
  transform: translateY(-3px);
}

.site-floating-whatsapp__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #19b85d;
  color: #fff;
  box-shadow: 0 12px 28px rgba(25, 184, 93, 0.28);
}

.site-floating-whatsapp__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-floating-whatsapp__copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.site-floating-whatsapp__copy small {
  color: #64756c;
  font-size: 0.66rem;
  font-weight: 800;
}

.site-floating-whatsapp__copy strong {
  color: #10251b;
  font-size: 0.84rem;
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header__phone {
    display: none;
  }

  .site-header__utility {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .site-header__language {
    min-height: 32px;
  }

  .site-header__language-option {
    min-width: 32px;
    min-height: 24px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .site-floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 7px;
  }

  .site-floating-whatsapp__copy {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

/* ========== ELICARA BLOG EDITORIAL REFRESH ========== */
.elicara-blog-page {
  background: #fffdf8;
  color: #10251b;
}

.elicara-blog-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 54px 0 58px;
  border-bottom: 1px solid rgba(16, 37, 27, 0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 101, 63, 0.18), transparent 34%),
    radial-gradient(circle at 10% 92%, rgba(228, 184, 126, 0.24), transparent 28%),
    linear-gradient(120deg, #fffdf8 0%, #f8f5ee 46%, #f8dfd5 100%);
}

.elicara-blog-hero::before {
  content: "";
  position: absolute;
  right: -74px;
  top: -106px;
  z-index: -1;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(214, 101, 63, 0.22);
  border-radius: 34% 66% 58% 42%;
  transform: rotate(10deg);
}

.elicara-blog-hero::after {
  content: "ELICARA";
  position: absolute;
  right: 6%;
  bottom: -34px;
  z-index: -1;
  color: rgba(16, 37, 27, 0.035);
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 11vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.elicara-blog-breadcrumb {
  margin-bottom: 24px;
}

.elicara-blog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 42px;
  align-items: end;
}

.elicara-blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #c65b39;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.elicara-blog-eyebrow span {
  width: 27px;
  height: 1px;
  background: currentColor;
}

.elicara-blog-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #10251b;
  font-family: var(--font-heading);
  font-size: clamp(3.1rem, 7.4vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.94;
  text-wrap: balance;
}

.elicara-blog-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #526154;
  font-size: 1.08rem;
  line-height: 1.75;
}

.elicara-blog-hero__panel {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(16, 37, 27, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 24px 70px rgba(16, 37, 27, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.elicara-blog-hero__panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(214, 101, 63, 0.09), transparent 44%),
    repeating-linear-gradient(135deg, rgba(16, 37, 27, 0.045) 0 1px, transparent 1px 10px);
}

.elicara-blog-hero__panel span {
  color: #c65b39;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.elicara-blog-hero__panel strong {
  color: #10251b;
  font-size: 1.55rem;
  line-height: 1.1;
}

.elicara-blog-hero__panel p {
  margin: 0;
  color: #6b766f;
  font-size: 0.94rem;
  line-height: 1.6;
}

.elicara-blog-section {
  padding: 72px 0 42px;
}

.elicara-blog-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.elicara-blog-section__head h2 {
  max-width: 680px;
  margin: 0;
  color: #10251b;
  font-size: clamp(1.8rem, 3.2vw, 3.05rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.elicara-blog-section__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #10251b;
  font-size: 0.9rem;
  font-weight: 900;
  border-bottom: 1px solid rgba(16, 37, 27, 0.28);
}

.elicara-blog-section__link:hover {
  color: #c65b39;
  border-color: #c65b39;
}

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

.elicara-blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(214, 101, 63, 0.18);
  border-radius: 24px;
  background: #fffefa;
  box-shadow: 0 18px 46px rgba(16, 37, 27, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.elicara-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 101, 63, 0.36);
  box-shadow: 0 30px 80px rgba(16, 37, 27, 0.13);
}

.elicara-blog-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f5f1e8;
}

.elicara-blog-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(16, 37, 27, 0.42), transparent);
}

.elicara-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.elicara-blog-card:hover .elicara-blog-card__image img {
  transform: scale(1.045);
}

.elicara-blog-card__image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.88);
  color: #c65b39;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(16, 37, 27, 0.18);
}

.elicara-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.elicara-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #c65b39;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.elicara-blog-card__meta small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7b6e65;
  font-size: inherit;
  font-weight: 850;
}

.elicara-blog-card__meta small::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c65b39;
}

.elicara-blog-card h2 {
  margin: 0;
  color: #071d14;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.elicara-blog-card p {
  margin: 13px 0 20px;
  color: #59675f;
  font-size: 0.96rem;
  line-height: 1.72;
}

.elicara-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(16, 37, 27, 0.09);
}

.elicara-blog-card__footer small {
  color: #c65b39;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.elicara-blog-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10251b;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.elicara-blog-card__footer a:hover {
  color: #c65b39;
}

.elicara-blog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid rgba(16, 37, 27, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(16, 37, 27, 0.95), rgba(21, 58, 42, 0.92)),
    #10251b;
  box-shadow: 0 24px 64px rgba(16, 37, 27, 0.14);
}

.elicara-blog-note span {
  display: block;
  margin-bottom: 5px;
  color: #f1b394;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.elicara-blog-note strong {
  color: #fffdf8;
  font-size: 1.12rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .elicara-blog-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .elicara-blog-hero__panel {
    max-width: 520px;
  }

  .elicara-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .elicara-blog-hero {
    padding: 42px 0 46px;
  }

  .elicara-blog-hero__grid {
    gap: 28px;
  }

  .elicara-blog-hero h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .elicara-blog-section {
    padding: 48px 0 30px;
  }

  .elicara-blog-section__head,
  .elicara-blog-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .elicara-blog-grid {
    grid-template-columns: 1fr;
  }

  .elicara-blog-card__body {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .elicara-blog-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .elicara-blog-note .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== ELICARA CONTACT FORM REFRESH ========== */
.contact-card--form {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(214, 101, 63, 0.1), transparent 34%),
    linear-gradient(180deg, #fffefa, #ffffff);
}

.contact-card--form::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -62px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(214, 101, 63, 0.16);
  border-radius: 42% 58% 64% 36%;
  transform: rotate(16deg);
}

.contact-form__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #c65b39;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.contact-card--form h2,
.contact-card--form .contact-form__intro,
.contact-card--form .contact-form {
  position: relative;
  z-index: 1;
}

.contact-form__intro {
  max-width: 560px;
  margin: -4px 0 20px;
  color: #56665e;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form__field {
  display: grid;
  gap: 7px;
}

.contact-form__field span {
  color: #7a8793;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 27, 0.13);
  border-radius: 14px;
  background: rgba(248, 251, 253, 0.86);
  color: #10251b;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form__field input,
.contact-form__field select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form__field textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #9aa6b2;
  font-weight: 600;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(214, 101, 63, 0.52);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(214, 101, 63, 0.11);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.contact-form__actions .btn {
  min-height: 52px;
}

@media (max-width: 640px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== ELICARA ABOUT LOWER SECTIONS REFRESH ========== */
.about-values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(214, 101, 63, 0.1), transparent 28%),
    radial-gradient(circle at 94% 96%, rgba(16, 37, 27, 0.08), transparent 30%),
    linear-gradient(180deg, #fffdf8, #f8f5ee);
}

.about-values-section::before {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(214, 101, 63, 0.14);
  border-radius: 42% 58% 66% 34%;
  transform: rotate(-18deg);
}

.about-section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 28px;
}

.about-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-section-head h2 {
  margin: 0;
  color: #10251b;
  font-size: clamp(1.75rem, 3.1vw, 2.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.about-section-head p {
  max-width: 640px;
  margin: 14px auto 0;
  color: #5e6d65;
  font-size: 1rem;
  line-height: 1.7;
}

.about-value-grid--premium {
  position: relative;
  z-index: 1;
  gap: 22px;
}

.about-value-card--premium {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(16, 37, 27, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.84)),
    #fffefa;
  box-shadow: 0 22px 60px rgba(16, 37, 27, 0.075);
}

.about-value-card--premium::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(214, 101, 63, 0.09);
  border-radius: 22px;
  pointer-events: none;
}

.about-value-card--premium::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -58px;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 101, 63, 0.16), transparent 68%);
}

.about-value-card--premium:hover {
  transform: translateY(-7px);
  border-color: rgba(214, 101, 63, 0.26);
  box-shadow: 0 34px 84px rgba(16, 37, 27, 0.13);
}

.about-value-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.about-value-card--premium .about-value-card__number {
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid rgba(214, 101, 63, 0.2);
  border-radius: 18px;
  background: #fff5ed;
  color: #c65b39;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(214, 101, 63, 0.12);
}

.about-value-card__mark {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, #10251b 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, #10251b 45% 55%, transparent 55%),
    #f8dfd5;
  opacity: 0.86;
}

.about-value-card--premium > div:last-child {
  position: relative;
  z-index: 1;
}

.about-value-card--premium h3 {
  margin-bottom: 12px;
  color: #10251b;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.about-value-card--premium p {
  color: #5d6a63;
  line-height: 1.75;
}

.about-stats-section {
  position: relative;
  padding-top: 58px;
}

.about-stats--premium {
  gap: 18px;
}

.about-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 16%, rgba(214, 101, 63, 0.24), transparent 34%),
    linear-gradient(145deg, #10251b, #173f2d);
  color: #fff;
  box-shadow: 0 24px 64px rgba(16, 37, 27, 0.17);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-stat-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: #d6653f;
}

.about-stat-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 82px rgba(16, 37, 27, 0.22);
}

.about-stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fffdf8;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.95;
  margin-bottom: 10px;
  letter-spacing: -0.06em;
}

.about-stat-card span {
  position: relative;
  z-index: 1;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .about-value-card--premium {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .about-section-head,
  .about-section-head--center {
    text-align: left;
  }

  .about-section-head p {
    margin-left: 0;
  }

  .about-value-card--premium {
    min-height: 230px;
    padding: 24px;
  }

  .about-stats-section {
    padding-top: 44px;
  }
}

/* ========== ELICARA AUTH LOGIN REFRESH ========== */
.elicara-auth {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 10% 8%, rgba(214, 101, 63, 0.12), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(16, 37, 27, 0.08), transparent 30%),
    linear-gradient(180deg, #fffdf8, #ffffff);
}

.elicara-auth::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 10%;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(214, 101, 63, 0.14);
  border-radius: 42% 58% 60% 40%;
  transform: rotate(18deg);
}

.elicara-auth__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.68fr);
  gap: clamp(24px, 4.5vw, 58px);
  align-items: stretch;
}

.elicara-auth__visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(16, 37, 27, 0.1);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(16, 37, 27, 0.04), rgba(16, 37, 27, 0.82)),
    url("/images/products/product-1.png") center / cover no-repeat,
    #10251b;
  color: #fff;
  box-shadow: 0 34px 90px rgba(16, 37, 27, 0.16);
}

.elicara-auth__visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  pointer-events: none;
}

.elicara-auth__visual::after {
  content: "ELICARA";
  position: absolute;
  right: -8px;
  top: 22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8.2rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.elicara-auth__kicker,
.elicara-auth__eyebrow {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.elicara-auth__kicker {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffd5c4;
  backdrop-filter: blur(12px);
}

.elicara-auth__visual h2 {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0;
  color: #fffdf8;
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-wrap: balance;
}

.elicara-auth__visual p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.elicara-auth__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}

.elicara-auth__chips strong {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.79rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.elicara-auth__card {
  position: relative;
  overflow: hidden;
  width: min(520px, 100%);
  align-self: center;
  justify-self: center;
  padding: clamp(30px, 4.2vw, 48px);
  border: 1px solid rgba(16, 37, 27, 0.11);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 0%, rgba(214, 101, 63, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(16, 37, 27, 0.11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.elicara-auth__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #10251b, #d6653f);
}

.elicara-auth__brand {
  margin-bottom: 24px;
}

.elicara-auth__brand a {
  display: inline-flex;
  align-items: center;
}

.elicara-auth__brand img {
  width: 132px;
  height: auto;
  display: block;
}

.elicara-auth__eyebrow {
  color: #c65b39;
}

.elicara-auth__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.elicara-auth__card h1 {
  margin: 10px 0 10px;
  color: #10251b;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1;
}

.elicara-auth__lead {
  max-width: 420px;
  margin: 0;
  color: #5b6b63;
  line-height: 1.65;
}

.elicara-auth__form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.elicara-auth__field {
  display: grid;
  gap: 8px;
}

.elicara-auth__field span {
  color: #10251b;
  font-size: 0.86rem;
  font-weight: 850;
}

.elicara-auth__field input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(16, 37, 27, 0.13);
  border-radius: 14px;
  background: #f3f7fb;
  color: #10251b;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.elicara-auth__field input::placeholder {
  color: #9aa6b2;
  font-weight: 600;
}

.elicara-auth__field input:focus {
  border-color: rgba(214, 101, 63, 0.52);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(214, 101, 63, 0.11);
}

.elicara-auth__submit {
  min-height: 56px;
  margin-top: 4px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(23, 63, 105, 0.2);
}

.elicara-auth__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  color: #5b6b63;
  font-size: 0.93rem;
}

.elicara-auth__links a {
  color: #10251b;
  font-weight: 900;
}

.elicara-auth__links a:hover {
  color: #c65b39;
}

@media (max-width: 1024px) {
  .elicara-auth__shell {
    grid-template-columns: 1fr;
  }

  .elicara-auth__visual {
    min-height: 420px;
  }

  .elicara-auth__card {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .elicara-auth {
    padding: 44px 0 58px;
  }

  .elicara-auth__visual {
    min-height: 360px;
    padding: 28px;
    border-radius: 28px;
  }

  .elicara-auth__visual h2 {
    font-size: 2.25rem;
  }

  .elicara-auth__card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .elicara-auth__brand img {
    width: 118px;
  }

  .elicara-auth__links {
    flex-direction: column;
  }
}

/* ========== ELICARA COLOR VITALITY REFRESH ========== */
body {
  background:
    radial-gradient(circle at 7% 10%, rgba(240, 150, 84, 0.075), transparent 26%),
    radial-gradient(circle at 94% 32%, rgba(43, 182, 115, 0.06), transparent 28%),
    #fffdf8;
}

.section {
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 209, 102, 0.09), transparent 23%),
    radial-gradient(circle at 90% 82%, rgba(214, 101, 63, 0.055), transparent 25%);
  opacity: 0;
}

.featured-products,
.new-arrivals {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 241, 232, 0.42) 48%, rgba(234, 247, 239, 0.28));
}

.featured-products::before,
.new-arrivals::before {
  opacity: 1;
}

.section-title {
  color: #10251b;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6653f, #ffd166, #2bb673);
}

.section-subtitle {
  color: #5f6b63;
}

.btn-primary {
  background: linear-gradient(135deg, #123f2d 0%, #1f6a49 52%, #d6653f 130%);
  box-shadow: 0 14px 30px rgba(18, 63, 45, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(214, 101, 63, 0.24), 0 10px 26px rgba(18, 63, 45, 0.18);
}

.btn-secondary {
  border-color: #123f2d;
  color: #123f2d;
  background: rgba(255, 253, 248, 0.72);
}

.btn-secondary:hover {
  border-color: #d6653f;
  background: #d6653f;
  color: #fff;
}

.badge {
  min-height: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(16, 37, 27, 0.08);
}

.badge-sale {
  background: linear-gradient(135deg, #fff0b8, #ffd166);
  color: #8a3a18;
  border-color: rgba(240, 150, 84, 0.36);
}

.badge-featured {
  background: linear-gradient(135deg, #eaf7ef, #d8fff0);
  color: #11613f;
  border-color: rgba(43, 182, 115, 0.28);
}

.badge-new {
  background: linear-gradient(135deg, #fff1e8, #ffd9c4);
  color: #b84b2d;
  border-color: rgba(214, 101, 63, 0.28);
}

.product-card {
  border-color: rgba(18, 63, 45, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), #fff),
    #fff;
  box-shadow: 0 14px 34px rgba(16, 37, 27, 0.075);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #d6653f, #ffd166, #2bb673);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover {
  border-color: rgba(214, 101, 63, 0.34);
  box-shadow: 0 26px 70px rgba(214, 101, 63, 0.16), 0 16px 42px rgba(16, 37, 27, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__image-wrapper {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 209, 102, 0.2), transparent 38%),
    linear-gradient(135deg, #fff6e8, #eaf7ef);
}

.product-card__favorite {
  background: rgba(255, 253, 248, 0.9);
  color: #9daaa2;
  border-color: rgba(18, 63, 45, 0.14);
  box-shadow: 0 12px 26px rgba(16, 37, 27, 0.1);
}

.product-card__favorite:hover,
.product-card__favorite.active {
  color: #d6653f;
  background: #fff1e8;
  border-color: rgba(214, 101, 63, 0.34);
}

.product-card__category,
.promo-product-card__category {
  color: #d6653f;
  font-weight: 900;
}

.product-card__name:hover {
  color: #d6653f;
}

.product-card__price,
.promo-product-card__price {
  color: #123f2d;
}

.product-card__actions .btn-primary {
  background: linear-gradient(135deg, #123f2d, #1f6a49);
}

.product-card__actions .btn-primary:hover {
  background: linear-gradient(135deg, #d6653f, #f09654);
}

.product-card__actions .btn-secondary {
  background: #fffdf8;
  border-color: #123f2d;
}

.product-card__actions .btn-secondary:hover {
  background: #123f2d;
  border-color: #123f2d;
}

.promo-banner {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 209, 102, 0.26), transparent 26%),
    linear-gradient(135deg, #0b241a 0%, #123f2d 54%, #d6653f 135%);
}

.promo-badge,
.location-map__badge,
.hero-product .hero-badge,
.hero-badge {
  background: linear-gradient(135deg, #fff1e8, #fff7c8);
  border-color: rgba(214, 101, 63, 0.28);
  color: #b84b2d;
  box-shadow: 0 12px 24px rgba(214, 101, 63, 0.1);
}

.site-header__phone,
.site-header__language {
  background: linear-gradient(135deg, #fff7ef, #fffdf8);
  border-color: rgba(214, 101, 63, 0.34);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(214, 101, 63, 0.08);
}

.site-header__all-products {
  color: #d6653f !important;
}

/* ========== ELICARA BLOG DETAIL INTEGRATION ========== */
.elicara-blog-article {
  max-width: 980px;
  margin: 0 auto;
}

.elicara-blog-article__cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(214, 101, 63, 0.18);
  box-shadow: 0 24px 70px rgba(18, 63, 45, 0.13);
  background: #fff;
}

.elicara-blog-article__body {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(18, 63, 45, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(214, 101, 63, 0.08), transparent 32%),
    #fffdf8;
  box-shadow: 0 20px 54px rgba(16, 37, 27, 0.08);
}

.elicara-blog-article__body section + section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 63, 45, 0.08);
}

.elicara-blog-article__body h2 {
  margin: 0 0 12px;
  color: #123f2d;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.elicara-blog-article__body p {
  margin: 0;
  color: #54645b;
  font-size: 1.04rem;
  line-height: 1.85;
}

/* ==== REDESIGN 2026-08 — Faz 1: Temel (kart/rozet ince ayarı) ==== */
.product-card,
.category-card {
  border-radius: var(--radius-card-lg);
}

.product-card {
  box-shadow: var(--shadow-product-card);
}

.product-card:hover {
  box-shadow: var(--shadow-product-card-hover);
}

.product-card__image-wrapper,
.category-card__bg,
.category-card__image {
  border-radius: var(--radius-card-lg) var(--radius-card-lg) 0 0;
}

.product-card__favorite {
  background: var(--bg-glass-chip);
  backdrop-filter: blur(10px);
}

.product-card__stock {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.product-card__stock.is-low {
  color: var(--secondary-dark);
}

.product-card__overline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

/* ==== REDESIGN 2026-08 — Faz 2a: Ürün Detay Sayfası ==== */
.pd-breadcrumb-section { padding: 24px 0; }

.pd-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pd-breadcrumb a { color: var(--text-secondary); }
.pd-breadcrumb a:hover { color: var(--primary); }
.pd-breadcrumb__sep { margin: 0 6px; }
.pd-breadcrumb__current { color: var(--primary); font-weight: 600; }

.pd-section { padding-top: 32px; }

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pd-gallery { position: sticky; top: 90px; }

.pd-gallery__frame {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-product-card);
  position: relative;
}

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

.pd-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.pd-gallery__badge .badge { font-size: 0.85rem; padding: 6px 16px; }

.pd-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  min-height: 0;
}

.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  padding: 0;
  background: transparent;
}

.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--primary); }

.pd-info { display: flex; flex-direction: column; }

.pd-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.pd-title {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pd-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.pd-price-old {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pd-stock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pd-sku { font-size: 0.8rem; color: var(--text-muted); }

.pd-variant-picker { margin-bottom: 24px; }
.pd-variant-picker h3 { font-size: 1rem; margin-bottom: 12px; }

.pd-variant-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.variant-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
}

.variant-option.active {
  border-color: var(--primary);
  background: var(--primary-50);
}

.variant-option img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.variant-option span {
  font-weight: 700;
  color: var(--text-primary);
}

.pd-short-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pd-qty-cart-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pd-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pd-qty-stepper button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: var(--bg-surface);
  border: none;
}

.pd-qty-stepper input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 1rem;
  background: var(--bg-body);
  color: var(--text-primary);
  outline: none;
}

.pd-qty-stepper input::-webkit-outer-spin-button,
.pd-qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pd-add-to-cart { flex: 1; }
.btn:disabled { opacity: 0.5; pointer-events: none; }

.pd-favorite-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.pd-favorite-btn:hover {
  color: var(--danger);
  background: #FFF5F5;
  border-color: rgba(229, 62, 62, 0.3);
}

.pd-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  background: var(--bg-section);
  border-radius: var(--radius-card-lg);
}

.pd-features-grid__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pd-features-grid__icon { font-size: 1.2rem; }

.pd-description {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.pd-description h3 { font-size: 1.1rem; margin-bottom: 16px; }
.pd-description p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }

.pd-extra {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: grid;
  gap: 22px;
}

.pd-extra h3 { font-size: 1.1rem; margin-bottom: 12px; }
.pd-extra__variants { display: grid; gap: 12px; }
.pd-extra__variants strong { display: block; margin-bottom: 8px; }
.pd-extra__options { display: flex; gap: 8px; flex-wrap: wrap; }

.pd-extra__specs {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 16px;
  color: var(--text-secondary);
}

.pd-extra__specs dt { font-weight: 700; color: var(--text-primary); }
.pd-extra__specs dd { margin: 0; }

@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-gallery { position: static; }
  .pd-features-grid { grid-template-columns: 1fr; }
}

/* ==== REDESIGN 2026-08 — Faz 2b: Sepet ==== */
.cart-title { font-size: 2rem; margin-top: 8px; }
.cart-title__count { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.cart-empty__icon { font-size: 5rem; margin-bottom: 24px; opacity: 0.4; }
.cart-empty h2 { margin-bottom: 12px; }
.cart-empty p {
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cart-row:hover { box-shadow: var(--shadow-md); }

.cart-row__image {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
}

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

.cart-row__image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.2;
  font-weight: 800;
}

.cart-row__name {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.cart-row__variant { font-size: 0.82rem; color: var(--secondary); margin-bottom: 6px; }
.cart-row__unit-price { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }

.cart-row__qty-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-qty-stepper button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  background: var(--bg-surface);
  border: none;
  color: var(--text-secondary);
}

.cart-qty-stepper input {
  width: 44px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--bg-body);
  color: var(--text-primary);
  outline: none;
}

.cart-row__remove {
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
}

.cart-row__total {
  text-align: right;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-summary-col { position: sticky; top: 90px; }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  padding: 28px;
  box-shadow: var(--shadow-product-card);
}

.cart-summary h3 { font-size: 1.15rem; margin-bottom: 24px; color: var(--text-heading); }

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cart-summary__value { font-weight: 600; color: var(--text-primary); }
.cart-summary__value.is-free { color: var(--success); }

.free-shipping-nudge {
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
}

.free-shipping-nudge p { font-size: 0.82rem; color: var(--primary); }

.free-shipping-nudge__track {
  background: var(--primary-100);
  border-radius: 4px;
  height: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.free-shipping-nudge__fill {
  background: var(--primary);
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.cart-summary__divider { border: none; border-top: 1px solid var(--border-color); margin: 16px 0; }

.cart-summary__row--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.cart-summary__row--total span:last-child,
#cartTotal {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.cart-summary__cta { margin-bottom: 12px; }

.cart-payment-note {
  text-align: center;
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
}

.cart-payment-note p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }

.cart-payment-note__icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .cart-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-row__total { grid-column: 1 / -1; text-align: left; }
  .cart-summary-col { position: static; }
}

/* ==== REDESIGN 2026-08 — Faz 2c: Ödeme (Checkout) ==== */
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.checkout-main { display: grid; gap: 20px; }

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

.checkout-card h2 { font-size: 1.25rem; margin-bottom: 20px; }

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-fields label,
.checkout-field-full {
  display: grid;
  gap: 8px;
}

.checkout-field-full { margin-top: 16px; }

.checkout-fields label span,
.checkout-field-full span {
  font-weight: 600;
  color: var(--text-heading);
}

.payment-options { display: grid; gap: 12px; }

.payment-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-50);
}

.payment-option.is-disabled { cursor: not-allowed; opacity: 0.55; }
.payment-option input[type="radio"] { margin-top: 4px; }
.payment-option strong { display: block; color: var(--text-heading); }
.payment-option__desc { font-size: 0.9rem; color: var(--text-secondary); }

.checkout-summary-col { position: sticky; top: 90px; }

.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  padding: 28px;
  box-shadow: var(--shadow-product-card);
}

.checkout-summary h2 { font-size: 1.15rem; margin-bottom: 20px; }
.checkout-summary__items { display: grid; gap: 14px; margin-bottom: 20px; }

.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.checkout-summary__item strong { white-space: nowrap; color: var(--text-primary); }

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.checkout-summary__row strong.is-free { color: var(--success); }

.checkout-summary__note {
  background: var(--primary-50);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.checkout-summary__delivery { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 18px; }

.checkout-summary__row--total {
  align-items: center;
  margin-bottom: 22px;
  font-size: 1.1rem;
  font-weight: 700;
}

.checkout-summary__row--total strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
}

.checkout-summary__back { margin-top: 12px; }

@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-steps { grid-template-columns: repeat(2, 1fr); }
  .checkout-summary-col { position: static; }
}

/* ==== REDESIGN 2026-08 — Faz 2: Sipariş Sonuç Sayfaları ==== */
.order-status-section { padding-top: 56px; }
.order-status-container { max-width: 920px; }
.order-status-container--narrow { max-width: 760px; }

.order-status-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  padding: 42px;
  box-shadow: var(--shadow-product-card);
}

.order-status-card h1 { font-size: 2rem; margin-bottom: 10px; }
.order-status-card__hint { margin-top: 12px; color: var(--text-secondary); }

.order-status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.order-status-icon--success { background: rgba(56, 161, 105, 0.12); color: var(--success); }
.order-status-icon--failed { background: rgba(229, 62, 62, 0.1); color: var(--danger); }
.order-status-number { color: var(--primary); }

.order-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.order-status-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  padding: 24px;
}

.order-status-panel h2 { font-size: 1.15rem; margin-bottom: 16px; }
.order-status-panel p { margin-bottom: 4px; }
.order-status-panel__note { margin-top: 12px; font-size: 0.9rem; }
.order-status-panel--items { margin-top: 24px; }

.order-status-items { display: grid; gap: 12px; }

.order-status-items__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.order-status-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .order-status-grid { grid-template-columns: 1fr; }
}

/* ==== REDESIGN 2026-08 — Faz 3: Kayıt formu ==== */
.elicara-auth__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .elicara-auth__field-row { grid-template-columns: 1fr; }
}

/* ==== REDESIGN 2026-08 — Faz 3: Hesap Sayfaları ==== */
.account-welcome { color: var(--text-secondary); margin-top: 4px; }

.account-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.account-nav {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.account-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.account-nav__link:last-child { border-bottom: none; }
.account-nav__link:hover { background: var(--bg-surface); }

.account-nav__link.active {
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-50);
  border-left: 3px solid var(--primary);
}

.account-nav__link--danger { color: var(--danger); }
.account-nav__icon { font-size: 1rem; }

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

.account-card h2 { font-size: 1.3rem; margin-bottom: 24px; }

.account-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.account-fields__item {
  padding: 16px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
}

.account-fields__item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-fields__item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}

.account-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

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

.account-quick-actions__item:hover {
  box-shadow: var(--shadow-product-card-hover);
  transform: translateY(-3px);
}

.account-quick-actions__icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.account-quick-actions__item span:last-child { font-weight: 600; color: var(--text-heading); }

.account-empty {
  text-align: center;
  padding: 60px 24px;
}

.account-empty__icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.4; }
.account-empty h3 { margin-bottom: 8px; }
.account-empty p { color: var(--text-secondary); margin-bottom: 24px; }

.account-order-list { display: grid; gap: 14px; }

.account-order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.account-order-row:hover { box-shadow: var(--shadow-product-card-hover); }
.account-order-row__number { display: block; color: var(--primary); }
.account-order-row__meta { display: block; color: var(--text-secondary); font-size: 0.9rem; margin-top: 4px; }
.account-order-row__total { font-size: 1.15rem; color: var(--text-heading); }

@media (max-width: 860px) {
  .account-shell { grid-template-columns: 1fr; }
  .account-nav { position: static; }
  .account-fields { grid-template-columns: 1fr; }
  .account-quick-actions { grid-template-columns: 1fr; }
}

/* ==== REDESIGN 2026-08 — Faz 4: İçerik/Statik Sayfalar ==== */
.content-page-hero { padding: 40px 0; }
.content-page-hero h1 { font-size: 2.2rem; }

.content-page-hero__lead {
  max-width: 720px;
  margin-top: 12px;
  color: var(--text-secondary);
}

.content-container { max-width: 900px; }
.content-container--narrow { max-width: 860px; }

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

.content-prose-card h2 { font-size: 1.2rem; margin-bottom: 12px; }
.content-prose-card h2:not(:first-child) { margin-top: 24px; }
.content-prose-card p { margin-bottom: 0; }
.content-prose-card p + p { margin-top: 16px; }
.content-prose-card a { color: var(--primary); font-weight: 700; }

.content-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .content-card-grid { grid-template-columns: 1fr; }
}

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card-lg);
}

.faq-item summary {
  padding: 22px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chevron { flex-shrink: 0; margin-left: 12px; transition: transform 0.3s ease; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }

.faq-item__body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--border-color);
}

.faq-item__body p { margin-top: 14px; }

/* ==== REDESIGN 2026-08 — Sepet Çekmecesi (Cart Drawer) ==== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 36, 26, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1200;
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--bg-body);
  box-shadow: -20px 0 60px rgba(16, 37, 27, 0.18);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.is-open { transform: translateX(0); }

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

.cart-drawer__header h3 { font-size: 1.15rem; margin: 0; }
.cart-drawer__count { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }

.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cart-drawer__close:hover { background: var(--bg-section); color: var(--text-primary); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 60px 12px;
  color: var(--text-secondary);
}

.cart-drawer__empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.4; }

.cart-drawer__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-drawer__item:last-child { border-bottom: none; }

.cart-drawer__item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
}

.cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-drawer__item-info { min-width: 0; }

.cart-drawer__item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}

.cart-drawer__item-variant { font-size: 0.76rem; color: var(--secondary); margin-bottom: 4px; }

.cart-drawer__item-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer__item-qty-row .cart-qty-stepper { transform: scale(0.9); transform-origin: left center; }

.cart-drawer__item-remove {
  font-size: 0.74rem;
  color: var(--danger);
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px 4px;
}

.cart-drawer__item-total {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  text-align: right;
}

.cart-drawer__footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
  display: grid;
  gap: 10px;
}

.cart-drawer__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cart-drawer__total-row strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
}

body.cart-drawer-open { overflow: hidden; }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; }
}
