/* =============================================
   LISTLYO — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg:           #F7F4EF;
  --bg-card:      #FFFFFF;
  --navy:         #1A1F3C;
  --indigo:       #2D3580;
  --coral:        #E8512A;
  --coral-light:  #FF6B45;
  --gold:         #D4A847;
  --cream:        #FBF8F3;
  --text:         #1A1F3C;
  --text-muted:   #6B7280;
  --border:       #E8E3DA;
  --shadow-sm:    0 2px 8px rgba(26,31,60,0.07);
  --shadow-md:    0 8px 24px rgba(26,31,60,0.12);
  --shadow-lg:    0 20px 60px rgba(26,31,60,0.16);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- Loader ---------- */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  flex-direction: column;
  gap: 16px;
  color: var(--text-muted);
}

.loader-ring {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ---------- Skeleton ---------- */
.skeleton {
  background: linear-gradient(90deg, #f0ebe3 25%, #faf7f2 50%, #f0ebe3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,81,42,0.35);
}
.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,81,42,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--indigo); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }

.btn-sm { padding: 8px 16px; font-size: 0.82rem; border-radius: 8px; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-success { background: #10b981; color: #fff; }
.btn-success:hover { background: #059669; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img { height: 32px; }
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 40px;
}

.navbar-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.navbar-links a:hover { color: var(--coral); }

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 1001;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  margin-top: 10px;
}

.nav-dropdown-content a {
  color: var(--navy);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-dropdown-content a:hover {
  background-color: var(--cream);
  color: var(--coral);
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

/* Sub-dropdown Styles */
.nav-sub-dropdown {
  position: relative;
}

.nav-sub-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: -12px;
  background-color: #fff;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 1002;
  border: 1px solid var(--border);
}

.nav-sub-dropdown:hover > .nav-sub-dropdown-content {
  display: block;
}

.nav-sub-dropdown-content a {
  padding: 10px 20px;
}

@media (max-width: 992px) {
  .navbar-links { display: none; }
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.menu-toggle:hover { background: var(--border); }

.mobile-search-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
}
.mobile-search-toggle:hover { background: var(--border); }

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-nav-close {
  background: var(--cream);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links .btn { justify-content: flex-start; width: 100%; }

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 60, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active { display: block; opacity: 1; }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .menu-toggle { display: block; }
  .mobile-search-toggle { 
    display: flex; 
    margin-left: auto; /* Pushes the search and menu buttons to the right */
    margin-right: 4px; /* Small gap between search and menu */
  }
  
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1rem; }
  
  .category-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
}

/* ---------- Admin Panel Responsive Base ---------- */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--cream);
}

.admin-sidebar {
  width: 260px;
  background: var(--navy);
  color: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.admin-main {
  flex: 1;
  min-width: 0; 
  display: flex;
  flex-direction: column;
}

.admin-mobile-header {
  display: none;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
}

.navbar-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.navbar-links a:hover, .navbar-links a.active {
  color: var(--coral);
  background: rgba(232,81,42,0.07);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #f7f4ef 0%, #fdfcfa 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,81,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,81,42,0.1);
  color: var(--coral);
  border: 1px solid rgba(232,81,42,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  opacity: 0.3;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ---------- Section ---------- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 1rem;
}

.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

/* ---------- Category Grid ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before { opacity: 1; }

.category-card:hover .cat-icon,
.category-card:hover .cat-name,
.category-card:hover .cat-count { color: #fff; }

.cat-icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  transform: scale(1);
}

.category-card:hover .cat-icon { transform: scale(1.15); }

.cat-icon img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
  transition: var(--transition);
}

.category-card:hover .cat-icon img {
  transform: scale(1.15);
}

/* Custom CSS Icons - Enhanced */
.custom-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--cream);
  border-radius: 16px;
  transition: var(--transition);
  color: var(--navy);
  flex-shrink: 0;
}

.custom-icon.small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.category-card:hover .custom-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Icon specific colors/backgrounds */
.custom-icon.icon-cart { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.custom-icon.icon-food { color: #ea580c; background: rgba(234, 88, 12, 0.1); }
.custom-icon.icon-phone { color: #0891b2; background: rgba(8, 145, 178, 0.1); }
.custom-icon.icon-clothing { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.custom-icon.icon-home { color: #059669; background: rgba(5, 150, 105, 0.1); }
.custom-icon.icon-beauty { color: #db2777; background: rgba(219, 39, 119, 0.1); }
.custom-icon.icon-sports { color: #dc2626; background: rgba(220, 38, 38, 0.1); }
.custom-icon.icon-books { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.custom-icon.icon-toys { color: #ca8a04; background: rgba(202, 138, 4, 0.1); }
.custom-icon.icon-grocery { color: #16a34a; background: rgba(22, 163, 74, 0.1); }
.custom-icon.icon-medicine { color: #e11d48; background: rgba(225, 29, 72, 0.1); }
.custom-icon.icon-laptop { color: #334155; background: rgba(51, 65, 85, 0.1); }
.custom-icon.icon-camera { color: #475569; background: rgba(71, 85, 105, 0.1); }
.custom-icon.icon-watch { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.custom-icon.icon-bag { color: #92400e; background: rgba(146, 64, 14, 0.1); }
.custom-icon.icon-shoe { color: #1e293b; background: rgba(30, 41, 59, 0.1); }
.custom-icon.icon-gift { color: #c026d3; background: rgba(192, 38, 211, 0.1); }
.custom-icon.icon-car { color: #1d4ed8; background: rgba(29, 78, 216, 0.1); }
.custom-icon.icon-heart { color: #e11d48; background: rgba(225, 29, 72, 0.1); }
.custom-icon.icon-star { color: #d97706; background: rgba(217, 119, 6, 0.1); }
.custom-icon.icon-music { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.custom-icon.icon-game { color: #0f172a; background: rgba(15, 23, 42, 0.1); }

/* Custom Icon Shapes */
.custom-icon i { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
  transform: scale(1.1); /* Default scale */
}

.custom-icon.small i {
  transform: scale(0.7); /* Smaller scale for small icons */
}

.icon-cart i { width: 22px; height: 18px; border: 2px solid currentColor; border-radius: 2px 2px 6px 6px; }
.icon-cart i::before { content: ''; position: absolute; width: 10px; height: 8px; border: 2px solid currentColor; border-bottom: none; border-radius: 8px 8px 0 0; top: -8px; left: 4px; }

.icon-food i { width: 24px; height: 20px; border: 2px solid currentColor; border-radius: 12px 12px 4px 4px; background: linear-gradient(to bottom, currentColor 30%, transparent 30%, transparent 70%, currentColor 70%); }

.icon-phone i { width: 16px; height: 26px; border: 2px solid currentColor; border-radius: 4px; }
.icon-phone i::after { content: ''; position: absolute; width: 4px; height: 4px; border: 1.5px solid currentColor; border-radius: 50%; bottom: 2px; left: 50%; transform: translateX(-50%); }

.icon-clothing i { width: 24px; height: 24px; border: 2px solid currentColor; border-top: none; border-radius: 0 0 4px 4px; }
.icon-clothing i::before { content: ''; position: absolute; width: 8px; height: 6px; border: 2px solid currentColor; border-bottom: none; border-radius: 4px 4px 0 0; top: -6px; left: 50%; transform: translateX(-50%); }

.icon-home i { width: 24px; height: 20px; border: 2px solid currentColor; border-top: none; }
.icon-home i::before { content: ''; position: absolute; width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-bottom: 12px solid currentColor; top: -12px; left: -2px; }

.icon-beauty i { width: 14px; height: 24px; border: 2px solid currentColor; border-radius: 4px; }
.icon-beauty i::before { content: ''; position: absolute; width: 10px; height: 6px; background: currentColor; top: -8px; left: 0; border-radius: 2px; }

.icon-sports i { width: 24px; height: 24px; border: 2px solid currentColor; border-radius: 50%; overflow: hidden; }
.icon-sports i::before { content: ''; position: absolute; inset: 0; border: 1.5px solid currentColor; border-radius: 50%; transform: translateX(-12px); }

.icon-books i { width: 20px; height: 24px; border: 2px solid currentColor; border-left: 4px solid currentColor; border-radius: 0 4px 4px 0; }

.icon-toys i { width: 20px; height: 20px; border: 2px solid currentColor; border-radius: 50%; }
.icon-toys i::before { content: ''; position: absolute; width: 8px; height: 8px; border: 1.5px solid currentColor; border-radius: 50%; top: -4px; left: 4px; }

.icon-grocery i { width: 24px; height: 18px; border: 2px solid currentColor; border-top: none; border-radius: 0 0 6px 6px; }
.icon-grocery i::before { content: ''; position: absolute; width: 16px; height: 10px; border: 2px solid currentColor; border-bottom: none; border-radius: 10px 10px 0 0; top: -10px; left: 2px; }

.icon-medicine i { width: 24px; height: 12px; border: 2px solid currentColor; border-radius: 10px; background: linear-gradient(to right, currentColor 50%, transparent 50%); }

.icon-laptop i { width: 26px; height: 18px; border: 2px solid currentColor; border-radius: 2px; }
.icon-laptop i::after { content: ''; position: absolute; width: 30px; height: 3px; background: currentColor; bottom: -5px; left: -2px; border-radius: 2px; }

.icon-camera i { width: 26px; height: 20px; border: 2px solid currentColor; border-radius: 4px; }
.icon-camera i::before { content: ''; position: absolute; width: 8px; height: 8px; border: 2px solid currentColor; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.icon-watch i { width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 50%; }
.icon-watch i::before { content: ''; position: absolute; width: 2px; height: 8px; background: currentColor; top: 3px; left: 50%; transform: translateX(-50%); }

.icon-bag i { width: 20px; height: 22px; border: 2px solid currentColor; border-radius: 4px 4px 8px 8px; }
.icon-bag i::before { content: ''; position: absolute; width: 10px; height: 6px; border: 2px solid currentColor; border-bottom: none; border-radius: 6px 6px 0 0; top: -8px; left: 3px; }

.icon-shoe i { width: 26px; height: 14px; border: 2px solid currentColor; border-radius: 0 10px 4px 4px; }

.icon-gift i { width: 22px; height: 20px; border: 2px solid currentColor; border-radius: 3px; }
.icon-gift i::before { content: ''; position: absolute; width: 100%; height: 2px; background: currentColor; top: 50%; left: 0; transform: translateY(-50%); }
.icon-gift i::after { content: ''; position: absolute; width: 2px; height: 100%; background: currentColor; left: 50%; top: 0; transform: translateX(-50%); }

.icon-car i { width: 26px; height: 14px; border: 2px solid currentColor; border-radius: 6px 6px 2px 2px; }
.icon-car i::before, .icon-car i::after { content: ''; position: absolute; width: 6px; height: 6px; background: currentColor; border-radius: 50%; bottom: -4px; }
.icon-car i::before { left: 3px; }
.icon-car i::after { right: 3px; }

.icon-heart i { width: 20px; height: 20px; background: currentColor; transform: rotate(45deg); border-radius: 2px; }
.icon-heart i::before, .icon-heart i::after { content: ''; position: absolute; width: 20px; height: 20px; background: currentColor; border-radius: 50%; }
.icon-heart i::before { top: -10px; left: 0; }
.icon-heart i::after { left: -10px; top: 0; }

.icon-star i { width: 22px; height: 22px; background: currentColor; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

.icon-music i { width: 18px; height: 22px; border-right: 3px solid currentColor; border-top: 6px solid currentColor; }
.icon-music i::after { content: ''; position: absolute; width: 10px; height: 8px; background: currentColor; border-radius: 50%; bottom: -4px; right: -6px; }

.icon-game i { width: 26px; height: 18px; border: 2px solid currentColor; border-radius: 8px; }
.icon-game i::before { content: ''; position: absolute; width: 6px; height: 6px; background: currentColor; left: 4px; top: 4px; border-radius: 50%; }
.icon-game i::after { content: ''; position: absolute; width: 6px; height: 2px; background: currentColor; right: 4px; top: 6px; }

.cat-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.cat-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  font-weight: 500;
}

/* ---------- Product Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.product-price .currency { font-size: 0.85rem; font-weight: 400; }

/* ---------- Order Form ---------- */
.order-section { padding: 60px 0; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.order-form-card, .order-summary-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.order-form-card { padding: 40px; }
.order-summary-card { padding: 32px; position: sticky; top: 100px; }

.form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.form-group label span { color: var(--coral); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,81,42,0.1);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.summary-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.summary-product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.summary-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.summary-product-info { flex: 1; }

.summary-product-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.summary-product-price { font-size: 0.82rem; color: var(--text-muted); }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.summary-total-label { font-weight: 600; color: var(--navy); }

.summary-total-amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral);
}

/* ---------- Auth / Login ---------- */
.auth-page {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  min-height: 100vh;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  margin: 60px auto;
  border: 1px solid var(--border);
}

.auth-brand {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.auth-brand span { color: var(--coral); }

.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
}

.auth-tab {
  flex: 1;
  padding: 9px;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.auth-tab.active {
  background: var(--bg-card);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-google:hover { border-color: var(--coral); transform: translateY(-1px); }

.btn-google svg { width: 18px; height: 18px; }

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-footer a { color: var(--coral); font-weight: 600; }

/* ---------- Admin Panel ---------- */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--navy);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-brand {
  padding: 28px 24px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-brand span { color: var(--coral); }

.admin-sidebar-label {
  padding: 20px 24px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--transition);
  border-radius: 0;
}

.admin-nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.admin-nav-item.active {
  background: rgba(232,81,42,0.15);
  color: #fff;
  border-left-color: var(--coral);
}

.admin-nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }

.admin-main {
  flex: 1;
  background: var(--bg);
  overflow: auto;
}

.admin-topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar h1 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.admin-content { padding: 32px; }

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.stat-card-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-card-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ---------- Table ---------- */
.table-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.table-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr { transition: background 0.15s; }
.data-table tr:hover td { background: var(--cream); }

.table-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}

.table-actions { display: flex; gap: 6px; }

/* ---------- Status Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}

.badge-pending   { background: rgba(245,158,11,0.12); color: #d97706; }
.badge-confirmed { background: rgba(59,130,246,0.12); color: #2563eb; }
.badge-delivered { background: rgba(16,185,129,0.12); color: #059669; }
.badge-cancelled { background: rgba(239,68,68,0.12);  color: #dc2626; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,31,60,0.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
  backdrop-filter: blur(4px);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: flex-end;
}

/* ---------- Alert / Toast ---------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

.toast.success { background: #10b981; }
.toast.error   { background: #ef4444; }
.toast.warning { background: #f59e0b; }

.toast-icon { font-size: 1rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 24px 0 0;
}

.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { color: var(--text); font-weight: 500; }
.breadcrumb .sep { opacity: 0.4; }

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-state-icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.4; }

.empty-state h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.empty-state p { font-size: 0.92rem; max-width: 360px; margin: 0 auto 24px; }

/* ---------- Review Card ---------- */
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.review-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 12px; }
.review-user { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 8px; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Misc ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 100%);
  padding: 60px 24px;
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p { opacity: 0.75; font-size: 1rem; }

.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(232,81,42,0.1);
  color: var(--coral);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--coral); padding-left: 5px; }

/* Developer Attribution Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.developer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
}

.developer-info:hover {
  background: rgba(232,81,42,0.1);
  transform: translateY(-2px);
}

.dt-logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Admin Login ---------- */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 24px;
}

/* ---------- Qty Selector ---------- */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: var(--cream);
  width: fit-content;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.qty-btn:hover { background: var(--coral); color: #fff; }
.qty-value { font-weight: 600; font-size: 0.95rem; min-width: 28px; text-align: center; }

/* Description Truncation */
.description-text {
  line-height: 1.6;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}

.description-text.truncated {
  -webkit-line-clamp: 3;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--coral);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more-btn:hover {
  color: var(--coral-light);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  
  .admin-layout { flex-direction: column; }
  .admin-sidebar { 
    position: fixed; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    width: 280px; 
    transform: translateX(-100%); 
    z-index: 2000;
  }
  .admin-sidebar.active { transform: translateX(0); }
  .admin-sidebar-overlay.active { display: block; }
  
  .admin-mobile-header { display: flex; }
  .admin-topbar { padding: 12px 20px; }
  .admin-topbar h1 { font-size: 1.2rem; }
  
  .admin-main { width: 100%; }
  .admin-content { padding: 16px; }
  
  .admin-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-card-value { font-size: 1.5rem; }
  
  .table-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .table-header .btn { width: 100%; }
  
  .data-table th, .data-table td { padding: 12px 14px; font-size: 0.8rem; }
  .table-actions { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 16px 50px; }
  .hero-stats { gap: 20px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .modal { padding: 24px; }
  .navbar-links a { display: none; }
  .admin-content { padding: 16px; }
  .data-table { font-size: 0.8rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Product Filter Responsive */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.filter-toggle-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--cream);
}

.filter-toggle-btn svg {
  width: 18px;
  height: 18px;
}

.category-filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .filter-toggle-btn {
    display: flex;
  }
  
  .category-filter-container {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
  }
  
  .category-filter-container.active {
    display: flex;
  }
  
  .filter-controls-row {
    flex-direction: column;
    align-items: stretch !important;
    margin-bottom: 0 !important;
    gap: 20px !important;
  }

  .filter-controls-row > div {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
  }

  #category-filter-tags {
    width: 100%;
  }

  #sort-select {
    width: 100% !important;
  }
}

/* Search UI Styles */
.nav-search-btn:hover {
  background: var(--border) !important;
  color: var(--coral) !important;
}

.search-result-item:hover {
  background: var(--cream);
  border-color: var(--coral) !important;
  transform: translateX(5px);
}
