/* ===== TOKENS – Nike-Style ===== */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #CCCCCC;
  --gray-600: #757575;
  --gray-800: #2D2D2D;
  --orange: #FF6600; /* Akzent für ASPHALT-Brand */
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 4px;
  --transition: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 0.875rem; font-weight: 700; }

/* ===== LAYOUT ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section { padding: 60px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: var(--gray-100); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 40px; height: 60px;
}
.logo {
  font-weight: 900; font-size: 1.3rem;
  letter-spacing: 0.08em; color: var(--black);
  text-transform: uppercase; flex-shrink: 0;
}
.nav { display: flex; gap: 28px; flex: 1; }
.nav-link {
  font-size: 0.8rem; font-weight: 600; color: var(--black);
  transition: color var(--transition); letter-spacing: 0.01em;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--gray-600); }
.nav-link.active { border-bottom: 2px solid var(--black); padding-bottom: 2px; }
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--black);
  position: relative; padding: 4px; display: flex; align-items: center;
}
.icon-btn:hover { opacity: 0.6; }
.cart-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--black); color: var(--white);
  font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; padding: 16px 32px;
  background: var(--black); color: var(--white);
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.04em;
  text-transform: uppercase; border: 2px solid var(--black);
  border-radius: 30px; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-primary:hover { background: var(--gray-800); border-color: var(--gray-800); }
.btn-primary.light {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.btn-primary.light:hover { background: var(--gray-200); border-color: var(--gray-200); }
.btn-ghost {
  display: inline-block; padding: 16px 32px;
  background: transparent; color: var(--black);
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.04em;
  text-transform: uppercase; border: 2px solid var(--black);
  border-radius: 30px; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-ghost.light { color: var(--white); border-color: var(--white); }
.btn-ghost.light:hover { background: var(--white); color: var(--black); }
.btn-outline {
  display: inline-block; padding: 8px 20px;
  background: transparent; color: var(--black);
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.03em;
  border: 1px solid var(--gray-400); border-radius: 30px; cursor: pointer;
  transition: border-color var(--transition);
}
.btn-outline:hover { border-color: var(--black); }

/* ===== HERO ===== */
.hero {
  min-height: 90vh; padding-top: 60px;
  display: flex; align-items: stretch;
  background: var(--gray-100);
  position: relative; overflow: hidden;
}
.hero-content {
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 40px 80px 80px; position: relative; z-index: 2;
  max-width: 52%;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-600);
  margin-bottom: 16px;
}
.hero-title {
  margin-bottom: 20px; color: var(--black);
}
.hero-sub {
  font-size: 1rem; color: var(--gray-600); margin-bottom: 32px; max-width: 400px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  flex: 1; position: relative; overflow: hidden; min-height: 500px;
}
.hero-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s ease;
}
.hero:hover .hero-visual img { transform: scale(1.03); }
.hero-badge {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: var(--black); color: var(--white);
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.1em; padding: 6px 14px; border-radius: 30px;
}

/* ===== SECTION HEADER ===== */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-title { margin-bottom: 28px; }
.section-header .section-title { margin-bottom: 0; }
.link-arrow {
  font-size: 0.875rem; font-weight: 700; color: var(--black);
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity var(--transition);
}
.link-arrow:hover { opacity: 0.6; }
.section-dark .link-arrow { color: var(--white); }

/* ===== KATEGORIEN ===== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--gray-200);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px;
  font-weight: 700; font-size: 1rem; color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px;
}
.product-card { cursor: pointer; }
.product-card:hover .product-name { text-decoration: underline; }
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--gray-100);
  border-radius: var(--radius); margin-bottom: 12px;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-actions {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; gap: 6px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }
.product-info {}
.product-brand {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-600); margin-bottom: 3px;
}
.product-name {
  font-weight: 700; font-size: 0.95rem; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-color { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 6px; }
.product-price { font-size: 0.95rem; font-weight: 700; color: var(--black); }
.product-price .original {
  font-size: 0.85rem; color: var(--gray-600); text-decoration: line-through; margin-right: 8px; font-weight: 400;
}
.wishlist-btn {
  background: var(--white); border: 1px solid var(--gray-200);
  cursor: pointer; color: var(--black);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.wishlist-btn:hover, .wishlist-btn.active { background: var(--black); color: var(--white); }
.add-to-cart-btn {
  flex: 1; padding: 8px 14px;
  background: var(--black); color: var(--white);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.03em;
  border: none; border-radius: 30px; cursor: pointer;
  transition: background var(--transition); white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.add-to-cart-btn:hover { background: var(--gray-800); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--white); border-top: 1px solid var(--gray-200); }
.newsletter-box {
  display: flex; align-items: center; gap: 60px; flex-wrap: wrap;
  padding: 60px 0;
}
.newsletter-text h2 { margin-bottom: 8px; font-size: 1.5rem; }
.newsletter-text p { color: var(--gray-600); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 0; flex: 1; min-width: 300px; max-width: 480px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  background: var(--gray-100); border: 1px solid var(--gray-200); border-right: none;
  border-radius: 30px 0 0 30px; color: var(--black); font-family: var(--font);
  font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--black); }
.newsletter-form .btn-primary {
  border-radius: 0 30px 30px 0; padding: 14px 24px; font-size: 0.8rem;
}
.newsletter-success { color: #1a7a1a; font-weight: 700; font-size: 0.9rem; }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200;
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; height: 100vh; width: 400px;
  background: var(--white); z-index: 201; padding: 28px;
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--gray-200);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.cart-header h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.close-btn { background: none; border: none; color: var(--black); font-size: 1.3rem; cursor: pointer; line-height: 1; }
.close-btn:hover { opacity: 0.5; }
.cart-items { flex: 1; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-200);
}
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); background: var(--gray-100); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.cart-item-size { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 6px; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; }
.cart-item-remove { background: none; border: none; color: var(--gray-600); cursor: pointer; font-size: 0.85rem; text-decoration: underline; padding: 0; margin-top: 4px; display: block; }
.cart-item-remove:hover { color: var(--black); }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--gray-200); margin-top: 8px; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; margin-bottom: 16px; }
.cart-empty { color: var(--gray-600); text-align: center; margin-top: 60px; font-size: 0.9rem; }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 30px;
  border: 1px solid var(--gray-400);
  background: transparent; color: var(--gray-800);
  font-family: var(--font); font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 100px 40px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-hero p { color: var(--gray-600); font-size: 0.95rem; }

/* ===== PRODUKT DETAIL ===== */
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; padding: 48px 0; }
.detail-imgs {}
.detail-main-img { border-radius: var(--radius); overflow: hidden; background: var(--gray-100); margin-bottom: 10px; }
.detail-main-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.detail-thumbs { display: flex; gap: 8px; }
.detail-thumb {
  width: 72px; height: 72px; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; background: var(--gray-100);
  border: 2px solid transparent; transition: border-color var(--transition);
}
.detail-thumb:hover, .detail-thumb.active { border-color: var(--black); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { padding-top: 8px; }
.detail-brand { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.detail-name { font-size: 1.6rem; margin-bottom: 8px; }
.detail-color { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 20px; }
.detail-price { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.detail-desc { color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; font-size: 0.9rem; }
.size-selector { margin-bottom: 24px; }
.size-selector-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.size-selector h4 { font-size: 0.875rem; font-weight: 700; }
.size-guide { font-size: 0.82rem; color: var(--gray-600); text-decoration: underline; cursor: pointer; }
.size-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.size-btn {
  min-width: 52px; height: 44px; padding: 0 8px;
  border: 1px solid var(--gray-400);
  background: transparent; color: var(--black);
  border-radius: var(--radius); cursor: pointer; font-size: 0.82rem; font-weight: 500;
  transition: all var(--transition);
}
.size-btn:hover { border-color: var(--black); }
.size-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }
.detail-actions { display: flex; flex-direction: column; gap: 12px; }
.detail-actions .btn-primary { padding: 18px; font-size: 0.9rem; text-align: center; }
.detail-actions .wishlist-full {
  width: 100%; padding: 18px; text-align: center;
  background: transparent; color: var(--black);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--gray-400); border-radius: 30px; cursor: pointer;
  transition: border-color var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.detail-actions .wishlist-full:hover { border-color: var(--black); }

/* ===== KONTAKT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 48px 0; }
.contact-form-wrap {}
.contact-form-wrap h2 { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-800); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--gray-400);
  border-radius: var(--radius); color: var(--black); font-family: var(--font); font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-success { color: #1a7a1a; font-weight: 700; font-size: 0.9rem; margin-top: 12px; display: none; }
.contact-info {}
.contact-info h3 { margin-bottom: 28px; font-size: 1.2rem; }
.info-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-200); }
.info-block:last-child { border-bottom: none; }
.info-block h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; color: var(--gray-600); }
.info-block p { font-size: 0.9rem; line-height: 1.7; }

/* ===== AUTH ===== */
.auth-page {
  min-height: 100vh; padding: 80px 24px 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}
.auth-box {
  background: var(--white); width: 100%; max-width: 420px;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo { font-size: 1.6rem; }
.auth-box h1 { font-size: 1.6rem; text-align: center; margin-bottom: 6px; }
.auth-box .sub { color: var(--gray-600); text-align: center; margin-bottom: 32px; font-size: 0.9rem; }
.auth-box .form-group { margin-bottom: 16px; }
.auth-box .btn-primary { width: 100%; padding: 16px; margin-top: 8px; font-size: 0.875rem; text-align: center; }
.auth-switch { text-align: center; margin-top: 20px; color: var(--gray-600); font-size: 0.875rem; }
.auth-switch a { color: var(--black); font-weight: 700; text-decoration: underline; }
.auth-error { color: #c00; font-size: 0.82rem; margin-top: 8px; display: none; padding: 10px 14px; background: #fff0f0; border-radius: var(--radius); border: 1px solid #fcc; }
.divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--gray-600); font-size: 0.78rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.btn-google {
  width: 100%; padding: 14px; text-align: center;
  background: var(--white); color: var(--black);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--gray-400); border-radius: 30px; cursor: pointer;
  transition: border-color var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-google:hover { border-color: var(--black); }

/* ===== MERKLISTE ===== */
.wishlist-empty { text-align: center; padding: 80px 0; color: var(--gray-600); }
.wishlist-empty h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--black); }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 24px; }
.breadcrumb a { color: var(--gray-600); text-decoration: underline; }
.breadcrumb a:hover { color: var(--black); }

/* ===== LOADING ===== */
.loading-spinner { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--gray-600); font-size: 0.9rem; }

/* ===== SEARCH ===== */
.search-wrap { margin-bottom: 24px; position: relative; }
.search-wrap input {
  width: 100%; max-width: 360px; padding: 12px 16px 12px 40px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 30px; color: var(--black); font-family: var(--font); font-size: 0.875rem;
  transition: border-color var(--transition);
}
.search-wrap input:focus { outline: none; border-color: var(--black); background: var(--white); }
.search-wrap::before {
  content: ''; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 0.8rem; pointer-events: none;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  z-index: 999; background: var(--black); color: var(--white);
  padding: 14px 24px; border-radius: 30px;
  font-size: 0.875rem; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== FOOTER ===== */
.footer { background: var(--white); border-top: 1px solid var(--gray-200); padding: 48px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.footer-brand p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; color: var(--black); }
.footer-links a { color: var(--gray-600); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--black); text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--gray-200); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--gray-600); font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .hero { flex-direction: column; }
  .hero-content { max-width: 100%; padding: 60px 24px 32px; }
  .hero-visual { min-height: 300px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { padding: 90px 24px 32px; }
}
@media (max-width: 600px) {
  .nav { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--gray-200); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .cat-grid { gap: 8px; }
  .cart-sidebar { width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--gray-200); border-radius: 30px; }
  .newsletter-form .btn-primary { border-radius: 30px; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
