:root {
  --brown: #8b5e3c;
  --dark-brown: #5a3a22;
  --black: #0f0f0f;
  --white: #ffffff;
  --light-gray: #f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--light-gray);
  color: #111;
  padding: 40px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      rgba(252, 250, 248, 0.75),
      rgba(206, 191, 126, 0.75)
    ),
    url("../eimages/background.png");
  background-size: cover;
  background-position: center;
  animation: bgFloat 30s ease-in-out infinite;
  z-index: -1;
}

@keyframes bgFloat {
  0%   { background-position: center; }
  50%  { background-position: top left; }
  100% { background-position: center; }
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: #777;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-right a {
  margin-left: 15px;
  text-decoration: none;
  color: #777;
  transition: color 0.3s;
}

.top-right a:hover {
  color: black;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.2s;
  user-select: none;
  color: #555;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-trigger:hover {
  background: rgba(0,0,0,0.06);
  color: #111;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 9999;
}

.dropdown-menu span {
  display: block;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  transition: background 0.2s;
}

.dropdown-menu span:hover {
  background: #f5f5f5;
  color: var(--brown);
}

.dropdown-menu span.active-option {
  color: var(--brown);
  font-weight: 600;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.open {
  display: block;
}

/* Inside the mobile nav drawer, position the menu inline instead of
   absolutely so it doesn't overflow the narrow drawer width */
.mobile-preferences {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.mobile-preferences .dropdown {
  display: block;
}

.mobile-preferences .dropdown-trigger {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  justify-content: space-between;
}

.mobile-preferences .dropdown-menu {
  position: static;
  box-shadow: none;
  border: 1px solid #eee;
  margin-top: 6px;
  width: 100%;
  min-width: 0;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.logo a {
  text-decoration: none;
  color: #111;
}

@media (min-width: 769px) {
  .logo img { height: 34px; }
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  user-select: none;
}

/* CART BUTTON */
.cart-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0;
}

.cart-btn:hover { transform: scale(1.2); }

/* MOBILE SEARCH */
.search-bar {
  display: flex;
  background: white;
  border-radius: 30px;
  padding: 10px 15px;
  gap: 10px;
  align-items: center;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

@media (min-width: 769px) {
  .mobile-search { display: none; }
}

/* MOBILE NAV */
.nav-group { display: none; }

/* ANIMATIONS */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* AUTH NAV */
.auth-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.auth-nav a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.auth-nav a:hover { color: var(--brown); }

.auth-nav .nav-register {
  background: black;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.3s;
}

.auth-nav .nav-register:hover {
  background: #333;
  color: white;
}

.nav-user {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.logout-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.logout-btn:hover { background: #f5f5f5; }

/* ========================
   HERO — FULL IMAGE
======================== */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 40px 0;
}

.hero-main {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 0;
  background: #111;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 45px;
  color: white;
  max-width: 60%;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content p {
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-content button {
  margin-top: 25px;
  padding: 14px 30px;
  border: none;
  background: white;
  color: black;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.3s, background 0.3s;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.hero-content button:hover {
  transform: scale(1.05);
  background: #f0ece6;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 260px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img { transform: scale(1.05); }

.card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 22px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* INSPIRATION */
.inspiration {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 40px 0;
  gap: 30px;
}

.text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.text p {
  line-height: 1.6;
  color: #444;
}

.text button {
  margin-top: 15px;
  padding: 12px 25px;
  border-radius: 30px;
  background: none;
  border: 2px solid black;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: 'Inter', sans-serif;
}

.text button:hover {
  background: black;
  color: white;
}

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

.gallery-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 280px;
  transition: transform 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* TRENDING */
.trending { padding: 40px 0; }

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }

.filters button {
  border: 1px solid #ddd;
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  white-space: nowrap;
}

.filters button:hover { border-color: #aaa; }

.filters .active {
  background: black;
  color: white;
  border-color: black;
}

.gender-filters button {
  font-weight: 700;
  padding: 9px 22px;
  font-size: 14px;
}

.style-filters button { font-size: 12px; color: #666; }
.style-filters .active { color: white; }

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

.product-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 10px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  background: #f2f2f2;
}

.pc-media {
  position: relative;
  cursor: pointer;
}

.pc-category {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
}

.product-card.wide { grid-column: span 2; }

.product-card h4 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  margin-top: 4px;
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-size: 12px;
  margin-right: 4px;
}

.sale-badge {
  display: inline-block;
  background: #d64545;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

.pc-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.pc-actions button {
  flex: 1;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.btn-view {
  background: white;
  color: #111;
  border: 1px solid #ddd;
}
.btn-view:hover { background: #f5f5f5; }

.btn-add {
  background: black;
  color: white;
  border: none;
}
.btn-add:hover { background: #333; }

.heart {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 1;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ========================
   TESTIMONIAL — FULL IMAGE
======================== */
.testimonial {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
  min-height: 420px;
  display: block;
}

.testimonial > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 1;
}

.testimonial-text {
  position: relative;
  z-index: 2;
  padding: 60px 55px;
  color: white;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-text small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
}

.testimonial-text h2 {
  font-size: 32px;
  line-height: 1.3;
  color: white;
}

.testimonial-text p {
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.testimonial-text strong {
  color: white;
  font-size: 15px;
}

.testimonial-text span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

/* FEATURES */
.features { padding: 40px 0; }

.features h2 {
  margin-bottom: 30px;
  font-size: 32px;
  line-height: 1.2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature h4 { margin-top: 15px; margin-bottom: 8px; }

.icon {
  background: black;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* BLOG */
.blog-section { padding: 40px 0; }

.blog-label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  display: block;
}

.blog-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-content button {
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid black;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  font-family: 'Inter', sans-serif;
}

.blog-content button:hover {
  background: black;
  color: white;
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  margin-top: 60px;
  background: #0f0f0f;
  color: white;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
  border-radius: 30px;
}

.footer-left h3 { font-size: 22px; margin-bottom: 15px; }

.footer-left p {
  color: #bbb;
  max-width: 400px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter { display: flex; gap: 10px; }

.newsletter input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 30px;
  border: 2px solid transparent;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: white;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.newsletter button:hover {
  background: #ddd;
  transform: scale(1.05);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #aaa;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

/* MOBILE NAV */
.mobile-nav-header {
  position: absolute;
  top: 25px;
  right: 25px;
}

.close-menu {
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  align-items: center;
}

.filter-bar input {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 2px solid #eee;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  background: white;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-bar input:focus { border-color: var(--brown); }

.filter-bar select {
  padding: 10px 16px;
  border: 2px solid #eee;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  background: white;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.filter-bar select:focus { border-color: var(--brown); }

/* LOADING / EMPTY */
.loading-state,
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #777;
  font-size: 15px;
}

/* ADD TO CART */
.add-to-cart-btn {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  background: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover { background: #333; }

/* CARD BADGE */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: capitalize;
  background: rgba(255,255,255,0.92);
  color: #5a3a22;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card-meta {
  font-size: 11px;
  color: #777;
  margin-top: 2px;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f0f0f;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  transition: transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* BADGES */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.badge.available { background: #d4edda; color: #155724; }
.badge.pending   { background: #fff3cd; color: #856404; }
.badge.sold      { background: #f8d7da; color: #721c24; }
.badge.paid      { background: #cce5ff; color: #004085; }
.badge.shipped   { background: #e2d9f3; color: #4a235a; }
.badge.delivered { background: #d4edda; color: #155724; }
.badge.cancelled { background: #f1f1f1; color: #666; }

/* ========================
   RESPONSIVE TABLET
======================== */
@media (max-width: 1024px) {
  .logo img { max-width: 120px; }
  .hero { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card.wide { grid-column: span 1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr; }
}

/* ========================
   RESPONSIVE MOBILE
======================== */
@media (max-width: 768px) {
  /* Skip straight from hero to the product grid on mobile — inspiration
     section stays fully visible on tablet/desktop only. */
  .inspiration { display: none; }

  body { padding: 15px; }
  .logo img { max-width: 95px; }
  .top-bar { display: none; }
  .menu-toggle { display: block; }

  .nav-group {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 20px;
  }

  .nav-group.active {
    display: block;
    animation: fadeInBackdrop 0.3s ease forwards;
  }

  @keyframes fadeInBackdrop {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .mobile-nav {
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 70px 22px 30px;
    max-width: 380px;
    margin: 0 auto;
    animation: slideIn 0.35s ease forwards;
    position: relative;
  }

  @keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  .mobile-nav-header {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
  }

  .mobile-nav h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: color 0.2s;
  }

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

  /* HERO MOBILE */
  .hero { padding: 20px 0; }
  .hero-main { min-height: 380px; }

  .hero-content {
    padding: 35px 25px;
    max-width: 100%;
  }

  .hero-content h1 { font-size: 34px; }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 100%
    );
  }

  .hero-side { flex-direction: row; }
  .card { height: 180px; flex: 1; }

  /* TESTIMONIAL MOBILE */
  .testimonial { min-height: 350px; }

  .testimonial::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.8) 0%,
      rgba(0,0,0,0.4) 100%
    );
  }

  .testimonial-text {
    max-width: 100%;
    padding: 40px 25px;
  }

  .testimonial-text h2 { font-size: 24px; }

  .inspiration { grid-template-columns: 1fr; padding: 20px 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-card { min-height: 220px; }
  .trending { padding: 20px 0; }
  .trending-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .filters { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; padding-bottom: 5px; }

  /* PRODUCT GRID — 2 columns, wraps as you scroll, no carousel */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 4px 4px 10px;
  }

  .product-card {
    padding: 8px;
    border-radius: 16px;
  }
  .product-card.wide { grid-column: span 1; }
  .product-card h4 { font-size: 12px; }
  .price { font-size: 13px; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 20px 0; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-content h2 { font-size: 24px; }
  .footer { padding: 40px 20px; border-radius: 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  .filter-bar { flex-direction: column; }
  .filter-bar input, .filter-bar select { width: 100%; }
  .auth-nav .nav-register { display: none; }
}