* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0f0f1a;
  color: #e0e0f0;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: linear-gradient(90deg, #3b0d6b, #0d1b73);
  box-shadow: 0 0 15px rgba(91, 33, 182, 0.7);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #a0cfff;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #7f5eff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #1f1147, #0f0f1a);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #b98bff;
  text-shadow: 0 0 8px #b98bff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.hero-btn {
  background: #6a0dad;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #6a0dad;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #581f9c;
}

/* Brands Section */
.brands {
  padding: 60px 20px;
  text-align: center;
}

.brands h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #7f5eff;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-logos img {
  width: 100px;
  filter: drop-shadow(0 0 5px #7f5eff);
  transition: transform 0.3s;
}

.brand-logos img:hover {
  transform: scale(1.1);
}

/* Product Section */
.products {
  padding: 60px 20px;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #7f5eff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.product-card {
  background: #1b1b2f;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(115, 100, 255, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 15px;
  color: #dcd9ff;
}

.buy-btn {
  background: #7f5eff;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #6247ea;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #999;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* Hamburger menu button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile nav toggle styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: #1f1147;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }
}
/* Brand Section Titles */
.brand-section {
  padding: 50px 20px;
  text-align: center;
  border-bottom: 1px solid #2a2a40;
}

.brand-section h2 {
  font-size: 2rem;
  color: #7f5eff;
  margin-bottom: 20px;
}

.brand-logo {
  width: 120px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 5px #7f5eff);
}

/* Reuse existing .product-grid & .product-card styles */
/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background: #0e0e1a;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.2rem;
  color: #7f5eff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #7f5eff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(127, 94, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #7f5eff;
}
/* Contact Page Styling */
.contact-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  color: #ddd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-info {
  text-align: center;
  margin-bottom: 50px;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #7f5eff;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #7f5eff;
}

.contact-info p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 30px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-card {
  background: #1a1a2e;
  padding: 25px 30px;
  border-radius: 15px;
  width: 260px;
  box-shadow: 0 0 20px #7f5eff88;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 0 30px #7f5effcc;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #7f5eff;
  font-size: 1.4rem;
}

.contact-link {
  color: #bbb;
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-link:hover {
  color: #7f5eff;
  text-decoration: underline;
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

/* Contact Form Styling */
.contact-form-section h2 {
  text-align: center;
  color: #7f5eff;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #7f5eff;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input,
#contact-form textarea {
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  background: #222239;
  color: #eee;
  font-size: 1rem;
  resize: none;
  box-shadow: inset 0 0 8px #7f5eff55;
  transition: box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 12px #7f5effcc;
}

#contact-form button {
  padding: 15px 0;
  border: none;
  border-radius: 10px;
  background: #7f5eff;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 15px #7f5effaa;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#contact-form button:hover {
  background: #6a4fff;
  box-shadow: 0 0 25px #7f5effee;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  #contact-form {
    max-width: 100%;
  }
}
