:root {
  --bg: #f8fafc;
  --bg-card: #fff;
  --bg-alt: #fff;
  --bg-nav: #1e293b;
  --bg-header: #fff;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #475569;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --shadow: rgba(0,0,0,0.08);
  --hero-overlay: linear-gradient(90deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.6) 100%);
}

[data-theme="dark"] {
  --bg: #0f172a;
  --bg-card: #1e293b;
  --bg-alt: #1e293b;
  --bg-nav: #0f172a;
  --bg-header: #1e293b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --border: #334155;
  --border-hover: #475569;
  --shadow: rgba(0,0,0,0.3);
  --hero-overlay: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}

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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  transition: background 0.3s, color 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Announcement Bar */
.announcement {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.announcement a {
  color: #fff;
  text-decoration: underline;
}

/* Header */
header {
  background: var(--bg-header);
  box-shadow: 0 1px 3px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 100px;
  width: auto;
}

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

.header-right a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-right a:hover {
  color: var(--primary);
}

.whatsapp-header {
  background: #25D366;
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.whatsapp-header:hover {
  background: #1da851 !important;
}

/* Cart Icon */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-light);
  background: none;
  border: none;
  transition: color 0.2s;
}

.cart-icon:hover {
  color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-badge.show {
  display: flex;
}

/* Dark Mode Toggle */
.dark-toggle {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s;
}

.dark-toggle:hover {
  color: var(--primary);
}

/* Navigation */
nav {
  background: var(--bg-nav);
  transition: background 0.3s;
}

nav .container {
  display: flex;
  gap: 0;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  display: block;
}

nav a:hover,
nav a.active {
  background: #334155;
  color: #fff;
}

/* Search Bar */
.search-wrap {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  transition: background 0.3s;
}

[data-theme="dark"] .search-wrap {
  background: #1e293b;
}

.search-wrap input {
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.2rem 0.4rem;
  width: 180px;
  color: var(--text);
}

.search-wrap i {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--hero-overlay);
  z-index: 1;
  transition: background 0.3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-cart {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-cart:hover {
  background: var(--primary);
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
  transition: background 0.3s;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
  transform: translateY(-3px);
}

.category-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.5rem;
  color: var(--primary);
}

[data-theme="dark"] .category-card .icon {
  background: #1e3a5f;
}

.category-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.category-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
}

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

.product-card .img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.product-card .body {
  padding: 1.2rem;
}

.product-card .body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.product-card .body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.product-specs {
  list-style: none;
  margin-bottom: 0.8rem;
}

.product-specs li {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}

.product-card .btn + .btn {
  margin-top: 0.4rem;
}

.category-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.category-heading a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

/* Brand Filter */
.brand-filter-btn.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

/* Brand Labels */
.brand-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-dell { background: #e8f4f8; color: #007db8; }
.brand-hp { background: #e8f0fe; color: #0078d4; }
.brand-lenovo { background: #e8f5e9; color: #2e7d32; }
.brand-rog { background: #1e293b; color: #2563eb; }

[data-theme="dark"] .brand-dell { background: #003349; }
[data-theme="dark"] .brand-hp { background: #002856; }
[data-theme="dark"] .brand-lenovo { background: #1b3b1e; }
[data-theme="dark"] .brand-rog { background: #0f172a; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.4rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--primary);
  margin-right: 0.6rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.testimonial-card .quote {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
}

.testimonial-card .role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: color 0.3s;
}

.faq-q i {
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  font-size: 0.95rem;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1rem;
}

/* Contact + Map */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-info-box i {
  color: var(--primary);
  width: 1.5rem;
}

.map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary);
}

/* Cart Drawer */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

.cart-overlay.open {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-card);
  z-index: 2001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px var(--shadow);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-size: 1.1rem;
  color: var(--text);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}

.cart-drawer-close:hover {
  color: var(--text);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.cart-item-info p {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 0.85rem;
  align-self: flex-start;
  padding: 2px;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

.cart-empty i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.cart-drawer-footer {
  padding: 1.2rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
  text-decoration: none;
}

.float-wa:hover {
  transform: scale(1.1);
}

/* Back to Top */
.back-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #1e293b;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.back-top.visible {
  display: flex;
}

.back-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Page Heading */
.page-heading {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-heading h1 {
  font-size: 2rem;
  font-weight: 700;
}

.page-heading p {
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 25px var(--shadow);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* Footer */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 1.5rem 1.5rem;
}

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

.footer-col h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #94a3b8;
  font-size: 1rem;
  transition: all 0.25s;
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.85rem;
}

/* Breadcrumb */
.breadcrumb {
  background: #f1f5f9;
  padding: 0.7rem 0;
  font-size: 0.85rem;
}

[data-theme="dark"] .breadcrumb {
  background: #1e293b;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .header-right .search-wrap input {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 60px;
  }

  .hamburger {
    display: block;
  }

  .header-right a:not(.whatsapp-header):not(.cart-icon) {
    display: none;
  }

  .dark-toggle {
    order: -1;
  }

  .cart-icon {
    order: 0;
  }

  .whatsapp-header {
    order: 1;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.75rem !important;
  }

  .whatsapp-header span {
    display: none;
  }

  .search-wrap {
    order: 10;
    width: 100%;
    margin-top: 0.3rem;
  }

  .search-wrap input {
    width: 100%;
  }

  nav .container {
    display: none;
    flex-direction: column;
  }

  header.nav-open nav .container {
    display: flex;
  }

  nav a {
    padding: 0.6rem 1rem;
  }

  .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-buttons .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.8rem;
  }

  .category-card {
    padding: 1rem 0.6rem;
  }

  .category-card .icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .category-card h3 {
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .category-heading {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text h2 {
    font-size: 1.3rem;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .page-heading {
    padding: 2rem 0;
  }

  .page-heading h1 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .brand-filters {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    gap: 0.4rem !important;
  }

  .brand-filters .btn {
    flex-shrink: 0;
    font-size: 0.8rem !important;
    padding: 0.4rem 1rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100vw;
  }

  .float-wa {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 1rem;
    right: 1rem;
  }

  .back-top {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.4rem 0.8rem;
  }

  .logo img {
    height: 45px;
  }

  .hamburger span {
    width: 20px;
    margin: 4px 0;
  }

  .header-right {
    gap: 0.4rem;
  }

  .dark-toggle {
    font-size: 0.9rem;
    padding: 2px;
  }

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

  .hero {
    min-height: 260px;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    gap: 1rem;
  }

  .product-card .img-wrap {
    height: 160px;
  }

  .product-card .body {
    padding: 0.8rem;
  }

  .product-card .body h3 {
    font-size: 0.9rem;
  }

  .product-card .price {
    font-size: 1rem;
  }

  .product-card .btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card i {
    font-size: 2rem;
  }

  .map-box iframe {
    height: 200px;
  }
}
