/* ========================================
   DG Service — Design System
   Armenian E-Commerce for Agricultural Tools
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Armenian:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  --color-primary: #2D6A4F;
  --color-primary-dark: #1B4332;
  --color-primary-light: #52B788;
  --color-primary-lighter: #95D5B2;
  --color-accent: #52B788;
  --color-bg: #FAFAF8;
  --color-bg-card: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-price: #D62828;
  --color-sale: #D62828;
  --color-success: #059669;
  --color-warning: #D97706;
  --color-error: #DC2626;
  --color-info: #2563EB;
  --font-family: 'Noto Sans Armenian', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --header-height: 70px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

main {
  flex: 1;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.header-logo img {
  height: 40px;
  width: 40px;
}

.header-logo span {
  color: var(--color-primary-light);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Header search */
.header-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
}
.header-search-btn svg {
  width: 22px;
  height: 22px;
}
.header-search-btn:hover {
  color: var(--color-primary);
}
.header-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.header-search-overlay.open {
  display: flex;
}
.header-search-box {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}
.header-search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.header-search-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0 8px;
}

/* Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Wishlist */
.wishlist-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text);
}
.wishlist-link svg {
  width: 24px;
  height: 24px;
}
.wishlist-link:hover {
  color: var(--color-primary);
}
.wishlist-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-sale);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.wishlist-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.wishlist-btn svg {
  width: 18px;
  height: 18px;
}
.wishlist-btn:hover, .wishlist-btn.active {
  color: var(--color-sale);
  border-color: var(--color-sale);
}

/* Cart icon */
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text);
}

.cart-link svg {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-price);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

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

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-card);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:hover {
  color: var(--color-primary);
}

.nav-mobile .mobile-phone {
  margin-top: 20px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(27,67,50,0.92) 0%, rgba(45,106,79,0.88) 50%, rgba(82,183,136,0.85) 100%),
    url('https://images.unsplash.com/photo-1581783898377-1c85bf937427?w=1400&q=80') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 {
  animation: fadeInUp 0.8s ease forwards;
}
.hero p {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero .hero-buttons {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(45,106,79,0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-danger {
  background: var(--color-error);
  color: #fff;
}

.btn-danger:hover {
  background: #b91c1c;
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
  padding: 50px 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--color-text);
  position: relative;
  display: block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}

/* ========================================
   CATEGORY CARDS
   ======================================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-card .icon {
  font-size: 2.2rem;
  line-height: 1;
}

.category-card .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

.product-card-image .no-image {
  color: var(--color-text-light);
  font-size: 3rem;
}

.product-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.4;
}

.product-card-name a {
  color: inherit;
}

.product-card-name a:hover {
  color: var(--color-primary);
}

.product-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-price);
  margin-bottom: 12px;
  margin-top: auto;
}

.product-card-price .old-price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.product-card-actions .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.85rem;
}

/* Sale badge */
.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-sale);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.badge-out {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-text-muted);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.product-card-image {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Lazy image loading */
.product-img-lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-img-lazy.loaded {
  opacity: 1;
}

/* Features / Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ========================================
   HOW TO ORDER SECTION
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  text-align: center;
}

.step-card {
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ========================================
   PRODUCT VIEW PAGE
   ======================================== */

.product-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Gallery slider */
.product-gallery-slider {
  position: relative;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: all 0.2s;
  color: var(--color-text);
}
.gallery-nav:hover {
  background: white;
  box-shadow: var(--shadow-md);
}
.gallery-prev {
  left: 10px;
}
.gallery-next {
  right: 10px;
}
.gallery-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  z-index: 2;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.product-gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--color-primary);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-info h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-info .category-tag {
  display: inline-block;
  background: var(--color-primary-lighter);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-price-block .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-price);
}

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

.product-description {
  color: var(--color-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-stock {
  font-size: 0.9rem;
  color: var(--color-success);
  font-weight: 500;
}

.product-stock.out {
  color: var(--color-error);
}

/* Related products */
.related-products {
  padding: 50px 0;
}

/* ========================================
   FILTERS (Catalog page)
   ======================================== */

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 40px 0;
}

.filters-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-group {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.filter-group h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--color-text);
}

.filter-group input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-range input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--color-bg-card);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ========================================
   CART PAGE
   ======================================== */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  padding: 40px 0;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
}

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

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--color-price);
  font-weight: 700;
}

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

.cart-item-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cart-item-qty button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cart-item-qty span {
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  color: var(--color-text-muted);
  transition: color var(--transition);
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--color-error);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}

.cart-empty .icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

/* Cart summary */
.cart-summary {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: fit-content;
}

.cart-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}

.cart-summary-total {
  border-top: 2px solid var(--color-border);
  margin-top: 12px;
  padding-top: 12px;
  font-size: 1.15rem;
  font-weight: 700;
}

.cart-summary-total .price {
  color: var(--color-price);
}

/* ========================================
   ORDER FORM
   ======================================== */

.order-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group .required::after {
  content: ' *';
  color: var(--color-error);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-lighter);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-weight: 600;
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: linear-gradient(180deg, #1B4332 0%, #0d1f17 100%);
  color: rgba(255,255,255,0.85);
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: var(--color-primary-light);
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-primary-lighter);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.footer-col .social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-col .social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}

.footer-col .social-links a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Section gradient accents */
.section:nth-child(even) {
  background: linear-gradient(180deg, #f8faf9 0%, #f0f4f2 100%);
}

/* ========================================
   MODAL
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--color-bg);
  color: var(--color-text);
}

.modal h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* ========================================
   SUCCESS / ALERT MESSAGES
   ======================================== */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ========================================
   LOADING
   ======================================== */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   PAGE HEADER / BREADCRUMB
   ======================================== */

.page-header {
  background: linear-gradient(135deg, #f8faf9 0%, #edf2ef 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

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

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: var(--color-text-light);
}

/* ========================================
   404 PAGE
   ======================================== */

.page-404 {
  text-align: center;
  padding: 80px 20px;
}

.page-404 h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* ========================================
   ADMIN PANEL
   ======================================== */

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - var(--header-height));
}

.admin-sidebar {
  background: var(--color-primary-dark);
  padding: 24px 0;
}

.admin-sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 12px;
}

.admin-sidebar-header h3 {
  color: #fff;
  font-size: 1rem;
}

.admin-sidebar-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.admin-nav a .icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.admin-content {
  padding: 30px;
  background: var(--color-bg);
  overflow-y: auto;
}

.admin-content h1 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* Admin dashboard cards */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.stat-card .stat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Admin tables */
.admin-table-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--color-bg);
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.admin-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: var(--color-bg);
}

/* Admin toolbar */
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-toolbar .search-input {
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  min-width: 250px;
}

.admin-toolbar .search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-new { background: #dbeafe; color: #1e40af; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-delivered { background: #f3f4f6; color: #374151; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-active { background: #d1fae5; color: #065f46; }
.status-draft { background: #f3f4f6; color: #6b7280; }

/* Admin login page */
.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: var(--color-bg);
}

.admin-login-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.admin-login-card h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.admin-login-card p {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* Admin form */
.admin-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.admin-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-form .form-group {
  margin-bottom: 14px;
}

.admin-form .form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 30px;
}

.pagination button {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: all var(--transition);
}

.pagination button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination button.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease;
  max-width: 360px;
}

.toast.success { border-left: 4px solid var(--color-success); }
.toast.error { border-left: 4px solid var(--color-error); }

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

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 76px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  color: white;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 8px 12px;
  gap: 8px;
}
.mobile-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
}
.mobile-call-btn svg {
  width: 20px;
  height: 20px;
}
.mobile-call-btn.call {
  background: var(--color-primary);
}
.mobile-call-btn.whatsapp {
  background: #25D366;
}
@media (max-width: 768px) {
  .mobile-call-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
  .whatsapp-float {
    bottom: 76px;
  }
  .back-to-top {
    bottom: 76px;
  }
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */

/* Language toggle */
.lang-toggle {
  font-size: 0.85rem;
  margin: 0 12px;
}
.lang-toggle a {
  color: var(--color-text-muted);
  padding: 2px 4px;
  border-radius: 3px;
  transition: all 0.2s;
}
.lang-toggle a:hover {
  color: var(--color-primary);
}

.lang-flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 2px;
  display: inline;
}

/* ========================================
   LOADING SKELETON
   ======================================== */

/* Loading skeleton */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav-desktop {
    display: none;
  }

  .header-phone {
    display: none;
  }

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

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-view {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    display: none;
  }

  .filters-sidebar.open {
    display: flex;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* Admin */
  .admin-layout {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    width: 100%;
    min-height: auto;
    padding: 12px;
  }

  .admin-sidebar.open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 240px;
  }

  .admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .admin-nav a {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .admin-content {
    padding: 16px;
  }

  .admin-form .form-row {
    grid-template-columns: 1fr;
  }

  .admin-table {
    font-size: 0.8rem;
  }

  .admin-table th, .admin-table td {
    padding: 8px 10px;
  }

  .section {
    padding: 36px 0;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cart-item {
    flex-wrap: wrap;
  }

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

  .page-404 h1 {
    font-size: 4rem;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ========================================
   PRINT STYLES
   ======================================== */

/* Print styles */
@media print {
  .site-header, .site-footer, .nav-mobile, .cart-link, .back-to-top, .whatsapp-float, .mobile-call-bar { display: none !important; }
  body { background: white; }
  .container { max-width: 100%; }
}

/* ========================================
   PROMO BANNER SLIDER
   ======================================== */

.promo-slider {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 24px auto;
  padding: 0 16px;
}

.promo-slides {
  position: relative;
  height: 180px;
}

.promo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.promo-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.promo-content {
  text-align: center;
  padding: 24px;
}

.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.promo-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  color: #fff;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.promo-arrow:hover {
  background: rgba(255,255,255,0.5);
}

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

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.2s;
}

.promo-dot.active {
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .promo-slides {
    height: 150px;
  }
  .promo-title {
    font-size: 1.1rem;
  }
  .promo-subtitle {
    font-size: 0.8rem;
  }
  .promo-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }
  .promo-prev { left: 20px; }
  .promo-next { right: 20px; }
}

/* ========================================
   BRANDS SECTION
   ======================================== */

.brands-section {
  padding: 32px 0;
}

.brands-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 0 16px;
}

.brand-logo-card {
  flex: 0 0 auto;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}

.brand-logo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.brand-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}

.brand-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .brands-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .brands-row::-webkit-scrollbar {
    height: 4px;
  }
  .brands-row::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
  }
  .brand-logo-card {
    width: 110px;
    height: 55px;
    padding: 8px 14px;
    scroll-snap-align: start;
  }
}

/* ========================================
   INFO PAGE (Delivery, Returns)
   ======================================== */

.info-page-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.info-card.highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border: none;
}

.info-card.highlight h2 {
  color: #fff;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.info-card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.info-card.highlight .info-list li {
  border-color: rgba(255,255,255,0.2);
}

.info-card.highlight .info-list li::before {
  color: #fff;
}

/* ========================================
   PRODUCT BADGES (NEW)
   ======================================== */

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-success);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
