/* =============================================
   DYS Shop - Custom Styles
   ============================================= */

/* ── Global responsive baseline ─────────────────────────────────────────
   Bootstrap .row uses margin:-15px which bleeds past the viewport on mobile.
   Clip it site-wide so no page ever gains a horizontal scrollbar.
   ──────────────────────────────────────────────────────────────────────── */
html { overflow-x: hidden; }
main { overflow-x: hidden; max-width: 100%; }
@media (max-width: 991px) {
  body { overflow-x: hidden; max-width: 100vw; }
  main { width: 100%; }
  .container { max-width: 100%; }
  footer, footer .container { overflow-x: hidden; }
}

/* --- Animations --- */
.fade-in { animation: fadeIn .5s ease forwards; }
.slide-up { animation: slideUp .5s ease forwards; }

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

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Scroll to top --- */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, background .2s;
  z-index: 9999;
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { background: #444; }

/* --- Cart sidebar --- */
#cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,.12);
}
#cart-sidebar.open { transform: translateX(0); }
#cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
#cart-sidebar-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
}
.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.cart-item-img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: #777; }
.cart-item-price { font-weight: 700; font-size: 14px; }

/* Reservation timer */
.cart-timer { font-size: 11px; color: #c0392b; margin-top: 4px; }

/* --- Navbar updates --- */
.nav-cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-btn { position: relative; cursor: pointer; }
.nav-search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.nav-search-bar input {
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 13px;
  width: 240px;
  outline: none;
}
.nav-search-bar button {
  border: none;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
}
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  max-height: 360px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .15s;
}
.search-result-item:hover { background: #f9f9f9; }
.search-result-img { width: 44px; height: 44px; object-fit: cover; }

/* --- Category page (ASOS-style) --- */
.shop-layout { display: flex; gap: 32px; align-items: flex-start; }
.shop-filters {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}
.shop-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-group { margin-bottom: 24px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.filter-group-title {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}
.filter-option input[type=checkbox] { cursor: pointer; }
.shop-grid { flex: 1; }
.shop-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.sort-select {
  border: 1px solid #ddd;
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:991px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:576px) {
  .shop-layout { flex-direction: column; }
  .shop-filters { width: 100%; position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.product-card {
  position: relative;
  cursor: pointer;
}
.product-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: opacity .3s; }
.product-card:hover img { opacity: .85; }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-card-badge.sale { background: #c0392b; }
.product-card-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover .product-card-actions { opacity: 1; }
.product-card-action-btn {
  width: 36px; height: 36px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  transition: background .2s;
  font-size: 14px;
}
.product-card-action-btn:hover { background: #1a1a1a; color: #fff; }
.product-card-body { padding: 12px 0 0; }
.product-card-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.product-card-brand { font-size: 11px; color: #777; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-card-price { font-size: 14px; font-weight: 700; }
.product-card-price del { color: #aaa; font-weight: 400; margin-right: 6px; }
.product-card-price .price-sale { color: #c0392b; }
.product-card-stars { font-size: 11px; color: #f39c12; margin-top: 4px; }
.out-of-stock-badge {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
}
.out-of-stock-badge span {
  background: #1a1a1a;
  color: #fff;
  padding: 6px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Product detail page --- */
.product-gallery { display: flex; gap: 12px; }
.product-thumbnails { display: flex; flex-direction: column; gap: 8px; width: 80px; flex-shrink: 0; }
.product-thumbnails img {
  width: 80px; height: 80px;
  object-fit: cover;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  border: 2px solid transparent;
}
.product-thumbnails img.active { opacity: 1; border-color: #1a1a1a; }
.product-main-img { flex: 1; }
.product-main-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-detail-info { padding-left: 32px; }
@media(max-width:991px) { .product-detail-info { padding-left: 0; margin-top: 24px; } }
.product-breadcrumb { font-size: 12px; color: #999; margin-bottom: 12px; }
.product-breadcrumb a { color: #999; text-decoration: none; }
.product-breadcrumb a:hover { color: #1a1a1a; }
.product-title { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.product-brand { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #777; margin-bottom: 12px; }
.product-price-block { margin-bottom: 20px; }
.product-price { font-size: 26px; font-weight: 700; }
.product-price del { font-size: 18px; color: #aaa; font-weight: 400; }
.product-price .sale { color: #c0392b; }
.variant-selector { margin-bottom: 20px; }
.variant-label { font-size: 12px; text-transform: uppercase; letter-spacing: .8px; font-weight: 600; margin-bottom: 10px; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
  padding: 7px 16px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.variant-btn:hover { border-color: #1a1a1a; }
.variant-btn.selected { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }
.variant-btn.unavailable { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 20px; border: 1px solid #ddd; width: fit-content; }
.qty-btn { border: none; background: none; width: 40px; height: 44px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: #f5f5f5; }
.qty-input { width: 50px; text-align: center; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; height: 44px; font-size: 14px; font-weight: 600; outline: none; }
.stock-info { font-size: 12px; margin-bottom: 16px; }
.stock-info.low { color: #e67e22; }
.stock-info.out { color: #c0392b; }
.btn-add-cart {
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 12px;
}
.btn-add-cart:hover { background: #333; }
.btn-add-cart:disabled { background: #aaa; cursor: not-allowed; }
.btn-favorite {
  width: 100%;
  padding: 13px;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s, color .2s;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-favorite:hover, .btn-favorite.active { background: #1a1a1a; color: #fff; }
.product-tabs { margin-top: 32px; }
.product-tab-nav { display: flex; border-bottom: 2px solid #eee; margin-bottom: 20px; }
.product-tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  color: #999;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.product-tab-btn.active { color: #1a1a1a; border-bottom-color: #1a1a1a; }

/* --- Checkout --- */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
@media(max-width:991px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-section { background: #fff; border: 1px solid #eee; padding: 28px; margin-bottom: 20px; }
.checkout-section-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #eee; }
.delivery-option { border: 1.5px solid #ddd; padding: 16px 20px; margin-bottom: 12px; cursor: pointer; transition: border-color .2s; display: flex; align-items: flex-start; gap: 14px; }
.delivery-option:hover { border-color: #1a1a1a; }
.delivery-option.selected { border-color: #1a1a1a; background: #fafafa; }
.delivery-option input[type=radio] { margin-top: 3px; flex-shrink: 0; }
.order-summary-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.order-summary-img { width: 56px; height: 56px; object-fit: cover; position: relative; flex-shrink: 0; }
.order-summary-qty-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #555;
  color: #fff;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-summary-total { display: flex; justify-content: space-between; padding: 14px 0; font-weight: 700; }
.order-summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: #555; }

/* --- Account layout --- */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 40px 0; }
@media(max-width:768px) { .account-layout { grid-template-columns: 1fr; } }
.account-sidebar { background: #fff; border: 1px solid #eee; padding: 24px 0; height: fit-content; position: sticky; top: 80px; }
.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
}
.account-nav-item:hover { background: #f9f9f9; color: #1a1a1a; }
.account-nav-item.active { background: #f5f5f5; color: #1a1a1a; border-left-color: #1a1a1a; font-weight: 700; }
.account-content { min-height: 400px; }
.account-card { background: #fff; border: 1px solid #eee; padding: 28px; margin-bottom: 20px; }
.account-card-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #eee; text-transform: uppercase; letter-spacing: .8px; }

/* --- Admin layout --- */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px;
  background: #1a1a1a;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  flex-shrink: 0;
  box-shadow: 3px 0 12px rgba(0,0,0,.18);
}
.admin-brand { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.admin-nav-section { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-nav-section-title { padding: 0 20px 8px; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.admin-nav-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-nav-item.active { background: rgba(184,150,46,.15); color: #B8962E; border-left: 3px solid #B8962E; padding-left: 17px; }
.admin-main {
  margin-left: 250px;
  flex: 1;
  background: #f4f4f4;
  min-height: 100vh;
  overflow-x: hidden;
}
.admin-topbar {
  background: #fff;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 99;
}
.admin-page { padding: 28px 32px; }
.admin-page-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
@media(max-width:1200px) { .kpi-grid { grid-template-columns: repeat(2,1fr); } }
.kpi-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.kpi-icon {
  width: 48px; height: 48px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.kpi-value { font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.kpi-label { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: .8px; }
.kpi-change { font-size: 11px; margin-top: 4px; }
.kpi-change.up { color: #27ae60; }
.kpi-change.down { color: #c0392b; }
.admin-chart-card { background: #fff; border: 1px solid #eee; padding: 24px; margin-bottom: 24px; }
.admin-table { background: #fff; border: 1px solid #eee; }
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f9f9f9; padding: 12px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: .8px; text-align: left; border-bottom: 1px solid #eee; color: #555; }
.admin-table td { padding: 14px 16px; font-size: 13px; border-bottom: 1px solid #f5f5f5; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafafa; }

/* Status badges */
.badge-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-pending   { background: #fef9e7; color: #f39c12; }
.badge-confirmed { background: #eafaf1; color: #27ae60; }
.badge-processing{ background: #eaf3fb; color: #2980b9; }
.badge-shipped   { background: #f0f0f0; color: #555; }
.badge-delivered { background: #d5f5e3; color: #1e8449; }
.badge-cancelled { background: #fdecea; color: #c0392b; }

/* Form styles */
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; display: block; }
.form-control-dys {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
  background: #fff;
}
.form-control-dys:focus { border-color: #1a1a1a; }
.btn-dys {
  padding: 12px 28px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dys-dark { background: #1a1a1a; color: #fff; }
.btn-dys-dark:hover { background: #333; color: #fff; }
.btn-dys-outline { background: #fff; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.btn-dys-outline:hover { background: #1a1a1a; color: #fff; }
.btn-dys-danger { background: #c0392b; color: #fff; }
.btn-dys-danger:hover { background: #a93226; color: #fff; }

/* Alert */
.alert-dys { padding: 14px 18px; margin-bottom: 20px; font-size: 13px; border-left: 4px solid; }
.alert-dys-success { background: #eafaf1; border-color: #27ae60; color: #1e8449; }
.alert-dys-error   { background: #fdecea; border-color: #c0392b; color: #922b21; }
.alert-dys-info    { background: #eaf3fb; border-color: #2980b9; color: #1a5276; }
.alert-dys-warning { background: #fef9e7; border-color: #f39c12; color: #b7770d; }

/* Mobile responsive */
@media(max-width:768px) {
  #cart-sidebar { width: 100%; }
  .nav-search-bar input { width: 140px; }
  .admin-sidebar { transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); z-index:200; }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 4px 0 24px rgba(0,0,0,.25); }
  .admin-main { margin-left: 0; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .admin-topbar { padding: 0 16px; }
  .admin-page { padding: 16px 14px; overflow-x:hidden; }
}
@media(max-width:480px) {
  .kpi-grid { grid-template-columns: 1fr; }
  .admin-topbar-date { display: none; }
}

/* Admin mobile menu button */
.admin-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #555;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 8px;
}
.admin-menu-btn:hover { background: #f5f5f5; }
@media(max-width:768px) { .admin-menu-btn { display: flex; } }

/* Admin sidebar overlay */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  backdrop-filter: blur(2px);
}
.admin-sidebar-overlay.show { display: block; }

/* Admin sidebar close button */
.admin-sidebar-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.admin-sidebar-close:hover { background: rgba(255,255,255,.2); color: #fff; }
@media(max-width:768px) { .admin-sidebar-close { display: flex; } }

/* Brand form name+slug row */
.adm-name-slug { display:grid; grid-template-columns:2fr 1fr; gap:16px; margin-bottom:16px; }
@media(max-width:576px) { .adm-name-slug { grid-template-columns:1fr; } }

/* ===== Admin responsive grid utilities ===== */
.adm-kpi-grid    { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.adm-kpi-grid > * { min-width:0; }
.adm-dash-2col   { display:grid; grid-template-columns:1fr 340px; gap:20px; }
.adm-form-grid   { display:grid; grid-template-columns:1fr 320px; gap:20px; }
.adm-status-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:10px; }
.adm-fields-2col { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.adm-grid-4      { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.adm-page-head   { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }

@media(max-width:1100px) {
  .adm-dash-2col   { grid-template-columns:1fr; }
  .adm-kpi-grid    { grid-template-columns:repeat(2,1fr); }
  .cat-tab-search  { display:none !important; }
}
@media(max-width:900px) {
  .adm-status-grid { grid-template-columns:repeat(4,1fr); }
}
@media(max-width:768px) {
  /* !important overrides inline overflow:hidden on all admin table wrappers */
  .admin-table     { overflow-x:auto !important; -webkit-overflow-scrolling:touch; }
  .admin-table th,
  .admin-table td  { padding:8px 10px !important; font-size:12px; white-space:nowrap; }
  .adm-form-grid   { grid-template-columns:1fr; }
  .adm-kpi-grid    { grid-template-columns:repeat(2,1fr); }
  .adm-status-grid { grid-template-columns:repeat(3,1fr); }
  .adm-fields-2col { grid-template-columns:1fr; }
  .adm-grid-4      { grid-template-columns:repeat(2,1fr); }
  .adm-page-head   { gap:8px; }
  .cat-mgr         { flex-direction:column; min-height:auto; overflow:visible; }
  .cat-tree        { display:none; }
  .cat-tabs        { overflow-x:auto; -webkit-overflow-scrolling:touch; padding-right:0; }
  .cat-tab         { white-space:nowrap; padding:10px 14px; }
  .cat-right       { min-width:0; }
  .cat-right-head  { flex-wrap:wrap; gap:8px; }
  .cat-tab-search  { display:none !important; }
  .cat-table-wrap  { overflow-x:auto !important; -webkit-overflow-scrolling:touch; min-width:0; max-width:100%; }
  /* Support split layout → stack vertically */
  .sup-layout      { flex-direction:column; height:auto !important; }
  .sup-left        { width:100% !important; max-height:300px; border-right:none !important; border-bottom:1px solid #eee; }
  .sup-right       { min-height:400px; }
}
@media(max-width:480px) {
  .adm-kpi-grid    { grid-template-columns:1fr; }
  .adm-status-grid { grid-template-columns:repeat(2,1fr); }
}

/* Pagination */
.pagination-dys { display: flex; gap: 4px; justify-content: center; margin-top: 32px; }
.page-btn { width: 36px; height: 36px; border: 1px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; transition: background .15s; }
.page-btn:hover, .page-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.page-btn.disabled { opacity: .4; cursor: default; }

/* DYS custom paginator */
.dys-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 10px;
  border: 1.5px solid #e0e0e0; border-radius: 6px;
  background: #fff; color: #555; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .15s, color .15s, border-color .15s;
  cursor: pointer; font-family: inherit; white-space: nowrap;
}
.dys-page-btn:hover:not(.disabled):not(.active) { background: #f5f5f5; border-color: #bbb; color: #111; }
.dys-page-btn.active { background: #111; color: #fff; border-color: #111; }
.dys-page-btn.disabled { opacity: .4; cursor: default; pointer-events: none; }

/* Stock page tab buttons */
.stock-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; cursor: pointer; color: #888;
  transition: color .15s, border-color .15s; font-family: inherit; white-space: nowrap;
}
.stock-tab:hover:not(.stock-tab--on) { color: #333; }
.stock-tab--on { color: #111; border-bottom-color: #B8962E; }
.stock-tab-badge {
  background: #fdecea; color: #c0392b; min-width: 18px; height: 18px;
  border-radius: 9px; font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* Order tracking */
.tracking-steps { display: flex; justify-content: space-between; position: relative; margin: 32px 0; }
.tracking-steps::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: #eee; z-index: 0; }
.tracking-step { display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1; }
.tracking-step-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #aaa;
  border: 2px solid #eee;
}
.tracking-step.done .tracking-step-icon { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.tracking-step.current .tracking-step-icon { background: #fff; color: #1a1a1a; border-color: #1a1a1a; }
.tracking-step-label { font-size: 11px; text-align: center; color: #aaa; text-transform: uppercase; letter-spacing: .5px; }
.tracking-step.done .tracking-step-label { color: #1a1a1a; font-weight: 600; }

/* Mobile menu for admin */
.admin-mobile-toggle { display: none; }
@media(max-width:768px) { .admin-mobile-toggle { display: flex; } }

/* =============================================
   DESIGN MODERNE — Accent doré DYS
   ============================================= */

/* Header sticky — supprime le padding-top réservé pour position:absolute */
.main-banner { padding-top: 0 !important; }

/* Carousel — flèches intégrées modernes */
#men .owl-nav,
#women .owl-nav,
#kids .owl-nav {
  position: absolute !important;
  top: 30% !important;
  width: calc(100% + 56px) !important;
  left: -28px !important;
  transform: translateY(-50%) !important;
  pointer-events: none;
}
#men .owl-nav .owl-prev, #men .owl-nav .owl-next,
#women .owl-nav .owl-prev, #women .owl-nav .owl-next,
#kids .owl-nav .owl-prev, #kids .owl-nav .owl-next {
  pointer-events: all;
  position: absolute !important;
  outline: none !important;
}
#men .owl-nav .owl-prev, #women .owl-nav .owl-prev, #kids .owl-nav .owl-prev { left: 0 !important; }
#men .owl-nav .owl-next, #women .owl-nav .owl-next, #kids .owl-nav .owl-next { right: 0 !important; }

#men .owl-nav .owl-prev:before, #men .owl-nav .owl-next:before,
#women .owl-nav .owl-prev:before, #women .owl-nav .owl-next:before,
#kids .owl-nav .owl-prev:before, #kids .owl-nav .owl-next:before {
  width: 40px !important; height: 40px !important;
  line-height: 40px !important;
  border: none !important;
  background: rgba(0,0,0,.75) !important;
  color: #fff !important;
  font-size: 18px !important;
  border-radius: 50% !important;
}
#men .owl-nav button:hover:before, #women .owl-nav button:hover:before, #kids .owl-nav button:hover:before {
  background: #C9A84C !important;
}
#men .owl-dots, #women .owl-dots, #kids .owl-dots { display: none !important; }

/* Product card — ratio portrait, séparateur fin */
.owl-carousel .owl-item .product-card { margin: 0; border-right: 1px solid #f0f0f0; }
.owl-carousel .owl-item:last-child .product-card { border-right: none; }
.product-card-image img { height: auto !important; aspect-ratio: 2/3; }
#men .section-heading, #women .section-heading, #kids .section-heading { margin-bottom: 0 !important; }

/* Barre d'annonce */
.announcement-bar {
  background: #111;
  color: #C9A84C;
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.announcement-bar span { display: inline-block; }

/* Header — accents dorés */
.header-area { box-shadow: 0 2px 16px rgba(0,0,0,.07) !important; background: #fff !important; }
.header-area .main-nav .nav > li > a {
  color: #111 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  transition: color .2s !important;
}
.header-area .main-nav .nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #C9A84C;
  transition: width .25s ease;
}
.header-area .main-nav .nav > li:hover > a { color: #C9A84C !important; }
.header-area .main-nav .nav > li:hover > a::after { width: 100%; }
.has-dropdown .dropdown-menu-custom { border-top: 2px solid #C9A84C !important; }
.has-dropdown .dropdown-menu-custom li a:hover { color: #C9A84C !important; background: #fafaf8 !important; }

/* Logo header */
.header-area .main-nav .logo { line-height: 1; }

/* Section headings — moderne */
.section-heading h2 {
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: -.3px !important;
  color: #111 !important;
  margin-bottom: 0 !important;
}
.section-heading h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #C9A84C;
  margin-top: 10px;
}
.section-heading span {
  display: block !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  color: #888 !important;
  font-style: normal !important;
}
.section-view-all {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #111;
  border-bottom: 1.5px solid #C9A84C;
  padding-bottom: 2px;
  text-decoration: none !important;
  transition: color .2s;
  white-space: nowrap;
}
.section-view-all:hover { color: #C9A84C; }

/* Sections alternées */
.section { padding: 64px 0 !important; }
.section.bg-off { background: #FAFAF8; }

/* Bande avantages */
.avantages-strip {
  background: #111;
  padding: 40px 0;
}
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.avantage-item { padding: 0 8px; }
.avantage-item i {
  font-size: 26px;
  color: #C9A84C;
  margin-bottom: 12px;
  display: block;
}
.avantage-item h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  color: #fff;
}
.avantage-item p {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.5;
}
@media(max-width:768px) {
  .avantages-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Section éditoriale */
.editorial-section { padding: 70px 0; background: #fff; }
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 40px;
}
.editorial-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.editorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.editorial-item:hover img { transform: scale(1.05); }
.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.editorial-overlay .cat-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #C9A84C;
  font-weight: 700;
  margin-bottom: 8px;
}
.editorial-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.editorial-overlay a.editorial-cta {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none !important;
  font-weight: 700;
  border-bottom: 1.5px solid #C9A84C;
  padding-bottom: 2px;
  transition: color .2s;
}
.editorial-overlay a.editorial-cta:hover { color: #C9A84C; }
@media(max-width:768px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-item { aspect-ratio: 16/9; }
}

/* Footer moderne */
footer { background: #111 !important; border: none !important; margin-top: 0 !important; }
.footer-top {
  padding: 60px 0 44px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
footer h4 {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #C9A84C !important;
  margin-bottom: 22px !important;
}
footer .first-item .logo { margin-bottom: 20px; }
footer ul { list-style: none !important; padding: 0 !important; }
footer ul li { margin-bottom: 10px !important; }
footer ul li a {
  color: rgba(255,255,255,.5) !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: color .2s;
}
footer ul li a:hover { color: #C9A84C !important; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: 11px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
footer .under-footer { display: none !important; }

/* Scroll-to-top doré */
#scroll-top:hover { background: #B8962E !important; }

/* =============================================
   UTILITAIRES SECTIONS HOME
   ============================================= */
.dys-section-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #B8962E;
    margin-bottom: 6px;
}
.dys-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.15;
}
.dys-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 0 40px;
}
.dys-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}
.dys-section-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111;
    text-decoration: none;
    border-bottom: 1.5px solid #B8962E;
    padding-bottom: 2px;
    transition: color .2s;
    white-space: nowrap;
}
.dys-section-link:hover { color: #B8962E; }

/* =============================================
   NOTRE HISTOIRE — dys-brand
   ============================================= */
.dys-brand {
    background: #111;
    padding: 72px 40px;
}
.dys-brand-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.dys-brand-content .dys-section-label { margin-bottom: 12px; }
.dys-brand-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
}
.dys-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin: 0 0 28px;
}
.dys-brand-btn {
    display: inline-block;
    padding: 13px 28px;
    background: #B8962E;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 2px;
    transition: background .2s;
}
.dys-brand-btn:hover { background: #a07a24; color: #fff; }

.dys-brand-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.dys-stat {
    border-left: 2px solid #B8962E;
    padding-left: 20px;
}
.dys-stat-num {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.dys-stat-num span { font-size: 22px; color: #B8962E; }
.dys-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.4);
}

@media(max-width:991px) {
    .dys-brand { padding: 48px 24px; }
    .dys-brand-inner { grid-template-columns: 1fr; gap: 40px; }
    .dys-brand-title { font-size: 26px; }
    .dys-brand-stats { gap: 20px; }
}

/* =============================================
   NOUVELLES ARRIVÉES — grille asymétrique
   ============================================= */
.dys-new-arrivals { padding: 60px 40px; background: #F9F8F6; }
.dys-new-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 600px;
}
.dys-new-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    background: #eee;
}
.dys-new-card--large { grid-row: 1 / 3; }
.dys-new-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.dys-new-card:hover img { transform: scale(1.06); }
.dys-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background .3s;
}
.dys-new-card:hover .dys-new-overlay { background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 50%); }

.dys-new-badges { margin-bottom: 8px; }
.dys-nbadge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}
.dys-nbadge--new  { background: #B8962E; color: #fff; }
.dys-nbadge--sale { background: #c0392b; color: #fff; }
.dys-nbadge--out  { background: #555;    color: #fff; }

.dys-new-info { display:block; }
.dys-new-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}
.dys-new-price {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

@media(max-width:991px) {
    .dys-new-arrivals { padding: 40px 16px; }
    .dys-new-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .dys-new-card { height: 240px; }
    .dys-new-card--large { grid-column: 1 / 3; height: 300px; }
}
@media(max-width:576px) {
    .dys-new-grid { grid-template-columns: 1fr; }
    .dys-new-card--large { grid-column: auto; }
}

/* =============================================
   CARROUSEL PAR CATÉGORIE — max 4 cards
   ============================================= */
.dys-carousel-section {
    padding: 60px 0;
    background: #fff;
}
.dys-carousel-section .dys-section-head { margin-bottom: 0; }

.dys-car-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.dys-car-tabs button {
    background: none;
    border: 1.5px solid #ddd;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    border-radius: 20px;
    color: #666;
    transition: border-color .2s, background .2s, color .2s;
}
.dys-car-tabs button:hover { border-color: #111; color: #111; }
.dys-car-tabs button.active { background: #111; color: #fff; border-color: #111; }

.dys-car-wrap {
    position: relative;
    margin-top: 28px;
    padding: 0 56px; /* espace pour les boutons prev/next */
}
.dys-car-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3 * 16px) / 4);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 0 20px;
}
.dys-car-track::-webkit-scrollbar { display: none; }

.dys-car-card {
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    background: #fff;
    transition: box-shadow .3s, transform .3s;
}
.dys-car-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,.13);
    transform: translateY(-4px);
}

.dys-car-btn {
    position: absolute;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    transition: background .2s, border-color .2s, color .2s;
    color: #111;
}
.dys-car-btn:hover { background: #111; border-color: #111; color: #fff; }
.dys-car-btn--prev { left: 8px; }
.dys-car-btn--next { right: 8px; }

/* Lien "Nouveautés" — accent doré (texte seulement, sans underline permanent) */
.dys-nav-link--new { color: #B8962E; }
.dys-nav-link--new:hover { color: #B8962E; border-bottom-color: #B8962E; }

/* Responsive carousel */
@media(max-width:1200px) {
    .dys-car-track { grid-auto-columns: calc((100% - 2 * 16px) / 3); }
}
@media(max-width:768px) {
    .dys-car-wrap { padding: 0 16px; }
    .dys-car-track { grid-auto-columns: calc((100% - 12px) / 2); gap: 12px; }
    .dys-car-btn { display: none; }
}
@media(max-width:480px) {
    .dys-car-track { grid-auto-columns: 80%; }
}

/* =============================================
   TÉMOIGNAGES — carousel auto-scroll
   ============================================= */
.dys-testimonials {
    padding: 72px 40px;
    background: #F9F8F6;
    overflow: hidden;
}
.dys-testi-viewport {
    overflow: hidden;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
.dys-testi-track {
    display: flex;
    transition: transform .65s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.dys-testi-slide {
    flex: 0 0 100%;
    padding: 0 8px;
}
.dys-testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 6px 32px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.dys-testi-stars { display: flex; gap: 3px; }
.dys-testi-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}
.dys-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
}
.dys-testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #111;
    color: #B8962E;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: .5px;
}
.dys-testi-name  { font-size: 14px; font-weight: 700; color: #111; }
.dys-testi-meta  { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* Navigation */
.dys-testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.dys-testi-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    transition: background .2s, border-color .2s, color .2s;
}
.dys-testi-arrow:hover { background: #111; border-color: #111; color: #fff; }
.dys-testi-dots { display: flex; gap: 8px; }
.dys-testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background .3s, transform .3s;
    padding: 0;
}
.dys-testi-dot.active { background: #B8962E; transform: scale(1.3); }

@media(max-width:768px) {
    .dys-testimonials { padding: 48px 16px; }
    .dys-testi-card   { padding: 24px; }
    .dys-testi-text   { font-size: 14px; }
}

/* =============================================
   FAQ — accordéon moderne
   ============================================= */
.dys-faq {
    padding: 72px 40px;
    background: #fff;
}
.dys-faq-inner {
    max-width: 840px;
    margin: 0 auto;
}
.dys-faq-heading {
    text-align: center;
    margin-bottom: 48px;
}
.dys-faq-sub {
    font-size: 14px;
    color: #888;
    margin: 10px 0 0;
}
.dys-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dys-faq-item {
    border-bottom: 1px solid #EBEBEB;
}
.dys-faq-item:first-child { border-top: 1px solid #EBEBEB; }

.dys-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    font-family: inherit;
    transition: color .2s;
}
.dys-faq-q:hover { color: #B8962E; }
.dys-faq-chevron {
    flex-shrink: 0;
    transition: transform .3s ease;
    color: #B8962E;
}
.dys-faq-chevron.rotated { transform: rotate(180deg); }

/* Accordéon hauteur — CSS Grid trick */
.dys-faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}
.dys-faq-body-inner { overflow: hidden; }
.dys-faq-body-inner p {
    padding: 0 0 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:768px) {
    .dys-faq { padding: 48px 16px; }
    .dys-faq-q { font-size: 14px; }
}

/* Section head responsive */
@media(max-width:768px) {
    .dys-section-head { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 16px; }
    .dys-new-arrivals { padding: 40px 16px; }
    .dys-carousel-section { padding: 40px 0; }
    .dys-testimonials { padding: 48px 16px; }
}

/* =============================================
   PRODUCT CARD — pcard-*
   ============================================= */
.pcard { position: relative; background: #fff; }
.pcard-img { position: relative; overflow: hidden; }
.pcard-img-link { display: block; }
.pcard-img img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.04); }

.pcard-badges { position: absolute; top: 10px; left: 10px; z-index: 2; }
.pcard-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 2px;
}
.pcard-badge--out  { background: #111;    color: #fff; }
.pcard-badge--sale { background: #c0392b; color: #fff; }
.pcard-badge--new  { background: #B8962E; color: #fff; }

.pcard-sold-out {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pcard-sold-out span {
  background: #111;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 18px;
}

/* Favorite button — always visible top-right */
.pcard-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: #888;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s, color .2s, transform .2s;
  z-index: 4;
  flex-shrink: 0;
}
.pcard-fav:hover { background: #fff; color: #e74c3c; transform: scale(1.1); }
.pcard-fav--on  { color: #e74c3c; background: #fff; }

.pcard-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform .28s ease;
  z-index: 3;
}
.pcard:hover .pcard-actions { transform: translateY(0); }

.pcard-act {
  width: 36px; height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.pcard-act:hover { background: #B8962E; color: #fff; }

.pcard-body { padding: 12px 14px 18px; }
.pcard-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 4px;
}
.pcard-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 6px;
}
.pcard-name:hover { color: #B8962E; }
.pcard-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pcard-price-now { font-size: 14px; font-weight: 700; color: #111; }
.pcard-price-now.pcard-price-sale { color: #c0392b; }
.pcard-price-was { font-size: 12px; color: #aaa; text-decoration: line-through; }
.pcard-colors { display: flex; align-items: center; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.pcard-color-dot {
    width: 14px; height: 14px; border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.12); flex-shrink: 0;
    transition: transform .15s;
}
.pcard-color-dot:hover { transform: scale(1.25); }
.pcard-color-dot--white { border-color: #ccc; }
.pcard-color-dot--active { width:16px;height:16px;border:2.5px solid #111;box-shadow:0 0 0 2px rgba(0,0,0,.1);transform:scale(1.1); }
.pcard-color-dot--dim { opacity:.38;transform:scale(.85); }
.pcard-color-more { font-size: 10px; color: #aaa; font-weight: 700; }

/* =============================================
   HOME — CATEGORY TILES  hct-*
   ============================================= */
.home-cat-tiles { padding: 0; }
.hct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 520px;
  gap: 3px;
}
.hct-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.hct-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.hct-tile:hover img { transform: scale(1.06); }
.hct-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 32px 28px;
}
.hct-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #B8962E;
  margin-bottom: 6px;
}
.hct-name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}
.hct-cta {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 1.5px solid #B8962E;
  padding-bottom: 2px;
  transition: color .2s;
}
.hct-tile:hover .hct-cta { color: #B8962E; }

@media(max-width:768px) {
  .hct-grid { grid-template-columns: 1fr; height: auto; }
  .hct-tile { height: 260px; }
}

/* =============================================
   HOME — PRODUCT SECTIONS
   ============================================= */
.home-prod-section { padding: 60px 40px; background: #fff; }
.home-prod-section--alt { background: #F9F8F6; }

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.home-section-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #B8962E;
  margin-bottom: 6px;
}
.home-section-title { font-size: 26px; font-weight: 700; color: #111; margin: 0; line-height: 1.2; }
.home-section-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
  text-decoration: none;
  border-bottom: 1.5px solid #B8962E;
  padding-bottom: 2px;
  transition: color .2s;
  white-space: nowrap;
}
.home-section-link:hover { color: #B8962E; }

.home-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media(max-width:1200px) { .home-prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:768px)  {
  .home-prod-section { padding: 40px 16px; }
  .home-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .home-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* =============================================
   HOME — EDITORIAL SECTION
   ============================================= */
.home-editorial { background: #fff; padding: 4px 40px; }
.home-ed-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4px;
}
.home-ed-side { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.home-ed-item { position: relative; overflow: hidden; cursor: pointer; }
.home-ed-item--large { aspect-ratio: 3/4; }
.home-ed-side .home-ed-item { min-height: 240px; }
.home-ed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.home-ed-item:hover img { transform: scale(1.05); }
.home-ed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.home-ed-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #B8962E;
  margin-bottom: 6px;
}
.home-ed-heading { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 14px; line-height: 1.2; }
.home-ed-btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid #B8962E;
  padding-bottom: 2px;
  transition: color .2s;
  width: fit-content;
}
.home-ed-btn:hover { color: #B8962E; }

@media(max-width:768px) {
  .home-editorial { padding: 4px 16px; }
  .home-ed-grid { grid-template-columns: 1fr; }
  .home-ed-item--large { aspect-ratio: 4/3; }
  .home-ed-side .home-ed-item { min-height: 200px; }
}

/* =============================================
   HOME — BENEFITS STRIP
   ============================================= */
.home-benefits { background: #111; padding: 48px 40px; }
.home-benefits-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.hb-item { display: flex; align-items: flex-start; gap: 16px; }
.hb-item svg { flex-shrink: 0; margin-top: 2px; }
.hb-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
}
.hb-sub { font-size: 12px; color: rgba(255,255,255,.45); }

@media(max-width:768px) {
  .home-benefits { padding: 40px 16px; }
  .home-benefits-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media(max-width:480px) { .home-benefits-inner { grid-template-columns: 1fr; } }

/* =============================================
   CATEGORY PAGE
   ============================================= */

/* ── Header sombre (remplace cat-banner) ── */
.cat-hd {
    background: #111;
    padding: 36px 40px 30px;
}
.cat-hd-inner { max-width: 1400px; margin: 0 auto; }
.cat-hd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,.35);
    margin-bottom: 14px;
}
.cat-hd-breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.cat-hd-breadcrumb a:hover { color: #B8962E; }
.cat-hd-breadcrumb svg { opacity: .4; }
.cat-hd-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -.5px;
    line-height: 1;
}
.cat-hd-count {
    display: inline-block;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
}
.cat-hd-desc {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin: 10px 0 0;
    max-width: 540px;
    line-height: 1.6;
}

/* ── Sous-catégorie navigation (remplace pills) ── */
.cat-subnav {
    background: #fff;
    border-bottom: 2px solid #111;
    position: sticky;
    top: 62px;
    z-index: 800;
}
.cat-subnav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    height: 48px;
    align-items: stretch;
}
.cat-subnav-inner::-webkit-scrollbar { display: none; }
.cat-subnav-link {
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
    letter-spacing: .2px;
}
.cat-subnav-link:hover { color: #B8962E; }
.cat-subnav-link--active { color: #111; border-bottom-color: #B8962E; font-weight: 700; }

/* ── Cat flex luxe beige variant ── */
.cat-flex-sec--white {
    background: #F7F0E4;
    border-top: 1px solid #E8DDD0;
    border-bottom: 1px solid #E8DDD0;
}
.cat-flex-sec--white .cat-flex-eyebrow { color: #9A7A52; }
.cat-flex-sec--white .cat-flex-title   { color: #111; }
.cat-flex-sec--white .cat-flex-head .cat-drops-all { color: #7A5522; }
.cat-flex-sec--white .cat-flex-head .cat-drops-all:hover { color: #B8962E; }
.cat-flex-sec--white .cat-drops-btn { background: #fff; border-color: #D4B896; color: #111; }
.cat-flex-sec--white .cat-drops-btn:hover { background: #111; border-color: #111; color: #fff; }
.cat-flex-sec--white .cat-drops-card { background: #FDF8F2; }

/* ── Shopper par catégorie ── */
.cat-shopcat {
    background: #F9F8F6;
    padding: 40px 0 48px;
    border-bottom: 1px solid #EBEBEB;
}
.cat-shopcat-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.cat-shopcat-head { margin-bottom: 24px; }
.cat-shopcat-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: -.2px;
}
/* Carousel horizontal 1 ligne */
.cat-shopcat-wrap {
    position: relative;
    padding: 0 52px;
}
.cat-shopcat-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 0 12px;
}
.cat-shopcat-track::-webkit-scrollbar { display: none; }
.cat-shopcat-track .cat-shopcat-tile {
    flex: 0 0 200px;
    scroll-snap-align: start;
}
.cat-shopcat-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: #fff;
    border: 1.5px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    transition: background .2s, border-color .2s, color .2s;
    color: #111;
}
.cat-shopcat-btn:hover { background: #111; border-color: #111; color: #fff; }
.cat-shopcat-btn--prev { left: 4px; }
.cat-shopcat-btn--next { right: 4px; }
.cat-shopcat-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 2/3;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
    transition: transform .3s, box-shadow .3s;
    isolation: isolate;          /* crée un stacking context propre */
}
.cat-shopcat-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,.28);
}

/* 1 — Image en fond, z-index le plus bas */
.cat-shopcat-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s ease;
}
.cat-shopcat-tile:hover .cat-shopcat-img { transform: scale(1.07); }

/* 2 — Overlay noir semi-transparent par-dessus l'image */
.cat-shopcat-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,.52);
    transition: background .3s;
}
.cat-shopcat-tile:hover .cat-shopcat-overlay { background: rgba(0,0,0,.65); }

/* 3 — Texte au-dessus de tout, avec dégradé renforcé en bas */
.cat-shopcat-tile-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.cat-shopcat-name {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.cat-shopcat-subitems {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}
.cat-shopcat-subitems span {
    font-size: 11px;
    color: rgba(255,255,255,.75);
    line-height: 1.4;
}
.cat-shopcat-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #B8962E;
    transition: gap .2s;
}
.cat-shopcat-tile:hover .cat-shopcat-cta { gap: 8px; }

/* ── Section Tout pour flex ── */
.cat-flex-sec {
    background: #111;
    padding: 40px 40px 48px;
    border-bottom: 1px solid #222;
}
.cat-flex-inner { max-width: 1400px; margin: 0 auto; }
.cat-flex-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cat-flex-eyebrow {
    display: block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #B8962E;
    margin-bottom: 4px;
}
.cat-flex-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -.3px;
}
.cat-flex-sec .cat-drops-all { color: rgba(255,255,255,.5); border-bottom-color: #B8962E; }
.cat-flex-sec .cat-drops-all:hover { color: #B8962E; }
.cat-flex-sec .cat-drops-btn { background: #1e1e1e; border-color: #333; color: #fff; }
.cat-flex-sec .cat-drops-btn:hover { background: #B8962E; border-color: #B8962E; }
.cat-flex-sec .cat-drops-card { background: #1a1a1a; }

/* Variante fond gris clair */
.cat-flex-sec--grey {
    background: #F5F5F5;
}
.cat-flex-sec--grey .cat-flex-title { color: #111; }
.cat-flex-sec--grey .cat-flex-eyebrow { color: #B8962E; }
.cat-flex-sec--grey .cat-drops-btn { background: #fff; border-color: #E0E0E0; color: #111; }
.cat-flex-sec--grey .cat-drops-btn:hover { background: #111; border-color: #111; color: #fff; }
.cat-flex-sec--grey .cat-drops-card { background: #fff; }
.cat-flex-sec--grey .cat-drops-all { color: #555; border-bottom-color: #B8962E; }
.cat-flex-sec--grey .cat-drops-all:hover { color: #B8962E; }

/* Variante fond blanc clair (budget) */
.cat-drops--light { background: #FAFAFA; }

/* ── Section Marques Premium ── */
.cat-brands-sec {
    background: #F5F5F5;
    padding: 56px 0 60px;
    border-top: 1px solid #EBEBEB;
}
.cat-brands-sec-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.cat-brands-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}
.cat-brands-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B8962E;
    margin-bottom: 8px;
}
.cat-brands-sec-title {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -.3px;
}
.cat-brands-sec-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border: 1.5px solid #111;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}
.cat-brands-sec-btn:hover { background: #111; color: #fff; }

/* Carousel */
.cat-brands-carousel {
    position: relative;
    padding: 0 52px;
}
.cat-brands-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
}
.cat-brands-track::-webkit-scrollbar { display: none; }

/* Brand cards */
.cat-brand-card {
    flex: 0 0 150px;
    height: 150px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.cat-brand-card:hover {
    transform: translateY(-4px);
    border-color: #B8962E;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.cat-brand-card-bar {
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0; left: 0;
}
/* Logo image inside card — full color, no filter */
.cat-brand-card-logo {
    width: 110px;
    height: 60px;
    object-fit: contain;
    transition: transform .2s;
}
.cat-brand-card:hover .cat-brand-card-logo {
    transform: scale(1.06);
}
/* Fallback: styled initials when no logo */
.cat-brand-card-mono {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: -1px;
    transition: color .2s;
}
.cat-brand-card-name {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-top: 8px;
    text-align: center;
    padding: 0 12px;
}

/* Carousel nav buttons (reuse cat-drops-btn style) */
.cat-brands-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A1A1A;
    border: 1px solid #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .2s, border-color .2s;
}
.cat-brands-btn:hover { background: #B8962E; border-color: #B8962E; }
.cat-brands-btn--prev { left: 0; }
.cat-brands-btn--next { right: 0; }

/* Home brands section */
.dys-home-brands {
    background: #EFEFEF;
    padding: 52px 0 56px;
    border-bottom: 1px solid #E0E0E0;
}
.dys-home-brands-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.dys-home-brands-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}
.dys-home-brands-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: #111;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.dys-home-brands-btn:hover { background: #B8962E; color: #fff; }
.dys-home-brands-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
    position: relative;
}
.dys-home-brands-track::-webkit-scrollbar { display: none; }
/* In the home brands section cards look slightly different (light bg) */
.dys-home-brands-track .cat-brand-card {
    background: #fff;
    border-color: #EBEBEB;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.dys-home-brands-track .cat-brand-card:hover {
    border-color: #B8962E;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.dys-home-brands-track .cat-brand-card-name { color: #777; }

/* ── Brand strip (home + category pages) ── */
.brd-strip {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 12px;
    gap: 0;
}
.brd-strip::-webkit-scrollbar { display: none; }
.brd-item {
    flex: 0 0 calc(100% / 6);
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 12px;
    text-decoration: none;
    transition: opacity .2s;
}
.brd-item:hover { opacity: 1; }
.brd-item-logo {
    width: 90px;
    height: 52px;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter .25s;
    display: block;
}
.brd-item:hover .brd-item-logo {
    filter: grayscale(0) opacity(1);
}
.brd-item-mono {
    width: 90px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    color: #bbb;
    transition: color .25s;
}
.brd-item:hover .brd-item-mono { color: #B8962E; }
.brd-item-name {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    text-align: center;
    transition: color .25s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.brd-item:hover .brd-item-name { color: #111; }
@media (max-width: 768px) {
    .brd-item { flex: 0 0 calc(100% / 3); min-width: 90px; }
}
@media (max-width: 480px) {
    .brd-item { flex: 0 0 50%; min-width: 80px; }
}

/* Color filter panel */
.cat-fdrop-panel--colors { padding: 12px; display: none; min-width: 260px; }
.cat-fdrop--open .cat-fdrop-panel--colors { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-fdrop-color {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1.5px solid #E0E0E0;
    border-radius: 20px;
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.cat-fdrop-color:hover { border-color: #111; }
.cat-fdrop-color--active { border-color: #111; background: #F5F5F5; font-weight: 700; }
.cat-fdrop-color-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}


/* ── Derniers drops (carousel) ── */
.cat-drops {
    background: #fff;
    padding: 40px 40px 48px;
    border-bottom: 1px solid #EBEBEB;
}
.cat-drops-inner { max-width: 1400px; margin: 0 auto; }
.cat-drops-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cat-drops-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #B8962E;
    display: block;
    margin-bottom: 4px;
}
.cat-drops-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: -.2px;
}
.cat-drops-all {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111;
    text-decoration: none;
    border-bottom: 1.5px solid #B8962E;
    padding-bottom: 2px;
    white-space: nowrap;
    transition: color .2s;
}
.cat-drops-all:hover { color: #B8962E; }
.cat-drops-wrap { position: relative; padding: 0 52px; }
.cat-drops-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3 * 16px) / 4);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 0 16px;
}
.cat-drops-track::-webkit-scrollbar { display: none; }
.cat-drops-card {
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 16px rgba(0,0,0,.07);
    transition: box-shadow .3s, transform .3s;
}
.cat-drops-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.13); transform: translateY(-3px); }
.cat-drops-btn {
    position: absolute;
    top: calc(50% - 8px);
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: #fff;
    border: 1.5px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    transition: background .2s, border-color .2s, color .2s;
    color: #111;
}
.cat-drops-btn:hover { background: #111; border-color: #111; color: #fff; }
.cat-drops-btn--prev { left: 4px; }
.cat-drops-btn--next { right: 4px; }

/* Sub-cat pills (ancienne version, garder pour compatibilité) */
.cat-subcats { background: #fff; border-bottom: 1px solid #eee; padding: 0 40px; overflow-x: auto; }
.cat-subcats-inner {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 0; max-width: 1400px; margin: 0 auto; white-space: nowrap;
}
.cat-subcat-btn {
  display: inline-block; padding: 6px 16px; border: 1.5px solid #ddd;
  background: #fff; color: #444; font-size: 12px; font-weight: 500;
  text-decoration: none; border-radius: 20px;
  transition: border-color .2s, background .2s, color .2s; white-space: nowrap; cursor: pointer;
}
.cat-subcat-btn:hover { border-color: #111; color: #111; }
.cat-subcat-btn.active { background: #111; color: #fff; border-color: #111; }

/* Layout grid */
.cat-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}

/* Sidebar */
.cat-filters {
  padding: 24px 20px 24px 0;
  border-right: 1px solid #eee;
  position: sticky;
  top: 70px;
  height: fit-content;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  display: none;
}
.cat-filters--open { display: block; }

.cat-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cat-filters-reset {
  font-size: 11px;
  color: #999;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: color .2s;
}
.cat-filters-reset:hover { color: #B8962E; }

.cat-filter-group {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}
.cat-filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 10px;
  display: block;
}
.cat-filter-select {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s;
}
.cat-filter-select:focus { outline: none; border-color: #111; }

.cat-filter-input {
  padding: 8px 10px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 13px;
  transition: border-color .2s;
}
.cat-filter-input:focus { outline: none; border-color: #111; }

.cat-filter-options { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 10px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.cat-size-btn:hover { border-color: #111; }
.cat-size-btn.active { background: #111; color: #fff; border-color: #111; }

.cat-filter-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  margin-bottom: 8px;
}
.cat-filter-radio input[type=radio] { cursor: pointer; accent-color: #111; }

.cat-filter-apply {
  width: 100%;
  padding: 11px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s;
  margin-top: 6px;
  text-align: center;
  display: block;
  text-decoration: none;
}
.cat-filter-apply:hover { background: #B8962E; color: #fff; }

/* Main area */
.cat-main { padding: 24px 0 24px 28px; }
.cat-grid-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.cat-filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid #ddd;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.cat-filter-toggle:hover { border-color: #111; }
.cat-grid-count { flex: 1; font-size: 12px; color: #777; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: #bbb;
  gap: 12px;
}
.cat-empty h3 { font-size: 18px; font-weight: 600; color: #333; margin: 0; }
.cat-empty p { font-size: 14px; color: #aaa; margin: 0; }

.cat-pagination { display: flex; justify-content: center; margin-top: 16px; }
.cat-pagination .pagination { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.cat-pagination .page-item .page-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #ddd;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  transition: background .15s, color .15s, border-color .15s;
}
.cat-pagination .page-item.active .page-link { background: #111; color: #fff; border-color: #111; }
.cat-pagination .page-item .page-link:hover { background: #B8962E; color: #fff; border-color: #B8962E; }

/* ── CATEGORY LANDING TILES ── */
.cat-landing { padding: 28px 40px; background: #fff; }
.cat-landing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.cat-landing-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  background: #F0EEE9;
  text-decoration: none;
  border-radius: 3px;
}
.cat-landing-tile:hover .cat-landing-overlay { background: rgba(0,0,0,.55); }
.cat-landing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .25s;
  padding: 12px;
  text-align: center;
}
.cat-landing-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.2;
}
.cat-landing-cta {
  font-size: 10px;
  color: #B8962E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media(max-width:991px) {
  .cat-landing { padding: 16px; }
  .cat-landing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:576px) {
  .cat-landing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SUBCATEGORY LINKS IN SIDEBAR ── */
.cat-filter-sublink {
  display: block;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s, padding-left .15s;
}
.cat-filter-sublink:hover { color: #111; padding-left: 4px; }
.cat-filter-sublink.active { color: #B8962E; font-weight: 700; }

/* =============================================
   PAGE NOUVELLES ARRIVÉES — na-*
   ============================================= */
.na-banner {
    background: #F9F8F6;
    padding: 36px 40px 28px;
    border-bottom: 1px solid #eee;
}
.na-banner-inner { max-width: 1400px; margin: 0 auto; }
.na-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #999;
    margin-bottom: 12px;
}
.na-breadcrumb a { color: #999; text-decoration: none; transition: color .2s; }
.na-breadcrumb a:hover { color: #111; }
.na-title { font-size: 28px; font-weight: 700; color: #111; margin: 0 0 4px; letter-spacing: -.3px; }
.na-count { font-size: 13px; color: #777; margin: 0; }

.na-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Sidebar */
.na-sidebar {
    padding: 24px 20px 24px 0;
    border-right: 1px solid #eee;
    position: sticky;
    top: 70px;
    height: fit-content;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    display: none;
}
.na-sidebar--open { display: block; }
.na-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.na-reset {
    font-size: 11px;
    color: #999;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    transition: color .2s;
}
.na-reset:hover { color: #B8962E; }
.na-sidebar-close {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #555;
    line-height: 1;
    margin-left: auto;
    flex-shrink: 0;
}
.na-sidebar-close:hover { color: #111; }

.na-filter-group {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}
.na-filter-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 10px;
    display: block;
}
.na-filter-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    margin-bottom: 8px;
}
.na-filter-radio input[type=radio] { cursor: pointer; accent-color: #111; }
.na-filter-select {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: border-color .2s;
}
.na-filter-select:focus { outline: none; border-color: #111; }
.na-filter-input {
    padding: 8px 10px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 13px;
    transition: border-color .2s;
}
.na-filter-input:focus { outline: none; border-color: #111; }
.na-filter-apply {
    width: 100%;
    padding: 11px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 6px;
    text-align: center;
    display: block;
    text-decoration: none;
}
.na-filter-apply:hover { background: #B8962E; color: #fff; }

/* Main */
.na-main { padding: 24px 0 24px 28px; }
.na-grid-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.na-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid #ddd;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.na-toggle:hover { border-color: #111; }
.na-active-filters { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.na-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.na-tag a { color: #fff; text-decoration: none; font-size: 14px; line-height: 1; }
.na-count-txt { flex: 1; font-size: 12px; color: #777; text-align: right; }

.na-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.na-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    color: #bbb;
    gap: 12px;
}
.na-empty h3 { font-size: 18px; font-weight: 600; color: #333; margin: 0; }
.na-empty p  { font-size: 14px; color: #aaa; margin: 0; }
.na-pagination { display: flex; justify-content: center; margin-top: 16px; }
.na-pagination .pagination { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.na-pagination .page-item .page-link {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #ddd;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    transition: background .15s, color .15s, border-color .15s;
}
.na-pagination .page-item.active .page-link { background: #111; color: #fff; border-color: #111; }
.na-pagination .page-item .page-link:hover { background: #B8962E; color: #fff; border-color: #B8962E; }

/* Responsive */
@media(max-width:1200px) {
    .na-layout { grid-template-columns: 200px 1fr; padding: 0 24px; }
    .na-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:991px) {
    .na-layout { grid-template-columns: 1fr; padding: 0 16px; }
    .na-sidebar {
        display: none;
        position: fixed;
        top: 62px; left: 0;
        width: 100%; height: calc(100vh - 62px);
        background: #fff;
        z-index: 1050;
        padding: 0;
        overflow-y: auto;
        border-right: none;
        box-shadow: 0 4px 24px rgba(0,0,0,.18);
    }
    .na-sidebar--open { display: block; }
    .na-sidebar-head {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
        padding: 16px 20px 14px;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    }
    .na-sidebar-close { display: flex; }
    .na-filter-group { padding: 0 20px 18px; }
    .na-filter-group:first-of-type { padding-top: 4px; }
    .na-filter-apply { margin: 4px 20px 20px; width: calc(100% - 40px); }
    .na-main { padding: 16px 0; }
    .na-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .na-banner { padding: 24px 16px; }
}
@media(max-width:480px) {
    .na-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .na-title { font-size: 22px; }
}

/* ── Home : Shopper par catégorie (sous-cats) ── */
.dys-home-shopcat {
    padding: 40px 0 48px;
    border-bottom: 1px solid #EBEBEB;
    background: #F9F8F6;
}
.dys-home-shopcat:nth-child(even) { background: #fff; }
.dys-home-shopcat-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 52px;
    margin-bottom: 20px;
}
.dys-home-shopcat-wrap {
    position: relative;
    padding: 0 52px;
}
.dys-home-shopcat-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 0 12px;
}
.dys-home-shopcat-track::-webkit-scrollbar { display: none; }
.dys-home-shopcat-track .cat-shopcat-tile {
    flex: 0 0 200px;
    scroll-snap-align: start;
}
@media(max-width:991px) {
    .dys-home-shopcat-head,
    .dys-home-shopcat-wrap { padding-left: 44px; padding-right: 44px; }
}
@media(max-width:576px) {
    .dys-home-shopcat-head { padding: 0 16px; }
    .dys-home-shopcat-wrap { padding: 0 36px; }
    .dys-home-shopcat-track .cat-shopcat-tile { flex: 0 0 140px; }
}

/* =============================================
   CAROUSEL PAR BLOC (3 blocs séparés)
   ============================================= */
.dys-car-block {
    margin-top: 48px;
}
.dys-car-block + .dys-car-block {
    padding-top: 24px;
    border-top: 1px solid #F0F0F0;
}
.dys-car-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}
.dys-car-block-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: -.2px;
}

@media(max-width:768px) {
    .dys-car-block-head { padding: 0 16px; }
    .dys-car-block-title { font-size: 17px; }
}

/* =============================================
   TÉMOIGNAGES — grille 3 colonnes par slide
   ============================================= */
.dys-testi-3grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Desktop/mobile carousel visibility */
.dys-testi-desktop { display: block; }
.dys-testi-mobile  { display: none; }

@media(max-width:991px) {
    .dys-testi-desktop { display: none; }
    .dys-testi-mobile  { display: block; }
}
@media(max-width:768px) {
    .dys-testi-card { padding: 24px; }
    .dys-testi-text { font-size: 13px; }
}

/* =============================================
   FAQ — Bootstrap 4 accordion override premium
   ============================================= */
.dys-faq-heading {
    text-align: center;
    margin-bottom: 48px;
}
.dys-faq-sub {
    font-size: 14px;
    color: #888;
    margin: 10px 0 0;
}

/* Reset Bootstrap card styles inside our accordion */
.dys-accordion {
    border: none !important;
}
.dys-accordion-item {
    border: none !important;
    border-bottom: 1px solid #EBEBEB !important;
    border-radius: 0 !important;
    background: transparent;
}
.dys-accordion-item:first-child {
    border-top: 1px solid #EBEBEB !important;
}
.dys-accordion-header {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}
.dys-accordion-btn {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    text-align: left;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111 !important;
    font-family: inherit !important;
    text-decoration: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: color .2s;
    line-height: 1.4;
}
.dys-accordion-btn:hover { color: #B8962E !important; text-decoration: none !important; }
.dys-accordion-btn:focus { outline: none !important; box-shadow: none !important; }
.dys-accordion-btn.collapsed { color: #111 !important; }
.dys-accordion-btn.collapsed:hover { color: #B8962E !important; }

.dys-accordion-body {
    padding: 4px 0 24px !important;
    font-size: 14px;
    color: #555;
    line-height: 1.85;
}

.dys-acc-icon {
    flex-shrink: 0;
    color: #B8962E;
    transition: transform .3s ease;
}
.dys-accordion-btn[aria-expanded="true"] .dys-acc-icon {
    transform: rotate(180deg);
}
.dys-accordion-btn.collapsed .dys-acc-icon {
    transform: rotate(0deg);
}

@media(max-width:768px) {
    .dys-accordion-btn { font-size: 14px !important; padding: 16px 0 !important; }
    .dys-accordion-body { font-size: 13px; }
}

/* =============================================
   PAGE COLLECTIONS — colp-*
   ============================================= */
/* Breadcrumb bar */
.colp-bar {
    background: #111;
    padding: 28px 40px 32px;
}
.colp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px;
}
.colp-breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.colp-breadcrumb a:hover { color: #B8962E; }
.colp-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -.5px;
}

/* 3 cartes côte à côte */
.colp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 680px;
}
.colp-card {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
}
.colp-card + .colp-card { border-left: none; }

/* Image */
.colp-card-img {
    position: absolute;
    inset: 0;
}
.colp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .65s cubic-bezier(.25,.46,.45,.94);
    filter: brightness(.72);
}
.colp-card:hover .colp-card-img img {
    transform: scale(1.06);
    filter: brightness(.55);
}

/* Overlay gradient */
.colp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    transition: background .35s;
}
.colp-card:hover .colp-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 55%, transparent 100%);
}

/* Contenu */
.colp-card-body {
    padding: 36px 32px;
    width: 100%;
}
.colp-card-sub {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B8962E;
    margin: 0 0 8px;
}
.colp-card-name {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.5px;
    line-height: 1;
}
.colp-card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.colp-card-cats span {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.1);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15);
}
.colp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    border-bottom: 1.5px solid #B8962E;
    padding-bottom: 2px;
    transition: color .2s, gap .25s;
}
.colp-card:hover .colp-card-cta { color: #B8962E; gap: 12px; }

/* Responsive */
@media(max-width:991px) {
    .colp-bar { padding: 20px 24px 24px; }
    .colp-page-title { font-size: 26px; }
    .colp-grid { grid-template-columns: 1fr; height: auto; }
    .colp-card { height: 380px; }
    .colp-card + .colp-card { border-left: none; border-top: none; }
    .colp-card-name { font-size: 30px; }
}
@media(max-width:576px) {
    .colp-card { height: 300px; }
    .colp-card-body { padding: 24px 20px; }
    .colp-card-name { font-size: 26px; }
}

/* ── FILTRE BAR ASOS-STYLE ── */
.cat-fbar {
    background: #fff;
    border-bottom: 1px solid #EBEBEB;
    position: sticky;
    top: 62px;
    z-index: 700;
}
.cat-fbar--with-subnav {
    top: 110px;
}
.cat-fbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 52px;
}
.cat-fbar-count {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    margin-right: 4px;
}
.cat-fbar-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-fbar-pills::-webkit-scrollbar { display: none; }
.cat-fbar-reset {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
}
.cat-fbar-reset:hover { color: #111; }

/* Dropdown filter — flat rectangular, no pill */
.cat-fdrop { position: relative; }
.cat-fdrop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid #D0CEC9;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 2px;
    transition: border-color .2s, color .2s;
}
.cat-fdrop-btn:hover,
.cat-fdrop--open .cat-fdrop-btn { border-color: #666; color: #111; background: transparent; }
.cat-fdrop-btn--active { border-color: #111; color: #111; background: transparent; font-weight: 700; }
.cat-fdrop-btn svg { transition: transform .2s; }
.cat-fdrop--open .cat-fdrop-btn svg { transform: rotate(180deg); }

/* Panel */
.cat-fdrop-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #E0E0E0;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 800;
    border-radius: 4px;
    overflow: hidden;
}
.cat-fdrop--open .cat-fdrop-panel { display: block; }

/* Sort options */
.cat-fdrop-opt {
    display: block;
    width: 100%;
    padding: 11px 16px;
    text-align: left;
    font-size: 13px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.cat-fdrop-opt:hover { background: #F5F5F5; }
.cat-fdrop-opt--active { color: #B8962E; font-weight: 700; background: #FFFBF3; }

/* Size grid */
.cat-fdrop-panel--sizes { padding: 12px; display: none; }
.cat-fdrop--open .cat-fdrop-panel--sizes { display: flex; flex-wrap: wrap; gap: 6px; min-width: 220px; }
.cat-fdrop-size {
    min-width: 44px;
    padding: 8px 10px;
    border: 1.5px solid #E0E0E0;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: border-color .2s, background .2s, color .2s;
}
.cat-fdrop-size:hover { border-color: #111; }
.cat-fdrop-size--active { background: #111; color: #fff; border-color: #111; }

/* Price panel */
.cat-fdrop-panel--price { padding: 16px; display: none; min-width: 240px; }
.cat-fdrop--open .cat-fdrop-panel--price { display: block; }
.cat-fdrop-price-row { display: flex; gap: 10px; margin-bottom: 12px; }
.cat-fdrop-price-field { flex: 1; }
.cat-fdrop-price-field label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #888; margin-bottom: 5px; }
.cat-fdrop-input {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #DDD;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
}
.cat-fdrop-input:focus { border-color: #111; }
.cat-fdrop-apply {
    width: 100%;
    padding: 9px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .2s;
}
.cat-fdrop-apply:hover { background: #B8962E; }

/* Full-width product grid */
.cat-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 40px 48px;
}
.cat-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* ── CATEGORY PAGE RESPONSIVE ── */
@media(max-width:1200px) {
  .cat-body { padding: 24px; }
  .cat-grid-full { grid-template-columns: repeat(3, 1fr); }
  .cat-shopcat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-drops-track { grid-auto-columns: calc((100% - 2 * 16px) / 3); }
  .cat-fbar-inner { padding: 0 24px; }
}
@media(max-width:991px) {
  .cat-hd { padding: 24px 20px 20px; }
  .cat-hd-title { font-size: 26px; }
  .cat-subnav-inner { padding: 0 16px; }
  .cat-subnav-link { padding: 0 14px; font-size: 12px; }
  .cat-shopcat { padding: 28px 0 32px; }
  .cat-shopcat-inner { padding: 0 16px; }
  .cat-shopcat-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .cat-drops { padding: 28px 16px 32px; }
  .cat-drops-wrap { padding: 0 44px; }
  .cat-drops-track { grid-auto-columns: calc((100% - 1 * 16px) / 2); }
  .cat-fbar-inner { padding: 0 16px; }
  .cat-body { padding: 16px; }
  .cat-grid-full { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media(max-width:576px) {
  .cat-hd-title { font-size: 22px; }
  .cat-shopcat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-drops-wrap { padding: 0; }
  .cat-drops-btn { display: none; }
  .cat-drops-track { grid-auto-columns: 72vw; }
  .cat-grid-full { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ══════════════════════════════════════════════════════
   ASOS SIDEBAR LAYOUT
   ══════════════════════════════════════════════════════ */

.cat-asos-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 48px;
    align-items: start;
}

/* ── Sidebar ── */
.cat-asos-sidebar {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    border-right: 1px solid #EBEBEB;
    padding: 0 24px 24px 0;
    scrollbar-width: thin;
    scrollbar-color: #DDD transparent;
    transition: left .3s cubic-bezier(.4,0,.2,1);
}
.cat-asos-sidebar::-webkit-scrollbar { width: 4px; }
.cat-asos-sidebar::-webkit-scrollbar-thumb { background: #DDD; border-radius: 2px; }

.cat-sb-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0 16px;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 4px;
}
.cat-sb-head-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #111;
    flex: 1;
}
.cat-sb-clear {
    font-size: 11px;
    color: #888;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color .2s;
    white-space: nowrap;
}
.cat-sb-clear:hover { color: #B8962E; }
.cat-sb-close-btn {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    align-items: center;
    justify-content: center;
}
.cat-sb-close-btn:hover { color: #111; }

/* Active filter chips */
.cat-sb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid #EBEBEB;
}
.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #F5F0E8;
    border: 1px solid #D4B896;
    color: #7A5522;
    font-size: 11px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: background .15s;
}
.cat-chip:hover { background: #EEE4D0; }

/* Filter sections */
.cat-sf-section {
    border-bottom: 1px solid #EBEBEB;
}
.cat-sf-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: #111;
    cursor: pointer;
    text-align: left;
}
.cat-sf-title:hover { color: #B8962E; }
.cat-sf-chevron { transition: transform .2s; flex-shrink: 0; }
.rot-180 { transform: rotate(180deg); }
.cat-sf-body { padding-bottom: 14px; }

/* Category / type items */
.cat-sf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 4px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    transition: color .15s;
    border-radius: 2px;
}
.cat-sf-item svg { opacity: 0; transition: opacity .15s; flex-shrink: 0; }
.cat-sf-item:hover { color: #111; }
.cat-sf-item:hover svg { opacity: 1; }
.cat-sf-item--active { color: #111; font-weight: 600; }
.cat-sf-item--active svg { opacity: 1; color: #B8962E; }

/* Size grid */
.cat-sf-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cat-sf-size {
    min-width: 42px;
    padding: 7px 8px;
    border: 1.5px solid #E0E0E0;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    transition: border-color .15s, background .15s, color .15s;
}
.cat-sf-size:hover { border-color: #111; }
.cat-sf-size--active { background: #111; color: #fff; border-color: #111; }

/* Color list */
.cat-sf-colors {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cat-sf-color {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    border-radius: 3px;
    transition: background .1s, color .1s;
}
.cat-sf-color:hover { background: #F8F8F8; color: #111; }
.cat-sf-color--active { font-weight: 600; color: #111; background: #F5F5F5; }
.cat-sf-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

/* Price filter */
.cat-sf-price-row { display: flex; gap: 8px; margin-bottom: 10px; }
.cat-sf-price-field { flex: 1; }
.cat-sf-price-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #888;
    margin-bottom: 4px;
}
.cat-sf-input {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #DDD;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
    background: #fff;
}
.cat-sf-input:focus { border-color: #111; }
.cat-sf-apply {
    width: 100%;
    padding: 9px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .2s;
}
.cat-sf-apply:hover { background: #B8962E; }

/* ── Main content area ── */
.cat-asos-main {
    min-width: 0;
    padding: 20px 0 20px 32px;
}

/* Top bar */
.cat-asos-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0 16px;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 24px;
}
.cat-topbar-filter-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1.5px solid #CCC;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    transition: border-color .2s, color .2s;
}
.cat-topbar-filter-btn:hover { border-color: #111; color: #111; }
.cat-topbar-filter-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #B8962E;
    border-radius: 50%;
}
.cat-topbar-count {
    font-size: 13px;
    color: #888;
    flex: 1;
}
.cat-topbar-sort {
    padding: 8px 12px;
    border: 1.5px solid #DDD;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color .2s;
}
.cat-topbar-sort:focus { border-color: #111; }

/* Product grid */
.cat-asos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

/* Empty state */
.cat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: #999;
    text-align: center;
}
.cat-empty h3 { font-size: 18px; font-weight: 600; color: #444; margin: 16px 0 8px; }
.cat-empty p { font-size: 14px; }

/* Mobile overlay — visible uniquement en mode drawer (< 992px) */
.cat-sb-overlay {
    position: fixed;
    top: 62px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.4);
    z-index: 1020;
}
@media (min-width: 992px) {
    .cat-sb-overlay { display: none !important; }
}

/* Pagination wrapper */
.cat-pagination { padding: 16px 0 8px; }

/* ── ASOS Responsive ── */
@media(max-width:1200px) {
    .cat-asos-layout { padding: 0 24px 40px; }
    .cat-asos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:991px) {
    .cat-asos-layout {
        grid-template-columns: 1fr;
        padding: 0 16px 40px;
    }
    .cat-asos-sidebar {
        position: fixed;
        top: 62px;
        left: -300px;
        width: 280px;
        height: calc(100vh - 62px);
        max-height: calc(100vh - 62px);
        background: #fff;
        z-index: 1050;
        box-shadow: 4px 0 20px rgba(0,0,0,.15);
        border-right: none;
        padding: 0;
        overflow-y: auto;
    }
    .cat-asos-sidebar--open { left: 0; }
    .cat-sb-head {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
        padding: 16px 20px 14px;
    }
    .cat-sb-close-btn { display: flex; }
    .cat-sf-section { padding: 0 20px; }
    .cat-sb-chips { padding: 10px 20px; }
    .cat-asos-main { padding: 12px 0; }
    .cat-asos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media(max-width:576px) {
    .cat-asos-layout { padding: 0 12px 32px; }
    .cat-asos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .cat-topbar-count { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE FIX — inner containers & section heads
   Toutes les sections avec padding:0 40px et heads flex space-between
   sans breakpoint mobile causent du horizontal overflow sur petit écran.
   ══════════════════════════════════════════════════════════════════════ */
@media(max-width:767px) {

    /* ── Inner containers: réduction du padding horizontal ── */
    .dys-home-brands-inner,
    .cat-brands-sec-inner,
    .cat-flex-inner,
    .cat-drops-inner,
    .cat-layout { padding-left: 16px; padding-right: 16px; }

    /* ── Section heads: rester en row, réduire titre + bouton ── */
    .dys-home-brands-head,
    .cat-brands-sec-head,
    .cat-flex-head,
    .cat-drops-head { align-items: center; gap: 10px; }

    /* Titre: autorise le shrink */
    .dys-home-brands-head > div,
    .cat-brands-sec-head > div,
    .cat-flex-head > div { flex: 1; min-width: 0; }

    /* Taille du titre réduite */
    .dys-home-brands-head .dys-section-title,
    .cat-brands-sec-title { font-size: 18px; }

    /* Boutons: compact */
    .dys-home-brands-btn,
    .cat-brands-sec-btn {
        font-size: 10px;
        padding: 7px 10px;
        letter-spacing: 0;
        flex-shrink: 0;
        gap: 4px;
    }
    .cat-drops-all { font-size: 11px; flex-shrink: 0; }

    /* ── Cat layout: passer en colonne sur mobile (sidebar cachée) ── */
    .cat-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}
