@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #0f0f0f;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5em;
  font-weight: 700;
}

.navbar .logo span {
  color: #00e676;
}

 
.navbar nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #00e676;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  background: linear-gradient(135deg, #121212, #2e2e2e);
  color: white;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-primary {
  background: #00e676;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #00c853;
  transform: scale(1.05);
}

.hero-img img {
  width: 450px;
  border-radius: 10px;
  filter: drop-shadow(0 0 15px #00e676aa);
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 100px;
  background: #fff;
}

.feature-card {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 80px;
  margin-bottom: 15px;
}

/* FOOTER */
footer,
.footer {
  background: #0f0f0f;
  color: #ccc;
  text-align: center;
  padding: 40px 20px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-column p,
.footer-column li {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #00e676;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.social-icons img:hover {
  filter: brightness(0) invert(0.6) sepia(1) saturate(6) hue-rotate(90deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9em;
  color: #999;
}

/* PRODUCT GRID */
.product-section {
  padding: 80px 100px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}
/*   CONTACT PAGE */
.contact-section {
  padding: 80px 100px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #0f0f0f;
}

.contact-section p {
  font-size: 1.1em;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 40px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form label {
  text-align: left;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CONTACT */
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }

  .contact-map iframe {
      height: 300px;
  }
}


/* cart */

.cart-container {
    width: 90%;
    max-width: 900px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.cart-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
    color: #0f0f0f;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th, .cart-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    background: #00e676;
    color: #000;
    font-weight: 600;
    border-radius: 5px;
}

.cart-table tr:hover {
    background: #f1f1f1;
}

.cart-total {
    text-align: right;
    font-size: 1.5em;
    margin-top: 15px;
    color: #00c853;
}

.empty {
    text-align: center;
    font-size: 1.2em;
    color: #888;
    margin-top: 20px;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: #00e676;
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-checkout:hover {
    background: #00c853;
    transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
  }

  .hero-text {
      max-width: 100%;
  }

  .hero-img img {
      width: 100%;
      margin-top: 20px;
  }

  .features {
      flex-direction: column;
      padding: 40px 20px;
  }

  .footer-container {
      flex-direction: column;
      gap: 20px;
  }
}
