/* =============================================
   AdoreEmail — Sprzęt streamingowy
   Modern E-commerce Design
   ============================================= */

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

:root {
  --primary:      #1e3a5f;
  --primary-dark: #152d4a;
  --accent:       #ff6b35;
  --accent-dark:  #e55a25;
  --green:        #27ae60;
  --text:         #1a1a2e;
  --text-light:   #6b7280;
  --border:       #e5e7eb;
  --bg:           #f9fafb;
  --white:        #ffffff;
  --card-shadow:  0 2px 12px rgba(0,0,0,0.08);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius:       10px;
  --radius-sm:    6px;
  --transition:   all 0.25s ease;
  --container:    1240px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== TOP BAR ===== */
.topbar {
  background: #152d4a;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 6px 0;
  line-height: 1;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 26px;
}
.topbar-left {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}
.topbar-right {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: #fff; }

/* ===== HEADER ===== */
.header {
  background: #1e3a5f;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: #ff6b35;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.logo-tag {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.cart-btn:hover { background: #e55a25; color: #fff; }
.cart-count {
  background: #fff;
  color: #ff6b35;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  line-height: 1;
}

/* ===== HERO (ENTRY PAGE) ===== */
.hero {
  background-color: #1e3a5f;
  background-image: linear-gradient(135deg, #1e3a5f 0%, #2d5986 60%, #1a4a7a 100%);
  color: #ffffff;
  padding: 64px 0 56px;
}
.hero-content { max-width: 760px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.45);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f0f4ff; transform: translateY(-1px); color: var(--accent); }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: #229954; transform: translateY(-1px); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-full { width: 100%; display: block; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ===== ARTICLE / GUIDE CONTENT ===== */
.guide-wrap {
  padding: 48px 0 64px;
}
.guide-content {
  max-width: 820px;
}
.guide-content h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 14px;
  padding-top: 8px;
}
.guide-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}
.guide-content p {
  color: #374151;
  margin-bottom: 16px;
  line-height: 1.75;
}
.guide-content ul, .guide-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
  list-style: disc;
}
.guide-content li { margin-bottom: 6px; color: #374151; line-height: 1.7; }
.guide-content strong { color: var(--text); }

.guide-intro {
  font-size: 1.1rem;
  color: #374151;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.tip-box {
  background: #fff7f0;
  border: 1px solid #ffd4ba;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #7c3502;
}
.tip-box strong { color: var(--accent-dark); }

.comparison-table {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #2d5986);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,107,53,0.15) 0%, transparent 60%);
}
.cta-section h2 { font-size: 1.75rem; margin-bottom: 12px; position: relative; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; position: relative; }

/* ===== STORE HERO ===== */
.store-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.store-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.store-hero h1 { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.store-hero p { color: var(--text-light); font-size: 0.95rem; margin-top: 4px; }

/* ===== CATEGORY TABS ===== */
.category-tabs {
  display: flex;
  gap: 8px;
  padding: 24px 0 0;
  flex-wrap: wrap;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.cat-tab .cat-icon { font-size: 1.1rem; }
.cat-count {
  background: var(--border);
  color: var(--text-light);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 0.75rem;
  font-weight: 600;
}
.cat-tab.active .cat-count, .cat-tab:hover .cat-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ===== PRODUCT GRID ===== */
.products-section { padding: 32px 0 72px; }
.category-section { margin-bottom: 56px; }
.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding: 0 0 14px;
  border-bottom: 2px solid #e5e7eb;
}
.category-title span { font-size: 1.4rem; line-height: 1; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-3px);
  border-color: #cbd5e1;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.product-badge.new { background: var(--green); }

/* Image block — fixed height, product photo centred on white bg */
.product-img {
  width: 100%;
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f1f3;
}
.product-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.35s ease;
  display: block;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
  font-weight: 600;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 7px;
  line-height: 1.35;
  min-height: 2.7rem;
}
.product-desc {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.product-price .currency { font-size: 0.85rem; font-weight: 600; }
.add-to-cart {
  display: block;
  width: 100%;
  background: #ffe500;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  text-align: center;
}
.add-to-cart:hover { background: #ffd600; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,214,0,0.45); }
.add-to-cart:active { transform: translateY(0); }
.add-to-cart.added { background: #d1fae5; color: #065f46; }
.add-to-cart svg { display: none; }

/* ===== CART PAGE ===== */
.cart-page { padding: 36px 0 80px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}
.cart-summary-section {
  position: sticky;
  top: 80px;
}
.cart-items-section h2,
.cart-summary-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e7eb;
}
.cart-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-light);
}
.cart-empty .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.cart-empty h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.cart-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.cart-item-img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-price { color: var(--text-light); font-size: 0.875rem; }
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--border); }
.qty-num {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.item-total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  min-width: 70px;
  text-align: right;
}
.remove-item {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  transition: var(--transition);
}
.remove-item:hover { color: #ef4444; }

/* ===== ORDER FORM ===== */
.order-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.order-summary {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  padding-top: 12px;
  margin-top: 4px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* ===== SUCCESS MESSAGE ===== */
.success-box {
  text-align: center;
  padding: 64px 32px;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}
.success-box h2 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.success-box p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 48px 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-weight: 600; margin-bottom: 3px; font-size: 0.95rem; }
.contact-item-text p { color: var(--text-light); font-size: 0.9rem; }
.contact-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-box h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--primary); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 48px 0 80px; }
.legal-content { max-width: 800px; }
.legal-content h1 { font-size: 1.9rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 28px 0 10px; }
.legal-content p { margin-bottom: 14px; color: #374151; line-height: 1.75; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content li { margin-bottom: 6px; color: #374151; }

/* ===== FOOTER ===== */
.footer {
  background: #152d4a;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: #ff6b35;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: #fff;
}
.footer-logo-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; }
.footer-brand .footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: rgba(255,255,255,0.7);
}
.footer-social-link:hover { background: #ff6b35; color: #fff; }
.footer-social-link svg { width: 18px !important; height: 18px !important; max-width: 18px; max-height: 18px; display: block; fill: currentColor; flex-shrink: 0; }
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
/* Trust strip above copyright */
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-trust-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.35);
  fill: none;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 16px 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9998;
  transform: translateX(200%);
  transition: transform 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== BURGER MENU ===== */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 7px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.nav-mobile-overlay.open { display: block; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #1e3a5f;
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 32px;
  gap: 4px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  transition: right 0.3s ease;
  overflow-y: auto;
}
.nav-mobile.open {
  display: flex;
  right: 0;
}
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-cart {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.nav-mobile-cart a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ff6b35;
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 1.75rem; }
  .nav { display: none !important; }
  .burger-btn { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .store-hero-inner { flex-direction: column; align-items: flex-start; }
  .product-img { height: 170px; }
  /* Fix container overflow */
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.95rem; }
  /* Header compact */
  .header-actions .cart-btn span:not(.cart-count) { display: none; }
  .header-actions .cart-btn { padding: 8px 12px; gap: 5px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 140px; }
  .product-img img { padding: 10px; }
  .product-name { font-size: 0.85rem; min-height: unset; }
  .product-info { padding: 10px 12px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { flex-wrap: wrap; }
  .cta-section { padding: 32px 20px; }
  .logo-tag { display: none; }
  .usp-strip { gap: 12px; }
  .usp-item { flex: 1 1 calc(50% - 12px); min-width: 140px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; text-align: center; }
}
