/* ============================================================
   Luxe Store – Premium Moda E-Ticaret
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0F0F0F;
  --dark-2:  #1A1A1A;
  --gray:    #6B7280;
  --gray-l:  #F9F9F9;
  --border:  #E5E7EB;
  --white:   #FFFFFF;
  --accent:  #C9A96E;
  --red:     #E53E3E;
  --font:    'DM Sans', system-ui, sans-serif;
  --font-d:  'Cormorant Garamond', Georgia, serif;
  --r:       4px;
  --r-lg:    8px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: var(--dark); color: rgba(255,255,255,0.85);
  text-align: center; padding: 10px 16px; font-size: 0.82rem;
}
.announce-bar a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; height: 64px; gap: 20px; }

.logo {
  font-family: var(--font-d); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); text-decoration: none; letter-spacing: 6px;
  flex: 1; text-align: center;
}

.nav { display: flex; gap: 2px; }
.nav-link {
  text-decoration: none; color: var(--gray);
  font-size: 0.82rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--r);
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active { color: var(--dark); }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.icon-btn {
  width: 38px; height: 38px; border-radius: var(--r);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background 0.2s; position: relative;
  text-decoration: none;
}
.icon-btn:hover { background: var(--gray-l); }

.cart-badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--dark); color: white;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--dark); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Search bar */
.search-bar {
  display: none; padding: 12px 0;
  border-top: 1px solid var(--border);
  background: white;
}
.search-bar.open { display: block; }
.search-bar .container { display: flex; gap: 8px; }
.search-bar input {
  flex: 1; padding: 10px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--dark); }
.search-bar button { background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--gray); padding: 0 8px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r);
  font-family: var(--font); font-size: 0.88rem;
  font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.22s;
  letter-spacing: 0.5px;
}
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); }
.btn-white { background: white; color: var(--dark); }
.btn-white:hover { background: var(--gray-l); }
.btn-outline { border: 1.5px solid var(--border); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--dark); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.6); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero { position: relative; height: 90vh; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%); }
.slide-content { position: absolute; bottom: 15%; left: 8%; max-width: 560px; }
.slide-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 14px; }
.slide-content h1 { font-family: var(--font-d); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 600; color: white; line-height: 1.1; margin-bottom: 14px; }
.slide-content h1 em { font-style: italic; }
.slide-content p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 28px; line-height: 1.65; }
.slide-actions { display: flex; gap: 12px; }
.hero-controls { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; z-index: 2; }
.hero-prev, .hero-next { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); color: white; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.35); }
.hero-dots { display: flex; gap: 6px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.hero-dot.active { background: white; width: 20px; border-radius: 4px; }

/* ── CATEGORIES ── */
.categories { padding: 60px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-card { text-decoration: none; color: inherit; display: block; overflow: hidden; border-radius: var(--r-lg); position: relative; }
.cat-img { height: 420px; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-img img { transform: scale(1.04); }
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.cat-info h3 { font-family: var(--font-d); font-size: 1.6rem; font-weight: 600; color: white; margin-bottom: 2px; }
.cat-info span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ── PRODUCTS ── */
.featured-products, .new-arrivals, .related-products { padding: 60px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; }
.section-head h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 600; color: var(--dark); }
.see-all { font-size: 0.82rem; font-weight: 600; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.see-all:hover { color: var(--dark); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.product-card { cursor: pointer; }
.product-img-wrap { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--gray-l); margin-bottom: 12px; aspect-ratio: 3/4; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-actions {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%) translateY(8px);
  display: flex; gap: 6px; opacity: 0; transition: all 0.25s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(-50%) translateY(0); }

.pa-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12); transition: all 0.2s;
  color: var(--dark);
}
.pa-btn:hover { background: var(--dark); color: white; }
.pa-btn.wished { background: var(--dark); color: white; }

.product-badge-new, .product-badge-sale {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 2px;
}
.product-badge-new  { background: var(--dark); color: white; }
.product-badge-sale { background: var(--red); color: white; }

.product-name { display: block; font-size: 0.88rem; font-weight: 500; color: var(--dark); text-decoration: none; margin-bottom: 6px; transition: color 0.2s; }
.product-name:hover { color: var(--gray); }
.product-colors { display: flex; gap: 5px; margin-bottom: 6px; }
.color-dot { width: 14px; height: 14px; border-radius: 50%; cursor: pointer; transition: transform 0.2s; }
.color-dot:hover { transform: scale(1.2); }
.product-price-row { display: flex; align-items: center; gap: 8px; }
.product-price { font-size: 0.92rem; font-weight: 700; color: var(--dark); }
.product-old-price { font-size: 0.82rem; color: var(--gray); text-decoration: line-through; }

/* ── PROMO BANNER ── */
.promo-banner { margin: 0; }
.promo-inner { position: relative; height: 400px; overflow: hidden; }
.promo-bg { width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.promo-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.promo-content span { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.promo-content h2 { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; color: white; line-height: 1.2; margin-bottom: 24px; }
.promo-content h2 em { font-style: italic; }

/* ── NEW ARRIVALS ── */
.arrivals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.arrival-card { cursor: pointer; overflow: hidden; border-radius: var(--r-lg); position: relative; }
.arrival-card img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.4s; display: block; }
.arrival-card:hover img { transform: scale(1.04); }
.arrival-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.arrival-info span { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 2px; }
.arrival-info strong { font-size: 0.95rem; color: white; font-weight: 700; }

/* ── TRUST ── */
.trust-section { padding: 48px 0; background: var(--gray-l); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item span { font-size: 1.6rem; }
.trust-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.trust-item p { font-size: 0.78rem; color: var(--gray); }

/* ── COLLECTION PAGE ── */
.collection-hero { padding: 48px 0 32px; border-bottom: 1px solid var(--border); }
.collection-hero h1 { font-family: var(--font-d); font-size: 2.8rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.collection-hero p { font-size: 0.92rem; color: var(--gray); }

.collection-page { padding: 40px 0 80px; }
.collection-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }

.filters-sidebar { position: sticky; top: 80px; }
.filter-group { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 14px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray); cursor: pointer; margin-bottom: 8px; }
.filter-check input { accent-color: var(--dark); }

.price-range { display: flex; flex-direction: column; gap: 8px; }
.price-range input { width: 100%; accent-color: var(--dark); }
.price-range span { font-size: 0.82rem; color: var(--gray); }

.color-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.cf-dot { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.cf-dot.active { border-color: var(--dark); transform: scale(1.15); }

.size-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.size-btn { padding: 6px 12px; border: 1.5px solid var(--border); border-radius: var(--r); background: white; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.size-btn:hover, .size-btn.active { border-color: var(--dark); background: var(--dark); color: white; }

.collection-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.collection-toolbar span { font-size: 0.85rem; color: var(--gray); }
.sort-select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--font); font-size: 0.82rem; color: var(--dark); background: white; outline: none; cursor: pointer; }

/* ── PRODUCT DETAIL ── */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb .container { font-size: 0.78rem; color: var(--gray); }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--dark); }

.product-detail { padding: 48px 0 80px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.product-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; position: sticky; top: 80px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
.thumb { border: 2px solid transparent; border-radius: var(--r); overflow: hidden; cursor: pointer; padding: 0; background: none; transition: border-color 0.2s; }
.thumb.active { border-color: var(--dark); }
.thumb img { width: 80px; height: 96px; object-fit: cover; display: block; }
.gallery-main { border-radius: var(--r-lg); overflow: hidden; }
.gallery-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }

.pd-breadcrumb-cat { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pd-title { font-family: var(--font-d); font-size: 2.2rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.2; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: #F59E0B; font-size: 0.9rem; }
.rating-count { font-size: 0.78rem; color: var(--gray); }
.pd-price { margin-bottom: 16px; }
.pd-price-main { font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.pd-desc { font-size: 0.92rem; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }

.pd-option { margin-bottom: 20px; }
.pd-option label { font-size: 0.82rem; font-weight: 600; color: var(--dark); display: block; margin-bottom: 10px; }
.pd-colors { display: flex; gap: 8px; }
.pd-color { width: 28px; height: 28px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.pd-color.active { border-color: var(--dark); transform: scale(1.1); }
.pd-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.pd-size { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--r); background: white; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.pd-size:hover, .pd-size.active { border-color: var(--dark); background: var(--dark); color: white; }
.size-guide { font-size: 0.78rem; color: var(--gray); text-decoration: underline; }

.pd-qty { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pd-qty label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.qty-control button { width: 36px; height: 36px; background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--dark); transition: background 0.2s; }
.qty-control button:hover { background: var(--gray-l); }
.qty-control span { width: 40px; text-align: center; font-size: 0.9rem; font-weight: 600; }

.pd-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.pd-trust { display: flex; flex-direction: column; gap: 8px; padding: 16px; background: var(--gray-l); border-radius: var(--r-lg); margin-bottom: 20px; }
.pd-trust-item { font-size: 0.82rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }

.pd-accordion { border-top: 1px solid var(--border); }
.pd-accordion details { border-bottom: 1px solid var(--border); }
.pd-accordion summary { padding: 14px 0; font-size: 0.85rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.pd-accordion summary::after { content: '+'; font-size: 1.1rem; color: var(--gray); }
.pd-accordion details[open] summary::after { content: '−'; }
.pd-accordion p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; padding-bottom: 14px; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-d); font-size: 1.8rem; font-weight: 700; color: white; letter-spacing: 6px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.fsocial { width: 34px; height: 34px; border-radius: var(--r); border: 1px solid rgba(255,255,255,0.15); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.2s; }
.fsocial:hover { border-color: var(--accent); color: var(--accent); }
.footer-nav { display: flex; gap: 40px; }
.footer-nav div { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4 { font-size: 0.72rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: white; }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: white; z-index: 201; border-left: 1px solid var(--border); display: flex; flex-direction: column; transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.cart-drawer.open { right: 0; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 600; }
.cart-close { background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--gray); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: var(--gray); padding: 48px 0; font-size: 0.92rem; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 90px; border-radius: var(--r); overflow: hidden; flex-shrink: 0; background: var(--gray-l); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--gray); }
.cart-item-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 0.85rem; margin-top: 6px; display: block; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 0.95rem; font-weight: 600; }
.cart-shipping-note { font-size: 0.78rem; color: var(--gray); text-align: center; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px); background: var(--dark); color: white; padding: 12px 24px; border-radius: var(--r); font-size: 0.85rem; font-weight: 500; opacity: 0; transition: all 0.3s; z-index: 300; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 60px 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .logo { font-size: 1.3rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* Category filter row */
.cat-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cat-filter-btn {
  padding: 7px 18px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: white;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}

.cat-filter-btn:hover { border-color: var(--dark); color: var(--dark); }
.cat-filter-btn.active { background: var(--dark); color: white; border-color: var(--dark); }
