/* Bits N Prints – theme from logo: white/light grey, blue, orange */
:root {
  --bg: #f8f9fa;
  --bg-card: #ffffff;
  --text: #2d3748;
  --text-muted: #718096;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --grey: #6b7280;
  --grey-light: #e5e7eb;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --sidebar-width: 220px;
  --header-height: 160px; /* set by JS from actual header height – change .logo-img to any size */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1419;
    --bg-card: #1a1f26;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --blue: #58a6ff;
    --blue-dark: #79b8ff;
    --orange: #f0883e;
    --orange-dark: #f0a050;
    --grey: #8b949e;
    --grey-light: #30363d;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* ----- Top header ----- */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--grey-light);
  z-index: 100;
  box-shadow: var(--shadow);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.top-header-inner {
  width: 100%;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
@media (max-width: 600px) {
  .menu-toggle { display: flex; }
}

/* Logo zone: same width as left sidebar so logo sits over the left menu */
.header-logo-zone {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 164px; /* set to any size – layout adjusts automatically */
  width: auto;
  object-fit: contain;
  display: block;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.top-nav-link {
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.top-nav-link:hover {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.top-nav-link.active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
}

/* Shop dropdown */
.top-nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0.25rem 0 0;
  padding: 0.5rem 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 1000;
}

.top-nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.dropdown-menu a.active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.12);
}

/* Shop dropdown tree */
.dropdown-tree .dropdown-group {
  margin: 0;
  list-style: none;
}

.dropdown-tree .dropdown-group-label {
  display: block;
  padding: 0.4rem 1rem 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.dropdown-tree .dropdown-submenu {
  margin: 0;
  padding: 0 0 0.5rem 0.5rem;
  list-style: none;
  border-left: 2px solid var(--grey-light);
  margin-left: 0.75rem;
}

.dropdown-tree .dropdown-submenu a {
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: var(--blue);
  color: white;
}

.btn-secondary:hover {
  background: var(--blue-dark);
}

.btn-cart {
  position: relative;
  background: var(--grey-light);
  color: var(--text);
  padding: 0.6rem 1rem;
}

.btn-cart:hover {
  background: var(--grey-light);
  color: var(--blue);
}

.cart-icon {
  font-size: 1.25rem;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-block {
  width: 100%;
}

/* ----- App layout: sidebar + main ----- */
.app-layout {
  display: flex;
  width: 100%;
  padding-top: var(--header-height);
  min-height: 100vh;
}

.left-sidebar {
  position: fixed;
  left: 0;
  top: var(--header-height);
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-card);
  border-right: 1px solid var(--grey-light);
  padding: 1.5rem 0;
  overflow-y: auto;
  z-index: 50;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}

.sidebar-title {
  margin: 0 0 0.75rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.sidebar-link {
  padding: 0.6rem 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.sidebar-link:hover {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.sidebar-link.active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.12);
}

/* Sidebar expandable groups and submenus */
.sidebar-group {
  margin: 0;
}

.sidebar-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: 0;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-align: left;
}

.sidebar-group-toggle:hover {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.sidebar-group-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.7;
  transition: transform 0.2s;
}

.sidebar-group.open .sidebar-group-toggle::after {
  transform: rotate(180deg);
}

.sidebar-submenu {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
  overflow: hidden;
  /* Visibility controlled by .sidebar-group.open so dropdown always works */
  display: none;
}

.sidebar-group.open .sidebar-submenu {
  display: block;
}

.sidebar-submenu[hidden] {
  display: none;
}

.sidebar-submenu li {
  margin: 0;
}

.sidebar-sublink {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid var(--grey-light);
}

.sidebar-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- Main content ----- */
.main-content {
  flex: 1;
  min-width: 0;
  margin-left: var(--sidebar-width);
  padding: 2rem;
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(234, 88, 12, 0.06) 100%);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.12) 0%, rgba(240, 136, 62, 0.12) 100%);
  }
}

.hero-content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
}

.brand-bits,
.brand-prints {
  color: var(--orange);
}

.brand-n {
  color: var(--blue);
}

.hero-sub {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.products-section {
  margin-bottom: 3rem;
}

.products-grid {
  position: relative;
}

.products-loading {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.products-loading.hidden {
  display: none;
}

.products-error-box {
  padding: 1.25rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: #991b1b;
  margin-bottom: 1rem;
}

.products-error-box strong { display: block; margin-bottom: 0.5rem; }
.products-error-box p { margin: 0.5rem 0; font-size: 0.95rem; }
.products-error-tip { margin-top: 0.75rem !important; font-size: 0.85rem !important; color: #b91c1c !important; }
.products-error-tip code { background: rgba(0,0,0,0.08); padding: 0.2em 0.4em; border-radius: 4px; }

@media (prefers-color-scheme: dark) {
  .products-error-box { background: #3d1f1f; border-color: #5c2d2d; color: #fca5a5; }
  .products-error-tip { color: #fecaca !important; }
  .products-error-tip code { background: rgba(0,0,0,0.2); }
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s, background-color 0.25s ease;
  cursor: pointer;
}

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

.product-card-image {
  display: block;
  aspect-ratio: 1;
  background: var(--grey-light);
  overflow: hidden;
  pointer-events: none;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex: 1;
  min-height: 0;
}

.product-card-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}

.product-card-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.5rem;
}

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card-actions .btn {
  width: 100%;
}

/* Product detail modal (stay on site) */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* View mode toggle (desktop / mobile site) */
.view-mode-toggle {
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  color: var(--text-muted);
}
.view-mode-toggle:hover {
  color: var(--blue);
}

/* Product modal: mobile default, desktop larger + two-column */
.product-modal {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

body.view-desktop .product-modal {
  max-width: 720px;
  max-height: 88vh;
}

body.view-desktop .product-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

body.view-desktop .product-modal-image {
  aspect-ratio: 1;
  max-height: min(88vh, 420px);
}

body.view-desktop .product-modal-content {
  padding: 1.5rem 2rem;
}

body.view-desktop .product-modal h2 {
  font-size: 1.4rem;
}

body.view-desktop .product-modal-desc {
  max-height: 20em;
  font-size: 1rem;
}

.product-modal-inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.product-modal-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--grey-light);
  overflow: hidden;
  flex-shrink: 0;
}

.product-modal-gallery-prev,
.product-modal-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.product-modal-gallery-prev:hover,
.product-modal-gallery-next:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.product-modal-gallery-prev { left: 0.5rem; }
.product-modal-gallery-next { right: 0.5rem; }

.product-modal-gallery-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 2;
}
.product-modal-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.product-modal-gallery-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.product-modal-gallery-dot.active {
  background: #fff;
}
.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.product-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.product-modal-content {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
  overflow-y: auto;
  flex: 1;
}

.product-modal h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-modal-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.product-modal-options {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.product-modal-options label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

.product-modal-options select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
}

.product-modal-options .option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-modal-options .option-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.product-modal-options .option-btn:hover {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.06);
}

.product-modal-options .option-btn.selected {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  font-weight: 600;
}

.product-modal-options .option-btn.unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-modal-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-height: 8em;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.25rem;
  flex-shrink: 1;
  min-height: 0;
}

.product-modal-desc p,
.product-modal-desc ul,
.product-modal-desc ol {
  margin: 0.5em 0;
}
.product-modal-desc p:first-child,
.product-modal-desc ul:first-child,
.product-modal-desc ol:first-child {
  margin-top: 0;
}
.product-modal-desc a {
  color: var(--blue);
  text-decoration: underline;
}

.product-modal-actions .btn {
  width: 100%;
}

.product-modal-actions {
  flex-shrink: 0;
}

.product-modal-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.about-section,
.contact-section {
  margin-bottom: 2rem;
}

.about-section p,
.contact-section p {
  margin: 0;
  color: var(--text-muted);
  max-width: 60ch;
}

.about-page {
  max-width: 60ch;
}
.about-page p + p {
  margin-top: 1rem;
}

/* ----- Cart drawer ----- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--bg-card);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (prefers-color-scheme: dark) {
  .cart-drawer { box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5); }
}

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

.cart-checkout-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--grey-light);
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.cart-close:hover {
  color: var(--text);
  background: var(--grey-light);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  margin: 0;
  color: var(--text-muted);
}

.cart-items .cart-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-light);
}

.cart-line-details {
  flex: 1;
  min-width: 0;
}

.cart-line-remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.cart-line-remove:hover {
  color: var(--orange);
  background: rgba(234, 88, 12, 0.1);
}

.cart-drawer-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--grey-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-clear-cart,
.btn-text {
  background: none;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-clear-cart:hover,
.btn-text:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .left-sidebar {
    width: 200px;
  }

  .header-logo-zone {
    width: 200px;
    min-width: 200px;
  }

  .main-content {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .top-nav {
    display: none;
  }

  .left-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
  }

.left-sidebar.open-mobile {
  transform: translateX(0);
}

@media (prefers-color-scheme: dark) {
  .left-sidebar.open-mobile { box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5); }
}

.main-content {
  margin-left: 0;
  padding: 1rem;
}

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

  .hero {
    padding: 2rem 1rem;
  }
}
