/* Sonu Electronics - Design System & Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #070c1a;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --bg-glass: rgba(15, 23, 42, 0.85);
  
  --primary: #38bdf8;
  --primary-glow: rgba(56, 189, 248, 0.35);
  --accent-gold: #fbbf24;
  --accent-gold-glow: rgba(251, 191, 36, 0.3);
  --accent-green: #22c55e;
  --accent-orange: #f97316;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(56, 189, 248, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 32px -8px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold {
  color: var(--accent-gold);
}

.text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #a855f7 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.6);
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(56, 189, 248, 0.08);
}

/* Top Bar Announcement */
.top-bar {
  background: linear-gradient(90deg, #0369a1 0%, #1e1b4b 50%, #b45309 100%);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #38bdf8, #fbbf24);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #070c1a;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}
.brand-text h1 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
}
.brand-text p {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn-trigger {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}
.cart-btn-trigger:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}
.cart-badge {
  background: var(--accent-gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0 5rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.stat-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}
.hero-card-stack {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card);
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-badge-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proprietor-info h4 {
  font-size: 1rem;
  color: #fff;
}
.proprietor-info p {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* Features Grid */
.features-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(56, 189, 248, 0.05);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 1.8rem;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
}
.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Category Filter & Products */
.products-section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.section-tag {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.product-controls {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.search-bar-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.search-input {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}
.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cat-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cat-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.cat-btn.active {
  background: var(--primary);
  color: #070c1a;
  border-color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-lg);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 200px;
  background: #111827;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  line-height: 1.3;
}
.product-spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.price-tag {
  display: flex;
  flex-direction: column;
}
.price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
}
.price-note {
  font-size: 0.7rem;
  color: var(--text-subtle);
}

.card-actions {
  display: flex;
  gap: 0.5rem;
}
.btn-icon-cart {
  background: rgba(56, 189, 248, 0.15);
  color: var(--primary);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-icon-cart:hover {
  background: var(--primary);
  color: #070c1a;
}

/* Proprietor Trust Section */
.proprietor-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 23, 42, 0.6) 100%);
  border-top: 1px solid var(--border-light);
}
.proprietor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.proprietor-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent-gold);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.proprietor-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.proprietor-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.brand-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Authorized Brands Section */
.brands-showcase-section {
  padding: 3.5rem 0;
  background: rgba(15, 23, 42, 0.4);
  border-bottom: 1px solid var(--border-light);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.brand-card-featured {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 90px;
}
.brand-card-featured:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}
.brand-logo-text {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  text-align: center;
}
.brand-goldmedal {
  color: #d90429;
  font-family: 'Outfit', sans-serif;
  border-left: 4px solid #d90429;
  padding-left: 8px;
}
.brand-rr {
  color: #e63946;
  font-family: 'Inter', sans-serif;
}
.brand-rr span {
  display: block;
  font-size: 0.65rem;
  color: #1d3557;
  letter-spacing: 1px;
  font-weight: 700;
}
.brand-luminous {
  color: #004b93;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: #004b93;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 4px;
}
.brand-anchor {
  color: #d90429;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-havells {
  color: #e63946;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 900;
}


.proprietor-contact-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.person-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #000;
  font-weight: 800;
}
.person-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
.person-info p {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
}
.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Contact & Map Section */
.contact-section {
  padding: 5rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.info-details h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.map-pin-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-light);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.cart-drawer.open {
  right: 0;
}
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.close-btn:hover {
  color: #fff;
}

.cart-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-empty-text {
  text-align: center;
  color: var(--text-muted);
  margin: auto 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.8rem;
  border-radius: var(--radius-md);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #1e293b;
}
.cart-item-info {
  flex-grow: 1;
}
.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
}
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
.qty-btn:hover {
  background: var(--primary);
  color: #000;
}
.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  width: 20px;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: rgba(15, 23, 42, 0.95);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.modal-body {
  padding: 2rem;
}

/* Floating Contact Widget */
.floating-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-whatsapp {
  background: #25d366;
}
.float-call {
  background: #0284c7;
}

/* Footer */
.footer {
  background: #030712;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.85rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .proprietor-card {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .top-bar-info {
    font-size: 0.75rem;
  }
  .navbar {
    padding: 0.75rem 0;
  }
  .brand-logo {
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .brand-text h1 {
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
  }
  .brand-text p {
    font-size: 0.62rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 1.2rem;
    padding: 0.3rem 0.4rem;
  }
  #header-call-btn {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
  .cat-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .modal-card {
    max-width: 92%;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 0 1.25rem;
  }
  .header-actions {
    gap: 0.35rem;
    flex-shrink: 0;
  }
  #header-admin-btn {
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  #header-admin-btn span.btn-text-full {
    display: none;
  }
  .cart-btn-trigger {
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  #cart-trigger span:not(.cart-badge) {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .brand-logo .brand-text h1 {
    font-size: 0.98rem;
    letter-spacing: -0.2px;
  }
  .brand-logo .brand-text p {
    font-size: 0.58rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 1.5rem 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .brand-logo .brand-text h1 {
    font-size: 0.95rem;
  }
  .brand-logo .brand-text p {
    display: none;
  }
}
