/* JS Technologies - Main E-Commerce Stylesheet */
:root {
  --primary: #0077b6;
  --primary-dark: #03045e;
  --primary-light: #00b4d8;
  --accent: #ffb703;
  --accent-dark: #fb8500;
  --bg-dark: #0a1128;
  --bg-card-dark: #101c3d;
  --bg-light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Announcement Top Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}

/* Main Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.header-logo img {
  height: 48px;
  width: auto;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 4px 6px 4px 16px;
  transition: all 0.2s;
}

.search-form:focus-within {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.search-input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
}

.search-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.search-btn:hover {
  background: var(--primary-dark);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  position: relative;
}

.action-btn:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.cart-count-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation Bar */
.nav-bar {
  background: var(--primary-dark);
  color: #ffffff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: #e0f2fe;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  color: var(--text-main);
  min-width: 230px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  display: none;
  z-index: 1000;
  border: 1px solid var(--border-color);
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--primary);
}

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

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  padding: 20px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  left: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.drawer-backdrop.active {
  display: block;
}

/* Hero Section */
.hero-section {
  padding: 30px 0;
}

.hero-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 650px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #0b132b;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 183, 3, 0.4);
}

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

.btn-whatsapp:hover {
  background: #128c7e;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  position: relative;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.view-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Category Grid / Slider Card */
.category-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: block;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.category-card-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

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

.badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-sale {
  background: var(--danger);
}

.product-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.current-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

.original-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Delivery Badges */
.delivery-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  line-height: 1.3;
}

.badge-cod {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-advance {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-contact {
  background: rgba(59, 130, 246, 0.12);
  color: #1e40af;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.product-card-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

/* Sliders */
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 8px 2px;
}

.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-item {
  flex: 0 0 calc(25% - 12px);
  min-width: 240px;
}

/* Promo Banner Section */
.promo-banner-section {
  padding: 25px 0;
}

.promo-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  display: block;
}

.promo-banner-card img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

/* Brand Logos Slider */
.brand-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  box-shadow: var(--shadow-sm);
}

.brand-card img {
  max-height: 45px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Reviews & Testimonials */
.review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.star-rating {
  color: #ffb703;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-comment {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
}

.reviewer-city {
  font-size: 12px;
  color: var(--text-muted);
}

/* Trust Badges Grid */
.trust-badges-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 45px 0;
  border-radius: var(--radius-lg);
  margin: 35px 0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.trust-badge-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.trust-badge-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

/* WhatsApp Proofs Showcase */
.proof-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.proof-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #0f172a;
}

.proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-caption {
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  border-top: 1px solid var(--border-color);
}

/* Product Detail Page */
.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  padding: 40px 0;
}

.gallery-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.gallery-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb-item {
  width: 75px;
  height: 75px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  cursor: pointer;
  overflow: hidden;
  padding: 6px;
  background: #fff;
  flex-shrink: 0;
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--primary);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Summary */
.single-prod-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 12px;
}

.single-prod-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.sku-badge {
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.single-prod-price-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.single-price-main {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-dark);
}

.single-price-strike {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 10px;
}

.savings-tag {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin-left: 10px;
}

/* Advance Payment Breakdown Notice Box */
.advance-calc-box {
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid #ffb703;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
}

.advance-calc-title {
  font-size: 14px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.advance-calc-desc {
  font-size: 13px;
  color: #78350f;
  line-height: 1.5;
}

.single-action-grid {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  background: #f1f5f9;
  border: none;
  width: 38px;
  height: 46px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

.qty-input {
  width: 100%;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  outline: none;
}

/* WhatsApp Order Button */
.whatsapp-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-order-btn:hover {
  background: #128c7e;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.specs-table tr:nth-child(even) {
  background: #f8fafc;
}

.specs-table th, .specs-table td {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  text-align: left;
}

.specs-table th {
  width: 35%;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Cart & Checkout */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart-table th {
  background: #f1f5f9;
  padding: 14px 16px;
  font-weight: 700;
  text-align: left;
  font-size: 14px;
}

.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding: 30px 0;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  outline: none;
  background: #fff;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

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

/* Radio Payment Card Options */
.payment-option-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.payment-option-card:hover, .payment-option-card.selected {
  border-color: var(--primary);
  background: rgba(0, 180, 216, 0.04);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.7;
  animation: waPulse 2s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 60px 0 20px;
  margin-top: 60px;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 35px;
  margin-bottom: 40px;
}

.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: #94a3b8;
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .product-single-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slider-item {
    flex: 0 0 calc(50% - 10px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .nav-bar {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 26px;
  }
  .single-action-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .slider-item {
    flex: 0 0 80%;
    min-width: 220px;
  }
}
