/* ============================================
   ROG Security Solutions — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (from provided tokens) --- */
:root {
  --color-background: 255,255,255;
  --color-secondary-background: 237,237,237;
  --color-primary: 196,48,28;
  --color-text-heading: 0,0,0;
  --color-foreground: 0,0,0;
  --color-subtext: 77,77,77;
  --color-border: 229,229,229;
  --color-button: 34,163,158;
  --color-button-text: 255,255,255;
  --color-secondary-button: 238,236,236;
  --color-secondary-button-text: 0,0,0;
  --color-field: 255,255,255;
  --color-field-text: 0,0,0;
  --color-link: 0,0,0;
  --color-badge-sale: #cb321e;
  --color-badge-sale-text: #FFFFFF;
  --color-badge-new: #fa2ce1;
  --color-badge-new-text: #FFFFFF;
  --color-cart-bubble: #D63A2F;

  --font-body-family: 'Archivo', sans-serif;
  --font-body-weight: 400;
  --font-body-weight-bold: 600;
  --font-body-weight-bolder: 700;
  --font-heading-weight: 700;

  --buttons-radius: 0.5rem;
  --inputs-radius: 10rem;
  --blocks-radius: 1rem;
  --pcard-radius: 1rem;
  --badges-radius: 4rem;
  --page-width: 1700px;

  --animation-default: .5s cubic-bezier(.3, 1, .3, 1);
  --animation-fast: .3s cubic-bezier(.7, 0, .3, 1);
  --animation-button: .4s ease;

  --header-height: 80px;
  --section-gap: 5rem;

  /* Accent palette */
  --teal: rgb(34, 163, 158);
  --teal-dark: rgb(20, 130, 126);
  --teal-light: rgba(34, 163, 158, 0.08);
  --red: rgb(196, 48, 28);
  --red-light: rgba(196, 48, 28, 0.08);
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --gold: #c5a55a;
}

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] body {
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--animation-fast);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* --- Section Common --- */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.section-title {
  font-size: 3.2rem;
  font-weight: var(--font-heading-weight);
  color: rgb(var(--color-text-heading));
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 0.8rem;
}

[dir="rtl"] .section-title::after {
  margin-right: 0;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: var(--teal);
  color: #fff;
  font-weight: var(--font-body-weight-bold);
  font-size: 1.4rem;
  border-radius: var(--buttons-radius);
  transition: all var(--animation-button);
  letter-spacing: 0.02em;
}

.view-all-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(34, 163, 158, 0.35);
}

.view-all-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--animation-fast);
}

[dir="rtl"] .view-all-btn svg {
  transform: scaleX(-1);
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

[dir="rtl"] .view-all-btn:hover svg {
  transform: translateX(-4px) scaleX(-1);
}


/* ===========================================
   HEADER
   =========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow var(--animation-default);
}

.header-top {
  background: var(--dark);
  color: #fff;
  padding: 0.6rem 0;
  font-size: 1.2rem;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-top-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.header-top-info svg {
  width: 14px;
  height: 14px;
  fill: var(--teal);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: var(--font-body-weight-bold);
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--badges-radius);
  transition: all var(--animation-fast);
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: var(--teal);
  background: rgba(34, 163, 158, 0.15);
}

.lang-toggle svg {
  width: 14px;
  height: 14px;
}

.header-main {
  padding: 1.2rem 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.logo {
  flex-shrink: 0;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo-brand {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-brand span {
  color: var(--gold);
}

.logo-sub {
  font-size: 0.9rem;
  color: rgb(var(--color-subtext));
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.search-bar {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.search-bar input {
  width: 100%;
  height: 4.6rem;
  padding: 0 5rem 0 2rem;
  border: 2px solid rgb(var(--color-border));
  border-radius: var(--inputs-radius);
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  color: rgb(var(--color-field-text));
  background: rgb(var(--color-field));
  transition: border-color var(--animation-fast);
  outline: none;
}

[dir="rtl"] .search-bar input {
  padding: 0 2rem 0 5rem;
}

.search-bar input:focus {
  border-color: var(--teal);
}

.search-bar input::placeholder {
  color: rgb(var(--color-subtext));
}

.search-bar button {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(var(--color-subtext));
  transition: color var(--animation-fast);
}

[dir="rtl"] .search-bar button {
  right: auto;
  left: 1.6rem;
}

.search-bar button:hover {
  color: var(--teal);
}

.search-bar button svg {
  width: 20px;
  height: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}

.header-action-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: rgb(var(--color-foreground));
  font-size: 1.1rem;
  font-weight: 500;
  transition: color var(--animation-fast);
  padding: 0.4rem;
}

.header-action-btn:hover {
  color: var(--teal);
}

.header-action-btn svg {
  width: 24px;
  height: 24px;
}

.header-action-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--color-cart-bubble);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

[dir="rtl"] .header-action-btn .badge {
  right: auto;
  left: -4px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.8rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgb(var(--color-foreground));
  border-radius: 2px;
  transition: all var(--animation-fast);
}

/* Navigation */
.header-nav {
  background: var(--dark);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: var(--font-body-weight-bold);
  transition: all var(--animation-fast);
  position: relative;
  white-space: nowrap;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--teal);
  border-radius: 2px 2px 0 0;
  transition: transform var(--animation-fast);
}

.nav-item a:hover,
.nav-item a.active {
  background: rgba(255,255,255,0.05);
  color: var(--teal);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}


/* ===========================================
   HERO BANNER
   =========================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0a3d62 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.7) 50%, rgba(10, 61, 98, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 0;
}

.hero-text {
  flex: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem;
  background: rgba(34, 163, 158, 0.15);
  border: 1px solid rgba(34, 163, 158, 0.3);
  border-radius: var(--badges-radius);
  color: var(--teal);
  font-size: 1.3rem;
  font-weight: var(--font-body-weight-bold);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.6rem;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title span {
  background: linear-gradient(135deg, var(--teal), #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3.2rem;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: var(--buttons-radius);
  transition: all var(--animation-button);
  border: 2px solid var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 163, 158, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: var(--buttons-radius);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--animation-button);
}

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

.hero-visual {
  flex: 1;
  max-width: 500px;
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--blocks-radius);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.hero-stats {
  display: flex;
  gap: 3.2rem;
  margin-top: 3.2rem;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}


/* ===========================================
   CATEGORY CARDS
   =========================================== */
.categories {
  padding: 5rem 0;
  background: rgb(var(--color-secondary-background));
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.category-card {
  position: relative;
  background: #fff;
  border-radius: var(--blocks-radius);
  overflow: hidden;
  transition: all var(--animation-default);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.category-card-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.category-card-image svg {
  width: 80px;
  height: 80px;
  color: var(--teal);
  opacity: 0.8;
  transition: transform var(--animation-default);
}

.category-card:hover .category-card-image svg {
  transform: scale(1.1);
}

.category-card-body {
  padding: 2rem;
  text-align: center;
}

.category-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(var(--color-text-heading));
  margin-bottom: 0.4rem;
}

.category-card-count {
  font-size: 1.3rem;
  color: rgb(var(--color-subtext));
}

.category-card-arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--animation-fast);
}

[dir="rtl"] .category-card-arrow {
  right: auto;
  left: 1.6rem;
}

[dir="rtl"] .category-card-arrow svg {
  transform: scaleX(-1);
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.category-card-arrow svg {
  width: 16px;
  height: 16px;
}


/* ===========================================
   POPULAR BRANDS
   =========================================== */
.brands {
  padding: 4rem 0;
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollBrands 30s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 3.2rem;
  border: 1px solid rgb(var(--color-border));
  border-radius: var(--blocks-radius);
  min-width: 160px;
  height: 72px;
  background: #fff;
  transition: all var(--animation-fast);
  cursor: pointer;
}

.brand-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(34, 163, 158, 0.12);
  transform: translateY(-2px);
}

.brand-item span {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgb(var(--color-foreground));
  letter-spacing: 0.05em;
  opacity: 0.6;
  transition: opacity var(--animation-fast);
}

.brand-item:hover span {
  opacity: 1;
  color: var(--teal);
}


/* ===========================================
   PRODUCT CARDS (shared styles)
   =========================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.4rem;
}

.product-card {
  background: #fff;
  border-radius: var(--pcard-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all var(--animation-default);
  position: relative;
  border: 1px solid rgb(var(--color-border));
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--teal);
}

.product-card-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--badges-radius);
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 5;
  letter-spacing: 0.02em;
}

[dir="rtl"] .product-card-badge {
  left: auto;
  right: 1.2rem;
}

.product-card-badge.new {
  background: var(--color-badge-new);
  color: var(--color-badge-new-text);
}

.product-card-badge.sale {
  background: var(--color-badge-sale);
  color: var(--color-badge-sale-text);
}

.product-card-badge.hot {
  background: #1c52d7;
  color: #fff;
}

.product-card-image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #fafafa;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--animation-default);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-actions {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 0.8rem;
  opacity: 0;
  transition: all var(--animation-fast);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transition: all var(--animation-fast);
  color: rgb(var(--color-foreground));
}

.product-action-btn:hover {
  background: var(--teal);
  color: #fff;
  transform: scale(1.1);
}

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

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

.product-card-brand {
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.product-card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(var(--color-text-heading));
  margin-bottom: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: var(--badges-radius);
  font-size: 1.1rem;
  font-weight: 600;
}

.spec-tag svg {
  width: 12px;
  height: 12px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(var(--color-border));
}

.product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
}

.product-price-old {
  font-size: 1.3rem;
  color: rgb(var(--color-subtext));
  text-decoration: line-through;
  margin-left: 0.6rem;
  font-weight: 400;
}

[dir="rtl"] .product-price-old {
  margin-left: 0;
  margin-right: 0.6rem;
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: var(--buttons-radius);
  transition: all var(--animation-button);
}

.add-to-cart-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 163, 158, 0.3);
}

.add-to-cart-btn svg {
  width: 16px;
  height: 16px;
}


/* ===========================================
   STORAGE & NETWORK SOLUTIONS
   =========================================== */
.storage-section {
  background: rgb(var(--color-secondary-background));
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
}

.network-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 3.2rem 2rem;
  background: #fff;
  border-radius: var(--blocks-radius);
  border: 1px solid rgb(var(--color-border));
  transition: all var(--animation-default);
  cursor: pointer;
  text-align: center;
}

.network-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.network-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), rgba(34, 163, 158, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-default);
}

.network-card:hover .network-card-icon {
  background: var(--teal);
}

.network-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
  transition: color var(--animation-fast);
}

.network-card:hover .network-card-icon svg {
  color: #fff;
}

.network-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(var(--color-text-heading));
}

.network-card-desc {
  font-size: 1.3rem;
  color: rgb(var(--color-subtext));
  line-height: 1.5;
}


/* ===========================================
   SUNELL / CAMERAS SECTION
   =========================================== */
.cameras-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.cameras-section .section-title {
  color: #fff;
}

.cameras-section .section-title::after {
  background: var(--teal);
}

.cameras-section .product-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.cameras-section .product-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--teal);
}

.cameras-section .product-card-body {
  background: transparent;
}

.cameras-section .product-card-title {
  color: #fff;
}

.cameras-section .product-card-brand {
  color: var(--teal);
}

.cameras-section .product-card-footer {
  border-top-color: rgba(255,255,255,0.1);
}

.cameras-section .product-card-image {
  background: rgba(255,255,255,0.03);
}

.cameras-section .view-all-btn {
  border: 1px solid rgba(255,255,255,0.2);
}


/* ===========================================
   FEATURES BAR
   =========================================== */
.features-bar {
  background: var(--teal);
  padding: 3.2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #fff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 1.2rem;
  opacity: 0.8;
}


/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 6rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo-text {
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

[dir="rtl"] .footer-about .logo-text {
  align-items: flex-end;
}

.footer-about .logo-brand {
  color: #fff;
}

.footer-about p {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-fast);
}

.footer-social a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  padding-bottom: 1rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

[dir="rtl"] .footer-heading::after {
  left: auto;
  right: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--animation-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

[dir="rtl"] .footer-links a:hover {
  transform: translateX(-4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--teal);
}

.footer-payments {
  display: flex;
  gap: 1rem;
}

.footer-payments span {
  padding: 0.4rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}


/* ===========================================
   WHATSAPP FLOATING BUTTON
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--animation-fast);
  animation: pulse 2s infinite;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 3rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}


/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

[dir="rtl"] @keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.3, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .network-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 400px;
  }
  
  .search-bar {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .header-nav .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  
  .header-nav .nav-list.open {
    display: flex;
  }
  
  .nav-item a {
    padding: 1.4rem 2.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .header-top-info {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  
  .category-card-image {
    height: 140px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .network-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-outline {
    justify-content: center;
  }
  
  .header-main .container {
    gap: 1.2rem;
  }
  
  .logo-brand {
    font-size: 2.2rem;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(var(--color-secondary-background));
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--color-border));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--color-subtext));
}

/* --- Selection --- */
::selection {
  background: var(--teal);
  color: #fff;
}

/* ===========================================
   PRODUCT IMAGE PLACEHOLDER (SVG-based)
   =========================================== */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 0;
}

.product-img-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
}

.product-img-placeholder span {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

/* ===========================================
   PRODUCT CARD BUTTON GROUP
   =========================================== */
.product-card-btns {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.wa-btn {
  background: #25D366 !important;
  padding: 0.8rem 1rem !important;
  min-width: unset;
}

.wa-btn:hover {
  background: #1da851 !important;
}

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

/* Wishlist active state */
.wishlist-toggle-btn.active {
  background: var(--red) !important;
  color: #fff !important;
}

.wishlist-toggle-btn.active svg {
  fill: #fff;
}

/* ===========================================
   QUICK VIEW MODAL
   =========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  border-radius: var(--blocks-radius);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(var(--color-secondary-background));
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-fast);
  z-index: 10;
  cursor: pointer;
  border: none;
  line-height: 1;
  color: rgb(var(--color-foreground));
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 1.6rem;
}

.modal-close:hover {
  background: var(--red);
  color: #fff;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 2rem;
  border-radius: var(--blocks-radius) 0 0 var(--blocks-radius);
  overflow: hidden;
}

[dir="rtl"] .modal-image {
  border-radius: 0 var(--blocks-radius) var(--blocks-radius) 0;
}

.modal-image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.modal-image .product-img-placeholder {
  border-radius: 0;
  min-height: 280px;
}

.modal-info {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modal-brand {
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(var(--color-text-heading));
  line-height: 1.3;
}

.modal-desc {
  font-size: 1.4rem;
  color: rgb(var(--color-subtext));
  line-height: 1.7;
}

.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.modal-specs .spec-tag {
  padding: 0.5rem 1.2rem;
  font-size: 1.2rem;
}

.modal-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.modal-actions .btn-primary,
.modal-actions .btn-outline {
  flex: 1;
  justify-content: center;
  min-width: 140px;
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
}

.modal-actions .btn-outline {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.modal-actions .btn-outline:hover {
  background: #1da851;
  border-color: #1da851;
}

@media (max-width: 600px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-image {
    border-radius: var(--blocks-radius) var(--blocks-radius) 0 0;
    min-height: 200px;
  }
  .modal-info {
    padding: 2rem;
  }
}

/* ===========================================
   CART SIDEBAR
   =========================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.3, 1, .3, 1);
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}

[dir="rtl"] .cart-sidebar {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.cart-overlay.active .cart-sidebar {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-size: 2rem;
  font-weight: 700;
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(var(--color-secondary-background));
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all var(--animation-fast);
}

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

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 4rem 2rem;
  color: rgb(var(--color-subtext));
  text-align: center;
}

.cart-empty svg {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

.cart-empty p {
  font-size: 1.6rem;
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgb(var(--color-border));
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  position: relative;
  transition: all var(--animation-fast);
}

.cart-item:hover {
  border-color: var(--teal);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 0.6rem;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

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

.cart-item-img .mini-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.6rem;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-text-heading));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}

.cart-item-brand {
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 600;
}

.cart-item-remove {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgb(var(--color-subtext));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-fast);
}

[dir="rtl"] .cart-item-remove {
  right: auto;
  left: 0.6rem;
}

.cart-item-remove:hover {
  background: var(--red-light);
  color: var(--red);
}

.cart-footer {
  padding: 2rem 2.4rem;
  border-top: 1px solid rgb(var(--color-border));
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

/* ===========================================
   SEARCH RESULTS DROPDOWN
   =========================================== */
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgb(var(--color-border));
  border-radius: 0 0 var(--blocks-radius) var(--blocks-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.6rem;
  cursor: pointer;
  transition: background var(--animation-fast);
  border-bottom: 1px solid rgba(var(--color-border), 0.5);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--teal-light);
}

.search-result-item .sr-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-item .sr-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-result-item .sr-text {
  flex: 1;
}

.search-result-item .sr-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-text-heading));
}

.search-result-item .sr-brand {
  font-size: 1.1rem;
  color: var(--teal);
}

.search-no-results {
  padding: 2rem;
  text-align: center;
  color: rgb(var(--color-subtext));
  font-size: 1.3rem;
}

/* ===========================================
   TOAST NOTIFICATION
   =========================================== */
.toast {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: #fff;
  padding: 1.2rem 2.4rem;
  border-radius: var(--badges-radius);
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(.3, 1, .3, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: var(--teal);
}

.toast.error {
  background: var(--red);
}

.toast svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===========================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES
   =========================================== */

/* Tablet & Smaller Desktop */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Large Phones */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
    padding: 3rem 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 3.2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  /* Header adjustments */
  .header-main .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .search-bar {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
  
  .logo {
    order: 2;
    margin-right: auto;
    margin-left: auto;
  }
  
  [dir="rtl"] .logo {
    margin-right: auto;
    margin-left: auto;
  }
  
  .header-actions {
    order: 3;
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: flex;
    order: 1;
    position: relative;
    z-index: 3000;
  }
  
  /* Navigation hidden by default, shown via slide-out */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0; /* Or right for RTL */
    width: 280px;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform var(--animation-default);
    padding-top: 60px;
    box-shadow: 5px 0 30px rgba(0,0,0,0.5);
  }
  
  [dir="rtl"] .header-nav {
    left: auto;
    right: 0;
    transform: translateX(100%);
  }
  
  .header-nav.active {
    transform: translateX(0);
  }

  /* Override the ≤992px dropdown rules so links show inside the drawer */
  .header-nav .nav-list {
    display: flex;
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-item a {
    width: 100%;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  /* Sections padding */
  .section {
    padding: 3rem 0;
  }
  
  /* Categories Grid */
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer Grid */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}
