/* =========================================
   DASUS SHOES - CSS PRINCIPAL
   ========================================= */

/* ===== VARIABLES & RESET ===== */
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #c73652;
  --gold: #c9a96e;
  --gold-light: #f0d9a8;
  --wave: #1dc8f5;
  --wave-hover: #00a8d4;
  --bg: #f8f7f4;
  --bg-white: #ffffff;
  --text: #2d2d2d;
  --text-light: #6c757d;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --navbar-h: 70px;
  --font: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
.section { padding: 80px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.section-header > div, .section-header > h2 { flex: 1; }
.section-subtitle { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 8px; }
.section-title { font-size: 36px; font-weight: 700; color: var(--primary); font-family: var(--font-serif); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,69,96,.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-wave { background: var(--wave); color: #fff; border-color: var(--wave); font-weight: 700; }
.btn-wave:hover { background: var(--wave-hover); border-color: var(--wave-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,200,245,.35); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-danger { background: #dc3545; color: #fff; border-color: #dc3545; }
.btn-danger:hover { background: #b02a37; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-xl { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { width: 36px; height: 36px; border-radius: 8px; padding: 0; justify-content: center; }
.btn-outline-sm { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); border: none; background: none; cursor: pointer; }
.btn-outline-sm:hover { gap: 10px; }
.btn-add-cart { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 10px; background: var(--primary); color: #fff; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; border: none; cursor: pointer; margin-top: 12px; transition: var(--transition); }
.btn-add-cart:hover { background: var(--accent); transform: translateY(-2px); }
.btn-link-danger { background: none; border: none; color: #dc3545; cursor: pointer; font-size: 13px; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.btn-link-danger:hover { color: #b02a37; }
.btn-remove { background: none; border: none; color: #dc3545; cursor: pointer; padding: 8px; border-radius: 6px; transition: var(--transition); }
.btn-remove:hover { background: #fee2e2; }
.btn-update { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: #10b981; color: #fff; border: none; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--primary); height: var(--navbar-h);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  transition: var(--transition);
}
.navbar.scrolled { height: 60px; background: rgba(26,26,46,.97); backdrop-filter: blur(10px); }
.navbar .container { height: 100%; }
.navbar-content { display: flex; align-items: center; height: 100%; gap: 24px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 22px; font-weight: 800; flex-shrink: 0; }
.brand-icon { color: var(--gold); font-size: 20px; }
.brand-text { letter-spacing: 1px; }
.brand-accent { color: var(--gold); }
.navbar-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.navbar-menu > li { position: relative; }
.navbar-menu a, .navbar-menu .nav-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 14px;
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm); transition: var(--transition);
  white-space: nowrap; background: none; border: none; cursor: pointer;
}
.navbar-menu a:hover, .navbar-menu a.active { color: #fff; background: rgba(255,255,255,.1); }
.navbar-menu .cart-badge { background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 20px; min-width: 18px; text-align: center; }
.dropdown-arrow { font-size: 10px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius); padding: 8px;
  min-width: 200px; box-shadow: var(--shadow-xl);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: var(--transition); z-index: 100;
}
.dropdown-right { left: auto; right: 0; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a, .dropdown-menu li button {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  color: var(--text); font-size: 13px; font-weight: 500; border-radius: 8px;
  width: 100%; background: none; border: none; cursor: pointer;
}
.dropdown-menu li a:hover, .dropdown-menu li button:hover { background: var(--bg); color: var(--accent); }
.dropdown-menu .divider { height: 1px; background: var(--border); margin: 6px 0; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon { background: rgba(255,255,255,.1); color: #fff; border: none; cursor: pointer; border-radius: 8px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; transition: var(--transition); position: relative; }
.btn-icon:hover { background: rgba(255,255,255,.2); }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); display: block; }
.search-bar { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.search-bar.open { max-height: 60px; }
.search-form { display: flex; align-items: center; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); margin: 0 0 12px; }
.search-form input { flex: 1; background: none; border: none; color: #fff; padding: 12px 16px; font-size: 14px; outline: none; }
.search-form input::placeholder { color: rgba(255,255,255,.5); }
.search-form button { background: none; border: none; color: rgba(255,255,255,.7); padding: 12px 16px; cursor: pointer; }
body { padding-top: var(--navbar-h); }

/* ===== FLASH MESSAGES ===== */
.flash-messages { position: fixed; top: calc(var(--navbar-h) + 12px); right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.alert { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; animation: slideIn .3s ease; box-shadow: var(--shadow-md); }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.alert ul { margin-left: 4px; }
.alert-close { margin-left: auto; background: none; border: none; font-size: 18px; cursor: pointer; opacity: .6; line-height: 1; padding: 0; }
.alert-close:hover { opacity: 1; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; padding: 48px 0 36px; margin-bottom: 0; }
.page-header-sm { padding: 30px 0 20px; }
.page-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ===== HERO SECTION ===== */
.hero { position: relative; min-height: calc(100vh - var(--navbar-h)); display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--primary) 0%, #0f3460 50%, #533483 100%); padding: 60px 0; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(201,169,110,.15) 0%, transparent 60%); }
.hero .container { position: relative; z-index: 1; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-subtitle { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 20px; }
.hero-title { font-size: clamp(40px, 5vw, 64px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; font-family: var(--font-serif); }
.hero-accent { color: var(--gold); display: block; }
.hero-description { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-img-wrapper { position: relative; }
.hero-shoe-img { width: 100%; max-width: 500px; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); transform: rotate(-3deg); transition: var(--transition); filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }
.hero-shoe-img:hover { transform: rotate(0deg) scale(1.02); }
.hero-badge { position: absolute; background: #fff; border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 600; color: var(--primary); }
.hero-badge i { font-size: 20px; color: var(--accent); }
.hero-badge span { font-size: 12px; line-height: 1.4; }
.hero-badge-1 { top: 20px; left: -30px; }
.hero-badge-2 { bottom: 30px; right: -20px; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.hero-scroll a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; animation: bounce 2s infinite; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-4px); } }

/* ===== FEATURES ===== */
.features { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: var(--radius); transition: var(--transition); }
.feature-card:hover { background: var(--bg); }
.feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent), #ff6b6b); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.feature-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.feature-card p { font-size: 12px; color: var(--text-light); }

/* ===== CATEGORIES ===== */
.categories-section { background: #fff; }
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.category-card { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 16px; background: var(--bg); border-radius: var(--radius); border: 2px solid transparent; transition: var(--transition); cursor: pointer; text-align: center; }
.category-card:hover { border-color: var(--accent); background: #fff; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), #0f3460); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 26px; transition: var(--transition); }
.category-card:hover .category-icon { background: linear-gradient(135deg, var(--accent), #ff6b6b); color: #fff; }
.category-card h3 { font-size: 14px; font-weight: 600; color: var(--primary); }
.category-count { font-size: 12px; color: var(--text-light); background: var(--border); padding: 2px 10px; border-radius: 20px; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--bg); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; z-index: 1; }
.badge-sale { background: var(--accent); color: #fff; }
.badge-new { background: #10b981; color: #fff; }
.badge-low { background: #f59e0b; color: #fff; }
.product-actions { position: absolute; bottom: -60px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,.5)); transition: var(--transition); }
.product-card:hover .product-actions { bottom: 0; }
.action-btn { width: 38px; height: 38px; background: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--primary); font-size: 14px; }
.action-btn:hover { background: var(--accent); color: #fff; transform: scale(1.1); }
.product-info { padding: 16px; }
.product-category { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.product-brand { display: block; font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.product-name a:hover { color: var(--accent); }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.price-current { font-size: 16px; font-weight: 700; color: var(--primary); }
.price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.product-sizes { display: flex; flex-wrap: wrap; gap: 4px; }
.size-tag { font-size: 10px; padding: 2px 7px; border: 1px solid var(--border); border-radius: 4px; color: var(--text-light); }
.size-more { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== PROMO BANNER ===== */
.promo-banner { background: linear-gradient(135deg, var(--accent) 0%, #c73652 100%); padding: 60px 0; overflow: hidden; }
.promo-content { display: flex; align-items: center; justify-content: space-between; }
.promo-text h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 12px; font-family: var(--font-serif); }
.promo-text p { font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 28px; }
.promo-image { font-size: 120px; color: rgba(255,255,255,.15); }

/* ===== CATALOG ===== */
.catalog-section { padding: 40px 0 80px; }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-panel { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); position: sticky; top: calc(var(--navbar-h) + 20px); }
.filter-title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.filter-group { margin-bottom: 24px; }
.filter-group > label:first-child { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.search-input { position: relative; }
.search-input input { width: 100%; padding: 10px 12px 10px 36px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; transition: var(--transition); }
.search-input input:focus { outline: none; border-color: var(--accent); }
.search-input i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 12px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: 13px; color: var(--text); }
.checkbox-label input { display: none; }
.checkmark { width: 16px; height: 16px; border: 2px solid var(--border); border-radius: 4px; flex-shrink: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.checkbox-label input:checked ~ .checkmark { background: var(--accent); border-color: var(--accent); }
.checkbox-label input:checked ~ .checkmark::after { content: '✓'; color: #fff; font-size: 10px; font-weight: 700; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { flex: 1; padding: 8px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; text-align: center; }
.form-select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; background: #fff; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; }
.form-select:focus { outline: none; border-color: var(--accent); }
.filter-actions { display: flex; flex-direction: column; gap: 10px; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.results-count { font-size: 14px; color: var(--text-light); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 36px; height: 36px; border: 1px solid var(--border); background: #fff; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 14px; transition: var(--transition); }
.view-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filter-tag { display: inline-flex; align-items: center; gap: 6px; background: #e5e7eb; border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 500; }
.filter-tag a { color: var(--text); font-size: 11px; }
.pagination-wrapper { margin-top: 32px; display: flex; justify-content: center; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 60px; color: var(--border); margin-bottom: 20px; }
.empty-state h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.empty-state p { color: var(--text-light); margin-bottom: 24px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: 40px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg); aspect-ratio: 1; margin-bottom: 12px; }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #fff; font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 8px; }
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; }
.thumb { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; }
.thumb.active, .thumb:hover { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-header { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.product-category-tag { font-size: 12px; font-weight: 600; color: var(--text-light); background: var(--bg); padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.product-brand-tag { font-size: 12px; font-weight: 700; color: var(--accent); background: #fee2e8; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.product-title { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 12px; font-family: var(--font-serif); line-height: 1.3; }
.product-short-desc { font-size: 15px; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.product-price-section { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.detail-price-current { font-size: 36px; font-weight: 800; color: var(--primary); }
.detail-price-old { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.discount-badge { font-size: 13px; font-weight: 700; color: #fff; background: #10b981; padding: 4px 12px; border-radius: 20px; }
.stock-info { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 24px; padding: 10px 16px; border-radius: var(--radius-sm); }
.in-stock { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.out-stock { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.variant-section { margin-bottom: 20px; }
.variant-label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.color-selector { display: flex; flex-wrap: wrap; gap: 8px; }
.color-btn { padding: 8px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 13px; font-weight: 500; background: #fff; transition: var(--transition); }
.color-btn.active, .color-btn:hover { border-color: var(--accent); background: #fee2e8; color: var(--accent); }
.size-selector { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.size-btn { width: 52px; height: 52px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 14px; font-weight: 600; background: #fff; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.size-btn:hover { border-color: var(--primary); background: var(--bg); }
.size-btn.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.size-guide-link { font-size: 12px; color: var(--accent); }
.quantity-section { margin-bottom: 24px; }
.quantity-selector { display: flex; align-items: center; gap: 0; border: 2px solid var(--border); border-radius: var(--radius-sm); width: fit-content; overflow: hidden; }
.quantity-selector.qty-sm { border-width: 1px; }
.qty-btn { width: 44px; height: 44px; background: var(--bg); border: none; cursor: pointer; font-size: 14px; color: var(--primary); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--primary); color: #fff; }
.quantity-selector input { width: 60px; height: 44px; border: none; text-align: center; font-size: 16px; font-weight: 700; background: #fff; outline: none; }
.qty-sm .qty-btn { width: 36px; height: 36px; font-size: 12px; }
.qty-sm input { width: 50px; height: 36px; font-size: 14px; }
.product-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.btn-add-to-cart { flex: 1; }
.product-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; padding: 16px; background: var(--bg); border-radius: var(--radius-sm); }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); font-weight: 500; }
.feature-item i { color: var(--accent); }
.share-section { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.share-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: var(--transition); }
.share-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== PRODUCT TABS ===== */
.product-tabs { margin-bottom: 60px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 32px; gap: 4px; }
.tab-btn { padding: 12px 24px; border: none; background: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-light); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.tab-btn.active, .tab-btn:hover { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.description-content { font-size: 15px; line-height: 1.9; color: var(--text-light); }
.details-table { width: 100%; border-collapse: collapse; }
.details-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.details-table tr:last-child td { border-bottom: none; }
.shipping-info { display: flex; flex-direction: column; gap: 20px; }
.shipping-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--bg); border-radius: var(--radius-sm); }
.shipping-item i { font-size: 24px; color: var(--accent); margin-top: 2px; }
.shipping-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.shipping-item p { font-size: 13px; color: var(--text-light); }
.related-products { margin-top: 60px; }

/* ===== CART ===== */
.cart-section { padding: 40px 0 80px; }
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart-icon { width: 120px; height: 120px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--border); margin: 0 auto 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.cart-items-panel { display: flex; flex-direction: column; gap: 16px; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 2px solid var(--border); margin-bottom: 4px; }
.cart-header h2 { font-size: 20px; font-weight: 700; }
.cart-item { background: #fff; border-radius: var(--radius); padding: 20px; display: flex; gap: 20px; border: 1px solid var(--border); transition: var(--transition); }
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item-img { width: 110px; height: 110px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--bg); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; }
.cart-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: auto; gap: 12px; }
.cart-item-brand { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.cart-item-name { font-size: 16px; font-weight: 600; color: var(--primary); }
.cart-item-name a:hover { color: var(--accent); }
.cart-item-variants { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.variant-tag { display: flex; align-items: center; gap: 4px; font-size: 12px; background: var(--bg); padding: 3px 8px; border-radius: 4px; color: var(--text-light); }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--primary); flex-shrink: 0; }
.cart-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); gap: 12px; flex-wrap: wrap; }
.qty-form { display: flex; align-items: center; gap: 10px; }
.cart-item-subtotal { font-size: 13px; color: var(--text-light); margin-left: auto; }
.cart-continue { margin-top: 8px; }
.summary-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.summary-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.summary-lines { display: flex; flex-direction: column; gap: 12px; padding-bottom: 16px; border-bottom: 2px solid var(--border); margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; }
.summary-line .text-success { color: #10b981; }
.summary-note { font-size: 12px; background: #fef3c7; color: #92400e; padding: 8px 12px; border-radius: 6px; display: flex; align-items: center; gap: 8px; }
.summary-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; padding-top: 4px; }
.total-amount { font-size: 20px; color: var(--accent); }
.summary-actions { margin-bottom: 20px; }
.payment-icons { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.summary-guarantees { display: flex; flex-direction: column; gap: 8px; }
.guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); }
.guarantee-item i { color: #10b981; }
.coupon-card { background: #fff; border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); margin-top: 16px; }
.coupon-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.coupon-input { display: flex; gap: 8px; }
.coupon-input input { flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; }
.coupon-input input:focus { outline: none; border-color: var(--accent); }

/* ===== CHECKOUT ===== */
.checkout-section { padding: 40px 0 80px; }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--text-muted); }
.step.active .step-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.step.completed .step-num { background: #10b981; border-color: #10b981; color: #fff; }
.step-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.step.active .step-label { color: var(--accent); }
.step.completed .step-label { color: #10b981; }
.step-line { flex: 1; height: 2px; background: var(--border); max-width: 100px; margin: 0 4px; margin-bottom: 20px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.form-section { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); margin-bottom: 20px; }
.form-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--primary); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group label small { font-weight: 400; color: var(--text-muted); }
.input-wrapper { position: relative; }
.input-wrapper i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; pointer-events: none; }
.input-wrapper input, .input-wrapper textarea, .input-wrapper select { width: 100%; padding: 12px 14px 12px 42px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; transition: var(--transition); background: #fff; }
.input-wrapper textarea { padding-top: 14px; resize: vertical; }
.input-wrapper input:focus, .input-wrapper textarea:focus, .input-wrapper select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,69,96,.1); }
.form-control { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,69,96,.1); }
.field-error { font-size: 12px; color: #dc3545; display: flex; align-items: center; gap: 4px; }
.form-check { margin-bottom: 16px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.payment-option { cursor: pointer; }
.payment-option input { display: none; }
.payment-option-content { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); }
.payment-option.active .payment-option-content { border-color: var(--wave); background: #e8fbff; }
.payment-option-icon { width: 44px; height: 44px; background: var(--wave); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.payment-option-info strong { display: block; font-size: 15px; color: var(--primary); }
.payment-option-info small { font-size: 12px; color: var(--text-light); }
.payment-option-check { margin-left: auto; color: var(--wave); font-size: 20px; }
.wave-info { display: flex; gap: 14px; background: #f0fbff; border: 1px solid #b3e8fc; border-radius: var(--radius-sm); padding: 16px; }
.wave-info-icon { font-size: 20px; color: var(--wave); flex-shrink: 0; margin-top: 2px; }
.wave-info ol { margin-left: 16px; font-size: 13px; color: var(--text-light); }
.wave-info ol li { margin-bottom: 4px; }
.checkout-submit { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.wave-amount { margin-left: auto; font-size: 18px; font-weight: 800; background: rgba(255,255,255,.2); padding: 4px 12px; border-radius: 20px; }
.checkout-secure { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sticky-summary { position: sticky; top: calc(var(--navbar-h) + 20px); }
.order-items-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.order-item { display: flex; align-items: center; gap: 12px; }
.order-item-img { position: relative; width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--bg); }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-qty { position: absolute; top: -6px; right: -6px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.order-item-details { flex: 1; }
.order-item-name { display: block; font-size: 13px; font-weight: 600; color: var(--primary); }
.order-item-variant { font-size: 11px; color: var(--text-muted); }
.order-item-total { font-size: 14px; font-weight: 700; color: var(--primary); flex-shrink: 0; }

/* ===== CONFIRMATION ===== */
.confirmation-section { padding: 60px 0; background: var(--bg); min-height: 80vh; }
.confirmation-card { max-width: 900px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.confirmation-icon { display: flex; justify-content: center; padding: 48px 0 24px; background: linear-gradient(135deg, var(--primary), #0f3460); }
.success-circle { width: 100px; height: 100px; background: #10b981; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: #fff; box-shadow: 0 0 0 20px rgba(16,185,129,.2); animation: pop .5s ease; }
@keyframes pop { 0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } }
.confirmation-header { text-align: center; padding: 32px; background: linear-gradient(135deg, var(--primary), #0f3460); color: #fff; }
.confirmation-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; font-family: var(--font-serif); }
.confirmation-sub { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 20px; }
.order-number-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); padding: 10px 20px; border-radius: 30px; font-size: 14px; }
.confirmation-body { padding: 40px; }
.confirmation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.conf-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--primary); padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.conf-items { display: flex; flex-direction: column; gap: 10px; }
.conf-item { display: flex; align-items: center; gap: 12px; padding: 10px; background: var(--bg); border-radius: var(--radius-sm); }
.conf-item-info { flex: 1; }
.conf-item-info strong { display: block; font-size: 14px; }
.conf-item-info span { font-size: 12px; color: var(--text-light); }
.conf-item-qty { font-size: 13px; color: var(--text-muted); }
.conf-item-price { font-size: 14px; font-weight: 700; }
.conf-total { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); }
.conf-total-line { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.conf-total-main { font-weight: 700; font-size: 16px; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 4px; }
.conf-address p { font-size: 14px; color: var(--text-light); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.conf-address i { color: var(--accent); width: 16px; }
.conf-status { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.status-item { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.wave-payment-section { margin-bottom: 32px; }
.wave-payment-card { display: flex; align-items: center; gap: 24px; background: linear-gradient(135deg, #0b4f6c, #01baef); border-radius: var(--radius); padding: 28px; flex-wrap: wrap; }
.wave-icon { font-size: 48px; color: #fff; opacity: .8; }
.wave-content { flex: 1; }
.wave-content h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.wave-content p { font-size: 14px; color: rgba(255,255,255,.8); }
.wave-content strong { color: #fff; font-size: 18px; }
.payment-instructions { background: #f8f9ff; border-radius: var(--radius-sm); padding: 24px; margin-bottom: 32px; }
.payment-instructions h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--primary); }
.payment-instructions ol { margin-left: 20px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--text-light); }
.contact-support { margin-top: 16px; font-size: 13px; color: var(--text-muted); background: #fff; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.confirmation-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-processing { background: #dbeafe; color: #1e40af; }
.badge-shipped { background: #d1fae5; color: #065f46; }
.badge-delivered { background: #dcfce7; color: #15803d; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-unpaid     { background: #fee2e2; color: #991b1b; }
.badge-verifying  { background: #fef9c3; color: #92400e; }
.badge-paid       { background: #dcfce7; color: #15803d; }
.badge-refunded   { background: #f3e8ff; color: #7c3aed; }
.badge-active { background: #dcfce7; color: #15803d; }
.badge-inactive { background: #f1f5f9; color: #64748b; }
.badge-neutral { background: #f1f5f9; color: #475569; }

/* ===== AUTH ===== */
.auth-section { min-height: 85vh; display: flex; align-items: center; padding: 60px 0; background: linear-gradient(135deg, var(--bg) 0%, #e5e7f0 100%); }
.auth-card { max-width: 440px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-xl); }
.auth-card-lg { max-width: 560px; }
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-logo { display: inline-flex; align-items: center; gap: 8px; font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.auth-logo span { color: var(--accent); }
.auth-header h1 { font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.auth-header p { font-size: 14px; color: var(--text-light); }
.auth-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.toggle-password { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0; }
.auth-footer { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.auth-footer p { font-size: 14px; color: var(--text-light); }
.auth-footer a { color: var(--accent); font-weight: 600; }
.back-link { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.back-link:hover { color: var(--primary); }
.toggle-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--text); margin-bottom: 12px; }
.toggle-label input { display: none; }
.toggle-switch { width: 44px; height: 24px; background: var(--border); border-radius: 12px; position: relative; flex-shrink: 0; transition: var(--transition); }
.toggle-switch::after { content: ''; position: absolute; width: 18px; height: 18px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.toggle-label input:checked ~ .toggle-switch { background: var(--accent); }
.toggle-label input:checked ~ .toggle-switch::after { left: 23px; }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-logo i { color: var(--gold); }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-contact i { color: var(--gold); width: 16px; }
.payment-methods { margin-top: 20px; display: flex; align-items: center; gap: 10px; }
.payment-methods span { font-size: 12px; color: rgba(255,255,255,.5); }
.payment-logo { height: 24px; filter: brightness(0) invert(1); opacity: .7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--accent); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow-md); transition: var(--transition); opacity: 0; visibility: hidden; z-index: 99; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-success { color: #10b981; }
.text-danger { color: #dc3545; }
.text-muted { color: var(--text-muted); }
.text-warning { color: #f59e0b; }

/* ===== CUSTOM PAGINATION ===== */
.pagination { display: flex; gap: 4px; justify-content: center; align-items: center; flex-wrap: wrap; }
.pagination .page-item .page-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text); background: #fff; border: 1px solid var(--border); transition: var(--transition); }
.pagination .page-item.active .page-link { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination .page-item .page-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .navbar-menu { display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 20px; gap: 4px; max-height: calc(100vh - var(--navbar-h)); overflow-y: auto; }
  .navbar-menu.open { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.05); border-radius: 8px; margin-top: 4px; }
  .dropdown-menu li a { color: rgba(255,255,255,.7); }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-title { font-size: 28px; }
  .section { padding: 60px 0; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .confirmation-grid { grid-template-columns: 1fr; }
  .wave-payment-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .auth-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ===========================================
   NEW COMPONENTS - PHASE 2
   =========================================== */

/* ===== PROMO BAR ===== */
.promo-bar {
  background: linear-gradient(90deg, var(--primary), #2d2d5e);
  color: #fff;
  text-align: center;
  padding: 10px 48px 10px 16px;
  font-size: 13px;
  position: relative;
  z-index: 1001;
}
.promo-bar-content { display: flex; align-items: center; justify-content: center; gap: 10px; }
.promo-bar-content i { color: var(--gold); font-size: 11px; }
.promo-bar-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.7); font-size: 18px;
  cursor: pointer; line-height: 1; padding: 4px 8px;
}
.promo-bar-close:hover { color: #fff; }

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; display: flex; flex-direction: column; gap: 10px;
  align-items: center; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  border-radius: var(--radius); background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 500; box-shadow: var(--shadow-xl);
  min-width: 280px; max-width: 420px; pointer-events: all;
  opacity: 0; transform: translateY(16px); transition: all .3s cubic-bezier(.4,0,.2,1);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { background: #065f46; border-left: 4px solid #10b981; }
.toast-error   { background: #7f1d1d; border-left: 4px solid #ef4444; }
.toast-info    { background: #1e3a5f; border-left: 4px solid #3b82f6; }
.toast-warning { background: #78350f; border-left: 4px solid #f59e0b; }
.toast i { font-size: 16px; flex-shrink: 0; }
.toast span { flex: 1; line-height: 1.4; }
.toast-close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 18px; cursor: pointer; padding: 0 0 0 8px; line-height: 1; flex-shrink: 0;
}
.toast-close:hover { color: #fff; }

/* ===== QUICK VIEW MODAL ===== */
.qv-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; }
.qv-modal.open { display: flex; }
.qv-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); }
.qv-container {
  position: relative; z-index: 1; background: var(--bg-white);
  border-radius: var(--radius-lg); width: 90%; max-width: 860px;
  max-height: 90vh; overflow-y: auto;
  animation: qvIn .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-xl);
}
@keyframes qvIn { from { opacity: 0; transform: scale(.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.qv-close {
  position: sticky; top: 12px; float: right; margin: 12px 12px 0 0;
  background: rgba(0,0,0,.08); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2;
}
.qv-close:hover { background: var(--accent); color: #fff; }
.qv-loading { padding: 80px; text-align: center; font-size: 32px; color: var(--accent); }
.qv-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.qv-gallery { position: relative; background: var(--bg); border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.qv-gallery img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.gallery-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.qv-info { padding: 32px; }
.qv-header { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.product-category-tag, .product-brand-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 20px; background: var(--bg); color: var(--text-light);
}
.qv-title { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 8px; font-family: var(--font-serif); }
.qv-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.qv-price { display: flex; align-items: center; gap: 10px; }
.qv-price-current { font-size: 24px; font-weight: 800; color: var(--accent); }
.qv-price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.qv-variant { margin-top: 16px; }
.qv-variant label { font-size: 13px; font-weight: 600; color: var(--text-light); }
.qv-form .color-btn, .qv-form .size-btn {
  padding: 6px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-white); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: var(--transition); margin: 4px 4px 0 0;
}
.qv-form .color-btn.active, .qv-form .size-btn.active {
  border-color: var(--accent); background: var(--accent); color: #fff;
}
.stock-info { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.stock-info.in-stock { color: #10b981; }
.stock-info.out-stock { color: #ef4444; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); }
.feature-item i { color: var(--accent); font-size: 14px; }
@media (max-width: 640px) {
  .qv-inner { grid-template-columns: 1fr; }
  .qv-gallery { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .qv-gallery img { min-height: 220px; }
  .qv-info { padding: 20px; }
  .qv-container { max-width: 100%; max-height: 100%; border-radius: 0; width: 100%; }
}

/* ===== LIVE SEARCH DROPDOWN ===== */
.search-dropdown {
  position: absolute; top: 100%; left: 0; right: 60px;
  background: var(--bg-white); border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); z-index: 100; overflow: hidden;
  border: 1px solid var(--border); border-top: none; display: none;
}
.search-result-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  color: var(--text); transition: background .15s;
}
.search-result-item:hover, .search-result-item.focused { background: var(--bg); }
.search-result-item img { width: 44px; height: 44px; border-radius: var(--radius-sm); object-fit: cover; }
.search-result-name { display: block; font-size: 14px; font-weight: 500; }
.search-result-price { font-size: 13px; color: var(--accent); font-weight: 600; }
.search-loading, .search-no-result { padding: 20px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ===== DARK MODE ===== */
html.dark { --bg: #111827; --bg-white: #1f2937; --text: #f3f4f6; --text-light: #9ca3af; --border: #374151; --primary: #c9a96e; --primary-light: #1f2937; --shadow-md: 0 4px 16px rgba(0,0,0,.4); --shadow-lg: 0 8px 32px rgba(0,0,0,.5); }
html.dark body { background: #111827; color: #f3f4f6; }
html.dark .navbar { background: #1f2937; }
html.dark .navbar.scrolled { background: rgba(31,41,55,.97); }
html.dark .footer { background: #0f172a; }
html.dark .product-card, html.dark .admin-card, html.dark .feature-card { background: #1f2937; border-color: #374151; }
html.dark .auth-card, html.dark .account-card { background: #1f2937; }
html.dark input, html.dark select, html.dark textarea { background: #374151; border-color: #4b5563; color: #f3f4f6; }
html.dark .qv-container { background: #1f2937; }
html.dark .qv-gallery { background: #111827; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 88px; right: 24px; z-index: 800;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,.55); }
.whatsapp-tooltip {
  position: absolute; right: 64px; white-space: nowrap;
  background: #1f2937; color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 20px; opacity: 0; transform: translateX(8px);
  transition: all .25s; pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ===== ACCOUNT PAGE ===== */
.account-section { padding: 40px 0 80px; }
.account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.account-sidebar { position: sticky; top: 90px; }
.account-profile-card { background: var(--bg-white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.account-avatar { width: 72px; height: 72px; background: linear-gradient(135deg, var(--accent), var(--primary)); color: #fff; border-radius: 50%; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.account-name { font-size: 16px; font-weight: 700; color: var(--primary); }
.account-email { font-size: 13px; color: var(--text-muted); }
.account-nav { background: var(--bg-white); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow-sm); }
.account-nav-link {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  color: var(--text); transition: var(--transition); width: 100%; border: none;
  background: none; cursor: pointer; text-align: left;
}
.account-nav-link:hover { background: var(--bg); color: var(--accent); }
.account-nav-link.active { background: var(--accent); color: #fff; }
.account-nav-link i { width: 16px; text-align: center; }
.account-nav-badge { margin-left: auto; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.account-nav-link.active .account-nav-badge { background: rgba(255,255,255,.25); }
.account-nav-link-danger { color: #dc3545 !important; }
.account-nav-link-danger:hover { background: #fee2e2 !important; }
.account-tab { display: none; }
.account-tab.active { display: block; }
.account-card { background: var(--bg-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 24px; }
.account-card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.account-card-header h2 { font-size: 18px; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.account-form { padding: 24px; }
.account-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.account-form .form-group { margin-bottom: 0; }
.account-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 8px; }
.account-form .input-wrapper { position: relative; }
.account-form .input-wrapper i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; }
.account-form .input-wrapper input, .account-form .input-wrapper select {
  width: 100%; padding: 10px 12px 10px 36px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: var(--bg);
  transition: var(--transition);
}
.account-form .input-wrapper input:focus, .account-form .input-wrapper select:focus { border-color: var(--accent); outline: none; background: var(--bg-white); }
.account-form .input-wrapper input:disabled { opacity: .6; cursor: not-allowed; }
.field-error { font-size: 12px; color: #ef4444; display: block; margin-top: 4px; }
.orders-list { padding: 16px 24px; display: flex; flex-direction: column; gap: 16px; }
.order-card { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--bg); flex-wrap: wrap; gap: 8px; }
.order-ref { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--primary); }
.order-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.order-date { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.order-card-body { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
.order-items-preview { flex: 1; }
.order-item-preview { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 4px; }
.item-name { font-weight: 500; }
.item-size, .item-qty { color: var(--text-muted); font-size: 12px; }
.order-total { font-size: 16px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.order-card-footer { padding: 10px 16px; background: var(--bg); border-top: 1px solid var(--border); }
.empty-state { text-align: center; color: var(--text-muted); }
.empty-state i { font-size: 48px; margin-bottom: 12px; opacity: .4; }
.empty-state h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
@media (max-width: 768px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-form .form-grid-2 { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); opacity: 0; transform: translateY(20px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--primary); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d5e 100%);
  padding: 72px 0;
}
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-text h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.newsletter-text p { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; }
.newsletter-input-group { display: flex; gap: 0; border-radius: var(--radius-sm); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
.newsletter-input-group input {
  flex: 1; padding: 16px 20px; border: none; font-size: 14px;
  color: var(--text); background: transparent; outline: none;
}
.newsletter-input-group .btn { border-radius: 0; flex-shrink: 0; white-space: nowrap; }
.newsletter-privacy { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-input-group { flex-direction: column; }
  .newsletter-input-group .btn { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
}

/* ===== BADGES (status) ===== */
.badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.badge-pending    { background: #fef3c7; color: #92400e; }
.badge-processing { background: #dbeafe; color: #1e40af; }
.badge-shipped    { background: #ede9fe; color: #5b21b6; }
.badge-delivered  { background: #d1fae5; color: #065f46; }
.badge-cancelled  { background: #fee2e2; color: #991b1b; }
.badge-paid       { background: #d1fae5; color: #065f46; }
.badge-unpaid     { background: #fee2e2; color: #991b1b; }
.badge-verifying  { background: #fef9c3; color: #92400e; }

/* ===== ANIMATE ON SCROLL ===== */
.animate-on-scroll { opacity: 0; transform: translateY(20px); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }

/* ===== RESPONSIVE MOBILE AMÉLIORÉ ===== */
@media (max-width: 768px) {
  /* Hero moins haut sur mobile */
  .hero { min-height: auto; padding: 48px 0 60px; }
  .hero-title { font-size: 36px; }
  .hero-description { font-size: 14px; margin-bottom: 24px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 22px; }

  /* Promo banner */
  .promo-content { flex-direction: column; text-align: center; gap: 24px; }
  .promo-text h2 { font-size: 26px; }
  .promo-text p { font-size: 15px; }
  .promo-image { font-size: 60px; }

  /* Section */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  /* Page header */
  .page-header h1 { font-size: 24px; }

  /* Feature cards : 1 colonne sur petit écran */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 16px; gap: 12px; }
  .feature-icon { width: 42px; height: 42px; font-size: 18px; flex-shrink: 0; }
  .feature-card h3 { font-size: 13px; }
  .feature-card p { font-size: 11px; }

  /* Produits */
  .product-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .price-current { font-size: 14px; }

  /* Flash messages */
  .flash-messages { right: 12px; left: 12px; max-width: 100%; }
}

@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 14px; }

  /* Hero */
  .hero { padding: 40px 0 50px; }
  .hero-title { font-size: 30px; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Features : 1 colonne sur très petit écran */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { flex-direction: row; }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 18px 10px; gap: 8px; }
  .category-icon { width: 50px; height: 50px; font-size: 20px; }
  .category-card h3 { font-size: 13px; }

  /* Produits */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 12px; }
  .size-tag { font-size: 9px; padding: 2px 5px; }

  /* Promo banner */
  .promo-banner { padding: 40px 0; }
  .promo-text h2 { font-size: 22px; }
  .promo-image { display: none; }

  /* Sections */
  .section { padding: 36px 0; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 11px; letter-spacing: 2px; }

  /* Newsletter */
  .newsletter-section { padding: 48px 0; }
  .newsletter-text h2 { font-size: 22px; }
  .newsletter-text p { font-size: 13px; }

  /* Témoignages */
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 13px; }

  /* Toasts */
  #toast-container { bottom: 16px; left: 12px; right: 12px; transform: none; }
  .toast { min-width: auto; width: 100%; }
}

}
