/* ============================================
   LOUNIS E-COMMERCE - MAIN STYLESHEET
   ============================================ */

:root {
  --primary: #1a1a2e;
  --accent: #e63946;
  --accent-hover: #c1121f;
  --gold: #f4a261;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border: #e9ecef;
  --white: #ffffff;
  --dark: #212529;
  --success: #2d6a4f;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  direction: ltr;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font); }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; border: none;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230,57,70,0.35); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #2d2d4e; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-top {
  background: var(--primary);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.85); }
.header-top a:hover { color: var(--gold); }

.header-main { padding: 16px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px; background: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
}
.logo-text { font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.logo-text span { color: var(--accent); }

.search-bar { flex: 1; max-width: 500px; position: relative; }
.search-bar input {
  width: 100%; padding: 12px 50px 12px 20px;
  border: 2px solid var(--border); border-radius: 50px;
  font-size: 14px; transition: var(--transition); background: var(--light);
}
.search-bar input:focus { outline: none; border-color: var(--accent); background: #fff; }
.search-bar button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; background: var(--accent); border: none;
  border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.action-btn {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 50px; border: 2px solid var(--border);
  background: transparent; cursor: pointer; font-family: var(--font);
  font-size: 14px; font-weight: 600; color: var(--dark);
  transition: var(--transition); text-decoration: none;
}
.action-btn:hover { border-color: var(--accent); color: var(--accent); }
.action-btn.cart-btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.action-btn.cart-btn:hover { background: var(--accent-hover); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--primary); color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── NAVBAR ── */
.navbar { background: var(--primary); }
.navbar .container { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 14px 18px; color: rgba(255,255,255,0.9);
  font-size: 14px; font-weight: 500; transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 200px;
  box-shadow: var(--shadow-hover); border-radius: var(--radius);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); z-index: 999;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 18px; color: var(--dark);
  font-size: 14px; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--accent); background: var(--light); padding-left: 24px; }

.nav-mobile-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 24px; cursor: pointer; padding: 14px;
}

/* ── HERO SLIDER ── */
.hero { position: relative; overflow: hidden; }
.slider-wrapper { position: relative; }
.slide {
  display: none; position: relative;
  min-height: 520px; align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d60 100%);
}
.slide.active { display: flex; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.slide-content {
  position: relative; z-index: 2;
  width: 50%; padding: 60px;
  animation: slideIn 0.6s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.slide-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--gold); color: var(--primary);
  border-radius: 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.slide-title { font-size: clamp(28px, 4vw, 52px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.slide-title em { color: var(--accent); font-style: normal; }
.slide-desc { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 420px; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4); border-radius: 50%;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(4px); z-index: 10;
}
.slider-nav:hover { background: var(--accent); border-color: var(--accent); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* ── SECTION HEADER ── */
.section { padding: 60px 0; }
.section-alt { background: var(--light); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; padding: 4px 16px;
  background: rgba(230,57,70,0.1); color: var(--accent);
  border-radius: 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--primary); }
.section-title span { color: var(--accent); }
.section-line {
  width: 60px; height: 4px; background: var(--accent);
  border-radius: 2px; margin: 16px auto 0;
}

/* ── CATEGORY GRID ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.cat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  border: 2px solid var(--border); transition: var(--transition);
  cursor: pointer; text-decoration: none; color: var(--dark);
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-icon { font-size: 36px; margin-bottom: 10px; }
.cat-name { font-size: 14px; font-weight: 600; }
.cat-count { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); position: relative;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.badge {
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.badge-sale { background: var(--accent); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-featured { background: var(--gold); color: var(--primary); }

.product-img-wrap { position: relative; overflow: hidden; height: 220px; background: var(--light); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-actions {
  position: absolute; bottom: -50px; left: 0; right: 0;
  display: flex; gap: 8px; padding: 12px;
  transition: var(--transition); background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.product-card:hover .product-actions { bottom: 0; }
.product-action-btn {
  flex: 1; padding: 8px; background: #fff; border: none;
  border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--dark); transition: var(--transition); text-align: center;
}
.product-action-btn:hover { background: var(--accent); color: #fff; }

.product-body { padding: 16px; }
.product-cat { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.product-name { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.product-name a:hover { color: var(--accent); }
.product-pricing { display: flex; align-items: center; gap: 10px; }
.product-price { font-size: 18px; font-weight: 800; color: var(--accent); }
.product-old-price { font-size: 14px; color: var(--gray); text-decoration: line-through; }
.product-discount { font-size: 12px; background: rgba(230,57,70,0.1); color: var(--accent); padding: 2px 8px; border-radius: 20px; font-weight: 600; }

/* ── FEATURES BAR ── */
.features-bar { background: var(--primary); padding: 32px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feature-item { display: flex; align-items: center; gap: 16px; color: #fff; }
.feature-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.feature-text h4 { font-size: 15px; font-weight: 600; }
.feature-text p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, var(--accent), #c1121f);
  padding: 48px; border-radius: 16px; text-align: center; color: #fff;
}
.promo-banner h2 { font-size: clamp(24px, 3vw, 42px); font-weight: 900; margin-bottom: 8px; }
.promo-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 24px; }

/* ── PRODUCT PAGE ── */
.product-detail { padding: 48px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.main-image { border-radius: var(--radius); overflow: hidden; height: 450px; background: var(--light); margin-bottom: 12px; }
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.thumb { height: 80px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.thumb:hover, .thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info .breadcrumb { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.product-info .breadcrumb a:hover { color: var(--accent); }
.product-info h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.price-block { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.current-price { font-size: 32px; font-weight: 900; color: var(--accent); }
.old-price { font-size: 20px; color: var(--gray); text-decoration: line-through; }
.save-badge { background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 700; }

.stock-status { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 600; }
.in-stock { color: var(--success); }
.out-of-stock { color: var(--accent); }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 2px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-btn { width: 42px; height: 42px; background: none; border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--accent); color: #fff; }
.qty-input { width: 60px; height: 42px; border: none; text-align: center; font-size: 16px; font-weight: 700; font-family: var(--font); }

.add-cart-row { display: flex; gap: 12px; margin-bottom: 28px; }

.product-meta { border-top: 1px solid var(--border); padding-top: 20px; }
.meta-row { display: flex; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.meta-label { color: var(--gray); min-width: 100px; }
.meta-value { font-weight: 600; }

/* ── CART PAGE ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--light); padding: 14px 16px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.cart-product-info h4 { font-size: 14px; font-weight: 600; }
.cart-product-info p { font-size: 13px; color: var(--gray); }
.remove-btn { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 18px; transition: var(--transition); }
.remove-btn:hover { color: var(--accent); }

.order-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 100px; }
.order-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-total { font-size: 18px; font-weight: 800; border-top: 2px solid var(--border); padding-top: 12px; margin-top: 12px; }
.cod-badge { background: rgba(45,106,79,0.1); color: var(--success); border: 1px solid rgba(45,106,79,0.3); border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; margin: 16px 0; }

/* ── CHECKOUT ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.form-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-control {
  padding: 12px 16px; border: 2px solid var(--border);
  border-radius: 10px; font-size: 14px; font-family: var(--font);
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── FLASH MESSAGES ── */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.alert-success { background: rgba(45,106,79,0.1); color: var(--success); border: 1px solid rgba(45,106,79,0.3); }
.alert-error { background: rgba(230,57,70,0.1); color: var(--accent); border: 1px solid rgba(230,57,70,0.3); }

/* ── BREADCRUMB ── */
.breadcrumb-bar { background: var(--light); padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--dark); font-weight: 600; }

/* ── FOOTER ── */
.footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: #fff; font-size: 28px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition); color: #fff;
}
.social-link:hover { background: var(--accent); transform: translateY(-3px); }
.footer h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── ORDER SUCCESS ── */
.success-page { text-align: center; padding: 80px 20px; }
.success-icon { font-size: 80px; margin-bottom: 20px; }
.success-page h1 { font-size: 32px; font-weight: 800; color: var(--success); margin-bottom: 12px; }
.order-detail-box { background: var(--light); border-radius: var(--radius); padding: 24px; max-width: 500px; margin: 24px auto; text-align: left; }

/* ── SHOP PAGE ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.sidebar { position: sticky; top: 100px; }
.filter-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.filter-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; cursor: pointer; }
.filter-option input { accent-color: var(--accent); width: 16px; height: 16px; }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-range input { flex: 1; padding: 8px; border: 2px solid var(--border); border-radius: 8px; font-size: 13px; font-family: var(--font); }
.price-range input:focus { outline: none; border-color: var(--accent); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border); color: var(--dark); font-size: 14px; font-weight: 600; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--primary); color: #fff;
  padding: 14px 20px; border-radius: 10px;
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-hover); max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 20px; }

/* ── LOADING ── */
.spinner { width: 40px; height: 40px; border: 4px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state svg { font-size: 60px; margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-main .search-bar { display: none; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); z-index: 999; padding: 12px 0; }
  .nav-menu.open { display: flex; }
  .nav-mobile-toggle { display: block; }
  .slide-content { width: 100%; padding: 40px 24px; }
  .slide { min-height: 380px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .header-actions .action-btn span { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .slide-title { font-size: 22px; }
  .btn { padding: 10px 20px; font-size: 14px; }
}
