:root {
  --blue: #1a3a8f;
  --blue-mid: #1e4fc2;
  --blue-light: #2f6ce5;
  --yellow: #f5a800;
  --yellow-dark: #d48f00;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --gray-border: #e5e7eb;
  --white: #fff;
  --text: #111827;
  --text-muted: #6b7280;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}
.announce span { color: var(--yellow); }

/* ── TOP BAR ── */
.top-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  padding: 12px 0;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { flex-shrink: 0; }
.logo img { height: 54px; width: auto; }

.search-bar {
  flex: 1;
  display: flex;
  background: var(--gray-light);
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--blue-light); }
.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  color: var(--text);
}
.search-bar button {
  background: var(--blue);
  border: none;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--blue-mid); }

.top-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.top-actions a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.top-actions a:hover { color: var(--blue-light); }
.top-actions .icon-wrap {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.top-actions a:hover .icon-wrap { background: var(--blue); color: #fff; }
.badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--yellow);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-signin {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.btn-signin:hover { background: var(--blue-light) !important; color: #fff !important; }

/* ── MAIN NAV ── */
.main-nav {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.nav-item { position: relative; }
.nav-item > a, .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 16px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item:hover > a { background: var(--blue-mid); color: var(--yellow); }
.nav-item > a i { font-size: 0.75rem; margin-top: 1px; }

/* Mega dropdown */
.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 800px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-top: 3px solid var(--yellow);
    border-radius: 0 0 10px 10px;
    z-index: 200;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
}
.nav-item:hover .mega-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gray-border);
}
.dropdown-col ul { list-style: none; padding-left: 0; }
.dropdown-col > ul { margin-bottom: 0; }
.dropdown-col > ul > li { margin-bottom: 10px; }
.dropdown-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.15s;
}
.dropdown-col a:hover { color: var(--blue-light); }
/* Nested list styles for subcategories */
.dropdown-col ul ul {
    margin-top: 6px;
    margin-left: 12px;
}
.dropdown-col ul ul ul {
    margin-left: 8px;
}
.dropdown-col ul ul ul a {
    font-size: 0.8rem;
    opacity: 0.9;
}

.nav-divider { width: 1px; background: rgba(255,255,255,0.2); margin: 8px 0; }
.nav-right { margin-left: auto; display: flex; }
.nav-highlight > a { color: var(--yellow) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0d2160 0%, #1a3a8f 45%, #1b4fc8 80%, #2563d4 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-text h1 span { color: var(--yellow); }
.hero-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-outline:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item { text-align: center; }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-cards { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 20px 24px;
  width: 260px;
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.hero-card:hover { transform: translateX(-6px); background: rgba(255,255,255,0.15); }
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 12px;
}
.hero-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero-card p { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ── SECTION WRAPPER ── */
.section { padding: 64px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-label {
  display: inline-block;
  background: rgba(245,168,0,0.12);
  color: var(--yellow-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
}
.section-title span { color: var(--blue-light); }
.section-sub { color: var(--text-muted); font-size: 1rem; margin-top: 8px; }

/* ── FEATURED CATEGORIES ── */
.categories-bg { background: var(--gray-light); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.cat-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.cat-card:hover { border-color: var(--blue-light); box-shadow: 0 8px 24px rgba(30,79,194,0.14); transform: translateY(-4px); }
.cat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 14px;
}
.cat-card:hover .cat-icon { background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%); }
.cat-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }

/* ── TRENDING PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover { 
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
  transform: translateY(-4px);
}
.product-img-wrap {
  position: relative;
  background: #fff;
  height: 300px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f3f4f6;
}
.product-img-wrap img {
  width: 100%; 
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #ffd700;
  color: #000;
  font-size: 0.85rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-badge.sale { background: #ef4444; color: #fff; }
.product-actions {
  display: none;
}
.product-info { padding: 24px; }
.product-cat { 
  font-size: 0.9rem; 
  font-weight: 700; 
  color: #1e40af; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  margin-bottom: 12px; 
}
.product-name { 
  font-size: 1.25rem; 
  font-weight: 800; 
  color: #0f172a; 
  margin-bottom: 20px; 
  line-height: 1.4; 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}
.product-price { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 20px; 
  flex-wrap: wrap;
}
.price-current { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 1.85rem; 
  font-weight: 900; 
  color: #1e40af; 
}
.price-old { 
  font-size: 1.1rem; 
  color: #94a3b8; 
  text-decoration: line-through; 
}
.price-discount { 
  font-size: 1rem; 
  font-weight: 900; 
  color: #1e40af; 
  background: #ffd700; 
  padding: 6px 16px; 
  border-radius: 12px; 
}
.btn-cart {
  width: 100%;
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 16px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-cart:hover { 
  background: #1d4ed8; 
}
.view-all-wrap { text-align: center; margin-top: 40px; }
.btn-view-all {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-view-all:hover { background: var(--blue); color: #fff; }

/* ── PROMO STRIP ── */
.promo-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  padding: 48px 24px;
}
.promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.promo-item-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.promo-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.promo-item p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--gray-border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: 0.08;
  line-height: 1;
}
.stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-title { font-size: 0.75rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px;
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-muted); }

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea {
  width: 100%;
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--gray-light);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue-light); background: #fff; }
.form-group textarea { height: 110px; }
.btn-send {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-send:hover { background: var(--blue-mid); }

/* ── FOOTER ── */
footer {
  background: #0a1a4a;
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--yellow); color: #000; }
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ── SHOP PAGE FILTER SIDEBAR ── */
.filter-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
    width: 100%;
    max-width: 240px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    font-family: 'Barlow', sans-serif;
}

.filter-sidebar h3 {
    font-size: 1rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h4 {
    font-size: 0.6875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0f172a;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 10px;
    position: relative;
}

.filter-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #facc15 0%, #f59e0b 100%);
    border-radius: 2px;
}

.category-filter ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-filter li {
    margin: 0;
}

.category-filter a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.category-filter a:hover {
    color: #0369a1;
    background: #f0f9ff;
    border-color: #bae6fd;
    padding-left: 16px;
}

.category-filter a i {
    color: #cbd5e1;
    font-size: 0.75rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.category-filter a:hover i {
    color: #0ea5e9;
    transform: translateX(2px);
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.price-display span {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0369a1;
    font-variant-numeric: tabular-nums;
}

.price-display input {
    width: 80px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 8px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
}

.attribute-filter {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.attribute-filter label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.15s ease;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}

.attribute-filter label:hover {
    background: #f0f9ff;
    color: #0369a1;
}

.attribute-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0ea5e9;
    cursor: pointer;
    flex-shrink: 0;
}

.attribute-filter span {
    font-size: 0.875rem;
    font-weight: 600;
    color: inherit;
}

.clear-filters-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.clear-filters-btn:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

/* ── PRODUCT DETAILS PAGE ── */
.section {
    padding: 40px 24px;
}
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 32px;
}
.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 8px;
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.section-title span {
    color: var(--blue);
}
.product-img-wrap {
    border: 2px solid var(--gray-border);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-cat {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}
.price-old {
    color: var(--gray);
    text-decoration: line-through;
}
.price-current {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--blue);
}
.price-discount {
    background: var(--yellow);
    color: #000;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}
.btn-cart {
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.btn-cart:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: #fff;
    border: 2px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
}
.product-card:hover {
    border-color: var(--blue-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.product-img {
    padding: 24px;
    background: var(--gray-light);
}
.product-info {
    padding: 16px;
}
.product-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.product-cat {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.price-current {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
}
.price-old {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}
.price-discount {
    background: var(--yellow);
    color: #000;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.attribute-btn {
    cursor: pointer;
    transition: all 0.2s;
}
.attribute-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-buy-now {
    background: var(--yellow);
    color: #000;
    font-weight: 900;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(245, 168, 0, 0.3);
}
.btn-buy-now:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 168, 0, 0.4);
}
.btn-cart {
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(26, 58, 143, 0.3);
}
.btn-cart:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 58, 143, 0.4);
}
.product-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

/* ── HOME FEATURED CATEGORIES ── */
.featured-categories-section {
    background: #f6f6f6;
    padding-top: 78px;
    padding-bottom: 78px;
}

.featured-categories-header {
    max-width: 620px;
    margin: 0 auto 42px;
}

.featured-categories-title {
    color: #0f172a;
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 800;
    text-transform: none;
}

.featured-categories-sub {
    margin-top: 10px;
    color: #64748b;
    line-height: 1.65;
}

.featured-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 26px 18px;
    align-items: start;
}

.featured-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
}

.featured-category-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.featured-category-icon {
    width: 96px;
    height: 96px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #eab308;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-category-card:hover .featured-category-icon {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.featured-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-category-name {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

/* ── HOME TRENDING PRODUCTS ── */
.trending-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.trending-product-card {
    background: #f8fafc;
    border: 1px solid #d5dbe6;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trending-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border-color: #c7d2fe;
}

.trending-product-img-wrap {
    position: relative;
    min-height: 350px;
    height: 350px;
    padding: 26px 26px 22px;
    border: 0;
    border-radius: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.trending-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trending-product-badge {
    top: 18px;
    left: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #facc15;
    color: #111827;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: none;
}

.trending-product-actions {
    display: none;
}

.trending-product-info {
    padding: 28px 24px 26px;
}

.trending-product-cat {
    margin-bottom: 14px;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.trending-product-name {
    min-height: 92px;
    margin-bottom: 20px;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.55;
    -webkit-line-clamp: 2;
}

.trending-product-price {
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.trending-price-old {
    order: 1;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: line-through;
}

.trending-price-discount {
    order: 2;
    background: #facc15;
    color: #111827;
    padding: 8px 14px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.trending-price-current {
    order: 3;
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.trending-btn-cart {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
    border-radius: 18px;
    background: #2643b5;
    box-shadow: none;
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0;
}

.trending-btn-cart:hover {
    background: #1d38a5;
    transform: none;
    box-shadow: none;
}

/* ── AUTH PAGES ── */
.auth-centered-body {
    background: #f8fafc;
}

.auth-centered-main {
    min-height: calc(100vh - 360px);
    padding-top: 56px;
    padding-bottom: 56px;
}

.auth-centered-card {
    width: 100%;
    max-width: 760px;
    padding: 42px 46px;
    border: 1px solid #dbe4f0;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
}

.auth-login-panel {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.auth-login-hero {
    text-align: center;
}

.auth-login-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 55%, #4338ca 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
}

.auth-login-icon svg {
    width: 34px;
    height: 34px;
}

.auth-login-copy {
    max-width: 520px;
    margin: 0 auto;
}

.auth-login-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #0369a1;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.auth-login-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.7rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 14px;
}

.auth-login-subtitle {
    max-width: 470px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.75;
}

.auth-login-pill-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.auth-login-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.auth-login-status {
    border: 1px solid #a7f3d0;
    border-radius: 18px;
    background: #ecfdf5;
    color: #047857;
    padding: 14px 16px;
    font-size: 0.94rem;
    font-weight: 600;
    text-align: center;
}

.auth-login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-login-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-login-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-login-label {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 700;
}

.auth-login-link {
    color: #0369a1;
    font-size: 0.88rem;
    font-weight: 700;
}

.auth-login-link:hover {
    color: #0c4a6e;
}

.auth-login-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #f8fafc;
    padding: 0 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-login-input-wrap:focus-within {
    border-color: #38bdf8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.auth-login-input-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #94a3b8;
}

.auth-login-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1;
    outline: none;
    box-shadow: none;
}

.auth-login-input::placeholder {
    color: #94a3b8;
}

.auth-login-toggle {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.auth-login-toggle:hover {
    color: #0f172a;
}

.auth-login-error {
    color: #dc2626;
    font-size: 0.88rem;
    font-weight: 600;
}

.auth-login-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #f8fafc;
    cursor: pointer;
}

.auth-login-remember-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-login-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #0ea5e9;
}

.auth-login-remember-text {
    color: #334155;
    font-size: 0.94rem;
    font-weight: 600;
}

.auth-login-remember-badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.auth-login-submit {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 55%, #4338ca 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    box-shadow: 0 18px 28px rgba(37, 99, 235, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 34px rgba(37, 99, 235, 0.28);
}

.auth-login-submit-icon {
    width: 18px;
    height: 18px;
}

.auth-login-divider {
    position: relative;
    text-align: center;
    margin: 4px 0;
}

.auth-login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #dbe4f0;
}

.auth-login-divider span {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.96);
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.auth-login-socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.auth-login-social-btn {
    min-height: 54px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-login-social-btn:hover {
    border-color: #bfdbfe;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.auth-login-social-icon {
    width: 18px;
    height: 18px;
}

.auth-login-register {
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #f8fafc;
    padding: 16px 18px;
    text-align: center;
    color: #64748b;
    font-size: 0.94rem;
    font-weight: 600;
}

.auth-login-register a {
    color: #0369a1;
    font-weight: 800;
    margin-left: 4px;
}

.auth-login-register a:hover {
    color: #0c4a6e;
}

/* ── ACCOUNT LAYOUT ── */
.account-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 16px;
}

.account-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.account-sidebar-wrap {
    position: sticky;
    top: 112px;
}

.account-sidebar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.account-sidebar-label {
    padding: 8px 12px 10px;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.account-nav-link:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: translateX(2px);
}

.account-nav-link.is-active {
    background: #eff6ff;
    color: #0369a1;
}

.account-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #94a3b8;
}

.account-nav-icon.is-active {
    color: #0ea5e9;
}

.account-sidebar-divider {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.account-nav-link-danger {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    color: #dc2626;
    cursor: pointer;
}

.account-nav-link-danger:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.account-nav-icon-danger {
    color: #f87171;
}

.account-main {
    min-width: 0;
}

.account-content-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* ── USER DASHBOARD ── */
.dashboard-page {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-hero {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, #0d2160 0%, #1a3a8f 45%, #2563d4 100%);
    padding: 28px 28px 30px;
    color: #fff;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.16);
    height: auto !important;
    min-height: auto !important;
}

.dashboard-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
}

.dashboard-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
}

.dashboard-hero-glow-right {
    top: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.9);
}

.dashboard-hero-glow-left {
    left: -20px;
    bottom: -24px;
    width: 170px;
    height: 170px;
    background: rgba(250, 204, 21, 0.9);
}

.dashboard-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: center;
}

.dashboard-hero-copy {
    max-width: 100%;
}

.dashboard-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fde047;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dashboard-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dashboard-hero-text {
    max-width: 700px;
    color: #dbeafe;
    font-size: 1rem;
    line-height: 1.75;
}

.dashboard-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-hero-stat {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    padding: 16px;
    backdrop-filter: blur(10px);
}

.dashboard-hero-stat-label {
    color: #bfdbfe;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-hero-stat-title {
    margin-top: 8px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.dashboard-hero-stat-text {
    margin-top: 6px;
    color: #dbeafe;
    font-size: 0.82rem;
    line-height: 1.5;
}

.dashboard-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dashboard-action-card {
    display: block;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dashboard-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.dashboard-action-card-sky { border-color: #dbeafe; background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%); }
.dashboard-action-card-emerald { border-color: #d1fae5; background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%); }
.dashboard-action-card-indigo { border-color: #e0e7ff; background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%); }
.dashboard-action-card-rose { border-color: #ffe4e6; background: linear-gradient(180deg, #fff1f2 0%, #ffffff 100%); }

.dashboard-action-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-action-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.dashboard-action-icon {
    width: 28px;
    height: 28px;
}

.dashboard-action-card-sky .dashboard-action-icon-wrap,
.dashboard-action-card-sky .dashboard-action-pill,
.dashboard-action-card-sky .dashboard-action-link { color: #0369a1; }
.dashboard-action-card-emerald .dashboard-action-icon-wrap,
.dashboard-action-card-emerald .dashboard-action-pill,
.dashboard-action-card-emerald .dashboard-action-link { color: #047857; }
.dashboard-action-card-indigo .dashboard-action-icon-wrap,
.dashboard-action-card-indigo .dashboard-action-pill,
.dashboard-action-card-indigo .dashboard-action-link { color: #4338ca; }
.dashboard-action-card-rose .dashboard-action-icon-wrap,
.dashboard-action-card-rose .dashboard-action-pill,
.dashboard-action-card-rose .dashboard-action-link { color: #be123c; }

.dashboard-action-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-action-title {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.dashboard-action-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    min-height: 64px;
}

.dashboard-action-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dashboard-action-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.dashboard-action-card:hover .dashboard-action-arrow {
    transform: translateX(4px);
}

.dashboard-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
    gap: 24px;
}

.dashboard-profile-card,
.dashboard-tips-card {
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.dashboard-profile-card {
    background: #f8fafc;
}

.dashboard-tips-card {
    background: #fff;
}

.dashboard-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-section-label {
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dashboard-section-title {
    margin-top: 8px;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.dashboard-section-text {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.dashboard-section-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #fff;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
}

.dashboard-section-icon-svg {
    width: 28px;
    height: 28px;
}

.dashboard-profile-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-mini-card {
    display: block;
    border: 1px solid #fff;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.dashboard-mini-card-link:hover {
    border-color: #dbeafe;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.08);
}

.dashboard-mini-label {
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-mini-value {
    margin-top: 10px;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.5;
}

.dashboard-mini-value-break {
    word-break: break-word;
}

.dashboard-mini-link {
    margin-top: 10px;
    color: #0284c7;
    font-size: 0.88rem;
    font-weight: 800;
}

.dashboard-tip-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-tip {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
}

.dashboard-tip-sky { background: #f0f9ff; }
.dashboard-tip-amber { background: #fffbeb; }
.dashboard-tip-emerald { background: #ecfdf5; }

.dashboard-tip-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.dashboard-tip-icon-svg {
    width: 20px;
    height: 20px;
}

.dashboard-tip-sky .dashboard-tip-icon { color: #0284c7; }
.dashboard-tip-amber .dashboard-tip-icon { color: #d97706; }
.dashboard-tip-emerald .dashboard-tip-icon { color: #059669; }

.dashboard-tip-title {
    color: #0f172a;
    font-size: 0.96rem;
    font-weight: 900;
}

.dashboard-tip-text {
    margin-top: 4px;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── USER ORDERS PAGE ── */
.order-page-section { width: 100%; }
.order-page-header { position: relative; margin-bottom: 24px; width: 100%; }
.order-page-subheading { margin-bottom: 24px; }
.order-list-container { display: flex; flex-direction: column; gap: 24px; }

.order-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: box-shadow 0.2s, transform 0.2s;
}
.order-card:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.order-card-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
    .order-card-top { flex-direction: row; align-items: center; }
}

.order-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}
@media (min-width: 768px) {
    .order-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px; width: auto; }
}

.order-stat-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.order-stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}
.order-stat-link {
    color: #0284c7;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}
.order-stat-link:hover { color: #0369a1; }

.btn-view-details {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #f0f9ff;
    color: #0369a1;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 12px;
    transition: background-color 0.2s;
}
.btn-view-details:hover { background: #e0f2fe; }

.order-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-status-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.order-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    border-style: solid;
}
.order-status-title {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin: 0;
}
.order-status-desc {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Status colors */
.status-delivered.order-status-icon { background: #ecfdf5; border-color: #d1fae5; color: #059669; }
.status-delivered .order-status-title { color: #047857; }

.status-shipped.order-status-icon { background: #eef2ff; border-color: #e0e7ff; color: #4f46e5; }
.status-shipped .order-status-title { color: #4338ca; }

.status-cancelled.order-status-icon { background: #fef2f2; border-color: #fee2e2; color: #dc2626; }
.status-cancelled .order-status-title { color: #b91c1c; }

.status-pending.order-status-icon { background: #fffbeb; border-color: #fef3c7; color: #d97706; }
.status-pending .order-status-title { color: #b45309; }

.status-processing.order-status-icon { background: #f0f9ff; border-color: #e0f2fe; color: #0284c7; }
.status-processing .order-status-title { color: #0369a1; }

.status-default.order-status-icon { background: #f8fafc; border-color: #f1f5f9; color: #475569; }
.status-default .order-status-title { color: #334155; }

.order-empty-state {
    text-align: center;
    padding: 64px 0;
    background: #f8fafc;
    border-radius: 32px;
    border: 2px dashed #e2e8f0;
}
.order-empty-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
    color: #cbd5e1;
}
.order-empty-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}
.order-empty-desc {
    color: #64748b;
    margin-bottom: 24px;
}
.btn-start-shopping {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #0284c7;
    color: #fff;
    font-weight: 900;
    font-size: 0.875rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}
.btn-start-shopping:hover { background: #0369a1; transform: translateY(-2px); }
.btn-start-shopping:active { transform: scale(0.95); }

.order-pagination { margin-top: 32px; }

/* Mobile nav toggle */
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; padding: 12px 16px; }

@media (max-width: 1200px) {
  .trending-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .account-shell { grid-template-columns: 1fr; gap: 24px; }
  .account-sidebar-wrap { position: static; }
  .account-content-card { padding: 24px 20px; border-radius: 28px; }
  .dashboard-hero-inner { grid-template-columns: 1fr; }
  .dashboard-action-grid { grid-template-columns: 1fr; }
  .dashboard-bottom-grid { grid-template-columns: 1fr; }
  .dashboard-profile-grid { grid-template-columns: 1fr; }
  .top-bar-inner { flex-wrap: wrap; }
  .search-bar { order: 3; width: 100%; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hero-card { width: 220px; }
  .auth-centered-card { max-width: 680px; padding: 34px 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .featured-categories-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
  .trending-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .hamburger { display: block; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; width: 100%; }
}
@media (max-width: 600px) {
  .account-layout { padding: 32px 12px; }
  .account-sidebar { border-radius: 22px; padding: 14px; }
  .account-content-card { padding: 18px 14px; border-radius: 24px; }
  .dashboard-page { gap: 20px; }
  .dashboard-hero { padding: 22px 16px 24px; border-radius: 24px; height: auto; min-height: auto; }
  .dashboard-hero-title { font-size: 2.2rem; }
  .dashboard-hero-text { font-size: 0.92rem; }
  .dashboard-hero-stats { grid-template-columns: 1fr; }
  .dashboard-action-card { padding: 18px; border-radius: 22px; }
  .dashboard-action-title { font-size: 1.2rem; }
  .dashboard-action-text { min-height: auto; font-size: 0.9rem; }
  .dashboard-profile-card, .dashboard-tips-card { padding: 18px; border-radius: 22px; }
  .dashboard-section-title { font-size: 1.6rem; }
  .dashboard-section-head { flex-direction: column; }
  .auth-centered-main { padding-top: 34px; padding-bottom: 34px; }
  .auth-centered-card { padding: 26px 18px; border-radius: 24px; }
  .auth-login-panel { gap: 22px; }
  .auth-login-title { font-size: 2.25rem; }
  .auth-login-subtitle { font-size: 0.94rem; line-height: 1.65; }
  .auth-login-pill-list { gap: 8px; }
  .auth-login-pill { width: 100%; letter-spacing: 0.1em; }
  .auth-login-label-row { align-items: flex-start; flex-direction: column; }
  .auth-login-input-wrap { min-height: 52px; padding: 0 14px; }
  .auth-login-remember { align-items: flex-start; flex-direction: column; }
  .auth-login-socials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .featured-categories-section { padding-top: 56px; padding-bottom: 56px; }
  .featured-categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 12px; }
  .featured-category-icon { width: 84px; height: 84px; }
  .featured-category-name { font-size: 0.88rem; }
  .trending-products-grid { grid-template-columns: 1fr; gap: 20px; }
  .trending-product-img-wrap { min-height: 280px; height: 280px; padding: 20px; }
  .trending-product-info { padding: 22px 18px 20px; }
  .trending-product-name { min-height: auto; font-size: 0.95rem; }
  .trending-product-price { gap: 10px; }
  .trending-price-current { font-size: 1.3rem; }
  .trending-btn-cart { padding: 16px; }
}
