/* =====================================================
   CREAOCHO.COM - Feuille de style principale
   ===================================================== */

/* ---- Variables ---- */
:root {
  --gold:        #c9a56c;
  --gold-dark:   #a8844d;
  --gold-light:  #e8d5b7;
  --bg:          #fdf8f3;
  --bg-card:     #ffffff;
  --text:        #2c2520;
  --text-muted:  #7d6b5e;
  --border:      #e8ddd4;
  --red:         #c0392b;
  --green:       #27ae60;
  --shadow:      0 4px 20px rgba(44,37,32,.08);
  --shadow-lg:   0 8px 40px rgba(44,37,32,.14);
  --radius:      10px;
  --radius-sm:   6px;
  --transition:  .25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }

/* ---- Utilitaires ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  border: 2px solid transparent; transition: var(--transition);
}
.btn-primary {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark); color: #fff;
}
.btn-outline {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-dark { background: var(--text); color: #fff; border-color: var(--text); }
.btn-dark:hover { background: #111; color: #fff; }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }

/* ---- Top Bar ---- */
.topbar {
  background: var(--text);
  color: #e8d5b7;
  text-align: center;
  padding: .5rem 1rem;
  font-size: .78rem;
  letter-spacing: .04em;
  display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem;
}
.topbar-sep { opacity: .4; }

/* ---- Header ---- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.logo { height: 52px; width: auto; object-fit: contain; }
.logo-link { flex-shrink: 0; }

/* Nav */
.main-nav ul { display: flex; gap: .2rem; }
.main-nav > ul > li > a {
  display: block; padding: .5rem .9rem;
  font-size: .9rem; font-weight: 700; letter-spacing: .03em;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--gold); }
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; min-width: 200px; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  padding: .5rem 0; z-index: 999;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: .55rem 1.2rem; font-size: .88rem;
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--bg); color: var(--gold); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .5rem; }
.btn-icon {
  display: flex; flex-direction: column; align-items: center;
  position: relative; padding: .3rem .5rem;
  font-size: .7rem; color: var(--text); transition: var(--transition);
  border: none; background: none;
}
.btn-icon i { font-size: 1.15rem; }
.btn-icon:hover { color: var(--gold); }
.btn-icon-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .3rem;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: var(--transition);
}

/* ---- Flash messages ---- */
.flash {
  padding: .8rem 0; font-size: .9rem; font-weight: 600; text-align: center;
}
.flash-success { background: #d4edda; color: #155724; border-bottom: 1px solid #c3e6cb; }
.flash-error   { background: #f8d7da; color: #721c24; border-bottom: 1px solid #f5c6cb; }
.flash-info    { background: #d1ecf1; color: #0c5460; border-bottom: 1px solid #bee5eb; }

/* ---- Image placeholder ---- */
.img-placeholder {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f0e4d3 100%);
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-sm);
}
.img-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: var(--gold-dark); opacity: .5;
}

/* ---- Sections generales ---- */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-dark { background: var(--text); color: #fff; }
.section-gold { background: var(--gold-light); }
.section-title {
  font-size: 2rem; text-align: center; margin-bottom: .5rem; color: var(--text);
}
.section-title span { color: var(--gold); }
.section-subtitle {
  text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1rem;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--text) 0%, #4a3728 100%);
  color: #fff; padding: 5rem 0;
  display: flex; align-items: center; min-height: 480px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/logo.jpg') center/cover no-repeat;
  opacity: .07;
  filter: blur(4px);
}
.hero-content { position: relative; max-width: 560px; }
.hero-eyebrow {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15; margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.05rem; opacity: .85; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Grille produits ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
}
.product-card-img img,
.product-card-img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.badge {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .2rem .6rem; border-radius: 20px;
}
.badge-promo { background: var(--red); }
.product-card-body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-card-cat {
  font-size: .72rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: .25rem;
}
.product-card-name {
  font-size: 1rem; font-family: 'Playfair Display', serif;
  margin-bottom: .4rem; flex: 1;
}
.product-card-name a:hover { color: var(--gold); }
.product-card-desc {
  font-size: .82rem; color: var(--text-muted); margin-bottom: .75rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  margin-top: auto;
}
.price { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; }
.price-promo { color: var(--red); }
.price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; margin-left: .3rem; }

/* Formulaire add-to-cart */
.add-to-cart-form { margin: 0; }
.btn-cart {
  background: var(--gold); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: .55rem .9rem; font-size: .8rem;
  display: flex; align-items: center; gap: .35rem;
  transition: var(--transition); font-weight: 700;
}
.btn-cart:hover { background: var(--gold-dark); }
.btn-cart i { font-size: .85rem; }

/* ---- Categories cards ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center; padding: 1.75rem 1rem;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card i { font-size: 2rem; color: var(--gold); }
.cat-card span { font-family: 'Playfair Display', serif; font-size: .95rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex; gap: .5rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--text-muted); padding: 1rem 0;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }

/* ---- Page produit ---- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-gallery img, .product-gallery .img-placeholder {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
}
.product-info .product-cat { font-size: .8rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.product-info h1 { font-size: 2rem; margin-bottom: .75rem; }
.product-price-block { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.25rem; }
.product-price { font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); }
.product-stock { font-size: .8rem; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: .3rem; margin-bottom: 1rem; }
.product-desc { color: var(--text-muted); margin-bottom: 1.5rem; }
.qty-selector { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.qty-selector label { font-size: .85rem; font-weight: 700; }
.qty-input {
  width: 65px; text-align: center;
  padding: .5rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem;
}
.product-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---- Avis ---- */
.stars { color: var(--gold); }
.stars i.fa-star-half-alt { color: var(--gold); }
.avis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.avis-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.avis-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.avis-auteur { font-weight: 700; font-size: .9rem; }
.avis-titre { font-weight: 700; margin-bottom: .3rem; }
.avis-texte { font-size: .85rem; color: var(--text-muted); }

/* ---- Panier ---- */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); padding: .6rem 1rem; border-bottom: 2px solid var(--border); text-align: left; }
.cart-table td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-product-name { font-family: 'Playfair Display', serif; font-size: 1rem; }
.qty-ctrl { display: flex; align-items: center; gap: .3rem; }
.qty-btn {
  width: 28px; height: 28px; border: 1px solid var(--border); background: var(--bg);
  border-radius: 4px; font-size: .9rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 90px; }
.cart-summary h3 { font-size: 1.2rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: .6rem; font-size: .9rem; }
.summary-row.total { font-weight: 700; font-size: 1.1rem; border-top: 1px solid var(--border); padding-top: .75rem; margin-top: .75rem; }
.summary-row.free { color: var(--green); font-weight: 700; }
.coupon-form { margin-top: 1rem; display: flex; gap: .4rem; }
.coupon-input { flex: 1; padding: .5rem .75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .85rem; }
.paypal-section { margin-top: 1.25rem; }

/* ---- Checkout ---- */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.checkout-form-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.5rem; }
.checkout-form-section h3 { margin-bottom: 1.25rem; font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; }
.checkout-form-section h3 i { color: var(--gold); }

/* ---- Formulaires ---- */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .35rem; color: var(--text); }
.form-control {
  width: 100%; padding: .65rem .9rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: inherit; background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,108,.15);
}
.form-control::placeholder { color: #bbb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: center; gap: .5rem; }
.form-check input { accent-color: var(--gold); }
.form-error { font-size: .78rem; color: var(--red); margin-top: .25rem; }
.required { color: var(--red); }

/* ---- Compte client ---- */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.account-nav { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.account-nav a { display: flex; align-items: center; gap: .7rem; padding: .9rem 1.2rem; font-size: .9rem; border-bottom: 1px solid var(--border); transition: var(--transition); }
.account-nav a:last-child { border-bottom: none; }
.account-nav a:hover, .account-nav a.active { background: var(--gold-light); color: var(--gold-dark); }
.account-nav a i { width: 1rem; text-align: center; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th, .orders-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: .88rem; }
.orders-table th { background: var(--bg); font-weight: 700; text-transform: uppercase; font-size: .75rem; letter-spacing: .06em; color: var(--text-muted); }
.status-badge {
  display: inline-block; padding: .2rem .6rem;
  border-radius: 20px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.status-payee       { background: #d4edda; color: #155724; }
.status-en_attente  { background: #fff3cd; color: #856404; }
.status-expediee    { background: #d1ecf1; color: #0c5460; }
.status-livree      { background: #d4edda; color: #155724; }
.status-annulee     { background: #f8d7da; color: #721c24; }

/* ---- Page connexion ---- */
.auth-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow); }
.auth-card h2 { text-align: center; margin-bottom: 1.75rem; }
.auth-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 1.75rem; }
.auth-tab { flex: 1; padding: .7rem; text-align: center; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); cursor: pointer; transition: var(--transition); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.auth-tab.active { color: var(--gold); border-color: var(--gold); }

/* ---- Contact ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.contact-item { display: flex; gap: .75rem; margin-bottom: 1.1rem; }
.contact-item i { color: var(--gold); font-size: 1.1rem; margin-top: .15rem; }

/* ---- Pages texte (CGV, ML) ---- */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { margin: 2rem 0 .75rem; font-size: 1.3rem; }
.page-content p, .page-content li { margin-bottom: .75rem; color: var(--text-muted); }
.page-content ul { padding-left: 1.5rem; list-style: disc; }

/* ---- Newsletter ---- */
.newsletter { background: var(--text); color: #fff; padding: 3.5rem 0; text-align: center; }
.newsletter h3 { font-size: 1.6rem; margin-bottom: .5rem; color: #fff; }
.newsletter p { color: var(--gold-light); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 460px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: .7rem 1rem; border: none; border-radius: var(--radius-sm); font-size: .9rem; }

/* ---- Footer ---- */
.site-footer { background: #1a1208; color: #c9b99a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding: 3.5rem 0 2rem; }
.footer-logo { height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .8; }
.footer-brand p { font-size: .85rem; opacity: .7; line-height: 1.7; margin-bottom: 1rem; }
.social-links { display: flex; gap: .75rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); }
.social-links a:hover { background: var(--gold); color: #fff; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul li a { font-size: .85rem; opacity: .7; display: block; padding: .25rem 0; transition: var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.payment-icons { display: flex; gap: .75rem; font-size: 1.8rem; margin-top: 1rem; opacity: .6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; text-align: center; font-size: .8rem; opacity: .5; }

/* ---- Breadcrumb page hero ---- */
.page-hero { background: var(--text); color: #fff; padding: 2.5rem 0; }
.page-hero h1 { font-size: 2rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2rem; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9rem; transition: var(--transition);
}
.pagination a:hover, .pagination .current { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ---- Empty state ---- */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state i { font-size: 3.5rem; color: var(--border); margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
  .product-detail   { grid-template-columns: 1fr; }
  .cart-layout      { grid-template-columns: 1fr; }
  .checkout-layout  { grid-template-columns: 1fr; }
  .account-layout   { grid-template-columns: 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 1100; flex-direction: column; justify-content: center; align-items: center; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; text-align: center; }
  .main-nav > ul > li > a { font-size: 1.2rem; padding: .75rem 2rem; }
  .dropdown { position: static; box-shadow: none; border: none; display: block !important; }
  .burger-btn { display: flex; z-index: 1200; }
  .btn-icon-label { display: none; }
  .hero { padding: 3rem 0; min-height: auto; }
  .section { padding: 2.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) { display: none; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}