/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #000000;
    color: #333;
    line-height: 1.6;
}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
}
/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.navbar .logo a {
 
  color: #fd0101;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.logo{
  height: 34px;
}

/* Desktop Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6347;
}

/* Hamburger Icon (Mobile only) */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: white;
  display: none;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 250px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  transition: right 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: #03dc23;
}

/* Show menu when toggled */
.mobile-menu.show {
  right: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none; /* hide desktop menu */
  }

  .menu-toggle {
    display: block; /* show hamburger */
  }
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ff4747;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-column h3{
  color: #ff4747;
}
.btn {
    background-color: #ff6347;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #ff4747;
}

/* Products Section */
.products {
    padding: 60px 20px;
    background-color: #000;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff4747;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #000;
}

.product-card p {
    color: #ff6347;
    font-weight: bold;
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: #000;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff4747;
}


.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #fffefe;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact button {
    background-color: #000;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background-color: #222;
}

/* Footer */
footer {
    background-color: #0c0c0c;
    color: #fff;
    text-align: center;
    padding: 20px;
}
/* style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 50px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #222;
}

.select-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

select,
input[type="number"] {
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

select:focus,
input[type="number"]:focus {
  border-color: #000;
}

.colors {
  display: flex;
  gap: 10px;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

.color-option:hover {
  border-color: #555;
}

.btn {
  padding: 14px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #444;
}
#cart-count {
  font-weight: bold;
  color: #ff4500;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #121212;
      color: #e0e0e0;
    }

    .navbar {
      background-color: #1e1e1e;
      padding: 15px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #333;
    }

    .navbar .logo a {
      text-decoration: none;
      color: #ffffff;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #dddddd;
      font-weight: bold;
      transition: color 0.3s;
    }

    .nav-links li a:hover {
      color: #ff8800;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      background-color: #1c1c1c;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    }

    .product-image {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .product-image img {
      width: 100%;
      border-radius: 10px;
    }

    .product-details {
      flex: 1;
      padding: 20px;
    }

    .product-details h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .price {
      font-size: 1.5rem;
      color: #ff8800;
      margin: 15px 0;
    }

    .select-group {
      margin: 15px 0;
    }

    .select-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .select-group select,
    .select-group input[type="number"] {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      background-color: #2a2a2a;
      color: #f1f1f1;
    }

    .colors {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .color-option {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid #444;
      transition: border 0.3s;
    }

    .color-option:hover {
      border: 2px solid #fff;
    }

    .add-to-cart-btn {
      background-color: #000000;
      color: #ffffff;
      padding: 15px 30px;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    }

    .add-to-cart-btn:hover {
      background-color: #222222;
      transform: scale(1.03);
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
    }