/* ===== GLOBAL RESETS & VARIABLES ===== */
:root {
  --primary: #00e676;
  --primary-dark: #00c853;
  --secondary: #1a1a1a;
  --accent: #0077ff;
  --dark: #0a0a0a;
  --dark-light: #161616;
  --text: #ffffff;
  --text-light: #b0b0b0;
  --border: #2a2a2a;
  --shadow: rgba(0, 230, 118, 0.1);
  --gradient: linear-gradient(135deg, #000000, #111111, #1a1a1a);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== MODERN NAVBAR ===== */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 2.2rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text strong {
  color: var(--primary);
  font-weight: 800;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--primary);
  font-weight: 600;
}

nav a.active::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 140px 0 100px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 230, 118, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 119, 255, 0.05) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}

.primary-btn:hover::before {
  left: 100%;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  padding: 100px 0;
  background: var(--dark);
}

.categories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--text);
  position: relative;
}

.categories h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: var(--dark-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 230, 118, 0.15);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card span {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s ease;
}

.category-card:hover span {
  transform: scale(1.2);
}

.category-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: var(--primary);
}

/* ===== INFO SECTION ===== */
.info {
  padding: 100px 0;
  background: var(--dark-light);
  position: relative;
}

.info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.info .container {
  max-width: 800px;
  text-align: center;
}

.info h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.info p:last-of-type {
  margin-bottom: 0;
}

/* ===== MODERN FOOTER ===== */
.footer {
  background: #000;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-grid h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-grid h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 8px;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-grid a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-grid a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-grid p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 20px;
  }
  
  nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .categories h2,
  .info h2 {
    font-size: 2rem;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .category-card {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .primary-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-grid h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-grid a:hover {
    transform: translateY(-3px);
  }
}

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

.hero, .categories, .info {
  animation: fadeIn 0.8s ease-out;
}

.category-card {
  animation: fadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }




/* ===== PRODUCTS PAGE SPECIFIC STYLES ===== */

/* PRODUCTS HERO */
.products-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #000, #111, #1a1a1a);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 230, 118, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(0, 119, 255, 0.1) 0%, transparent 60%);
}

.products-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.products-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.products-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* CATEGORY FILTERS */
.category-filters {
  padding: 40px 0;
  background: var(--dark);
  position: sticky;
  top: 80px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--dark-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--text);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  border-color: var(--primary);
  font-weight: 600;
  box-shadow: 0 4px 15px var(--shadow);
}

.filter-btn i {
  font-size: 1rem;
}

/* PRODUCTS GRID */
.products-grid-section {
  padding: 60px 0 100px;
  background: var(--dark);
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.product-card {
  background: var(--dark-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-image {
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.product-image i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.8;
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}

.product-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.product-features li {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.original-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-buttons {
  display: flex;
  gap: 10px;
}

.product-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

.details-btn:hover {
  background: var(--primary);
  color: #000;
}

/* CATEGORY HEADER */
.category-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.category-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.category-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.category-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* EMPTY STATE */
.empty-products {
  text-align: center;
  padding: 80px 20px;
  background: var(--dark-light);
  border-radius: 16px;
  border: 2px dashed var(--border);
}

.empty-products i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-products h3 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 10px;
}

.empty-products p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 30px;
}

/* LOAD MORE BUTTON */
.load-more {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow);
}

/* RESPONSIVE FOR PRODUCTS PAGE */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2.5rem;
  }
  
  .category-header h2 {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .product-buttons {
    flex-direction: column;
  }
  
  .product-btn {
    width: 100%;
    justify-content: center;
  }
  
  .filter-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .filter-btn {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .products-hero h1 {
    font-size: 2rem;
  }
  
  .product-content {
    padding: 20px;
  }
  
  .product-price {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .product-buttons {
    width: 100%;
  }
}

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

.product-card {
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* SORTING DROPDOWN */
.sorting-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.sort-label {
  color: var(--text-light);
  font-weight: 500;
}

.sort-select {
  background: var(--dark-light);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.sort-select:focus {
  border-color: var(--primary);
  outline: none;
}

/* PRODUCT STATS */
.product-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-item {
  background: var(--dark-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  min-width: 150px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}



/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}
 /* FEATURES SECTION */
.features {
  background: #0f0f0f;
  padding: 80px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #fff;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 230, 118, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 230, 118, 0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  color: #ccc;
  font-size: 0.95rem;
}
.category-dropdown {
  width: 100%;
  max-width: 350px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(0,230,118,0.3);
  font-size: 1rem;
  outline: none;
}
.category-dropdown:hover {
  border-color: var(--primary);
}


.product-box {
  display: flex;
  gap: 30px;
  background: #111;
  padding: 30px;
  border-radius: 12px;
}

.product-box img {
  max-width: 300px;
  border-radius: 10px;
}

.product-info h1 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.4rem;
  color: #00e676;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #25D366;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
/* PRODUCT DETAIL PAGE */

.product-detail {
  background: #0f0f0f;
  padding: 60px 0;
  min-height: 100vh;
}

.product-card-detail {
  max-width: 900px;
  margin: auto;
  background: #141414;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.product-image-box {
  background: linear-gradient(135deg, #000, #1a1a1a);
  padding: 40px;
  text-align: center;
}

.product-image-box img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
}

.product-content {
  padding: 35px;
  color: #fff;
}

.product-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-content .price {
  font-size: 1.6rem;
  color: #00e676;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-content .size {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 15px;
}

.product-content .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 25px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #000;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}
/* PRODUCT GRID IMAGE FIX */

.product-card {
  background: #141414;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image wrapper */
.product-card img {
  width: 100%;
  height: 180px;           /* FIXED HEIGHT */
  object-fit: contain;     /* NO STRETCH */
  background: #0f0f0f;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 1
}


/* ===== Responsive Navbar ===== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  nav a {
    padding: 15px;
    text-align: center;
    display: block;
    border-bottom: 1px solid #222;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* ===== Responsive Navbar ===== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  nav a {
    padding: 15px;
    text-align: center;
    display: block;
    border-bottom: 1px solid #222;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0e0e0e;
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
  }

  /* css for about page */
}
.about-hero {
  background:
    linear-gradient(
      135deg,
      rgba(11, 15, 20, 0.95),
      rgba(18, 24, 35, 0.95)
    ),
    url("../assests/images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
  color: #d1d5db;
  font-size: 1.05rem;
}


.about-section {
  padding: 70px 20px;
  background: var(--light);
}

.about-section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--text);
  font-size: 1.8rem;
}

.about-section p {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  color: var(--muted);
  font-size: 1rem;
}


.light-bg {
  background: #f7f7f7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-card h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.about-list {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  color: var(--text);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.about-section strong {
  font-size: 1.1rem;
  color: var(--text);
}

.about-section p br {
  line-height: 2.2;
}


.product-detail-card{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
  background: #0f0f0f;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.product-info{
  color: #fff;
}

.product-info h1{
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info .price{
  font-size: 1.6rem;
  margin: 10px 0;
  color: #2ecc71;
}

.product-info .desc{
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 600;
}
.load-more-btn {
  display: block;
  margin: 30px auto;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

.load-more-btn:hover {
  background: #333;
}

.product-card {
  cursor: pointer;
}
/* Add these to your existing style.css or create new */

/* Dark Theme Base Styles */
body.dark-theme {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-theme .navbar {
  background-color: #1e1e1e;
  border-bottom-color: #333;
}

body.dark-theme .footer {
  background-color: #1e1e1e;
  border-top-color: #333;
}

body.dark-theme a {
  color: #bb86fc;
}

body.dark-theme a:hover {
  color: #3700b3;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  #navMenu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: inherit;
    flex-direction: column;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  #navMenu.show {
    display: flex;
  }
  
  #navMenu a {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}