/* Reset margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, sans-serif;
    background: #000000;
    color: #fff;
    line-height: 1.5;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #000000;
    flex-wrap: wrap;
  }
  .currency-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
    margin-left: 1rem;
  }
  
  .currency-toggle select {
    padding: 0.25rem 0.5rem;
    background: #222;
    color: white;
    border: none;
    border-radius: 4px;
  }
  
  
  .nav-logo {
    height: 40px;
    width: auto;
  }
  
  .nav-right a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
  }
  
  .nav-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  /* Hero section */
  .hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }
  
  .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
  }
  
  .cta-button {
    background: red;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Sections */
  .catalog-container,
  .about-container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
  }
  
  .catalog-title,
  .about-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ff4c4c;
  }
  
  /* Products */
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .product-card {
    background: #222;
    border-radius: 10px;
    padding: 1rem;
    width: 250px;
    text-align: center;
  }
  
  .product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .product-card button {
    margin-top: 1rem;
    padding: 10px 15px;
    border: none;
    background: #ff4c4c;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .product-card button:hover {
    background: #e63838;
  }

  
  
  /* About Us Team */
  .team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
  }
  
  .team-member {
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    text-align: center;
  }
  
  /* Fade Sections */
  .fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: none;
  }
  
  .fade-section.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .nav-right {
      justify-content: center;
      margin-top: 1rem;
    }
  
    .hero {
      height: 40vh;
    }
  
    .product-card,
    .team-member {
      width: 100%;
    }
  
    .catalog-container,
    .about-container {
      padding: 1rem;
    }
  
    .hero-text h2 {
      font-size: 1.5rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  }

  #contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  background: #222;
  color: white;
  font-size: 1rem;
}

#contact-form button {
  padding: 10px 20px;
  background: #ff4c4c;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact-form button:hover {
  background: #e03838;
}

/* 🔧 Form Inputs (Text, Select, Textarea) */
#commission-form input[type="text"],
#commission-form input[type="email"],
#commission-form select,
#commission-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  background: #2a2a2a;
  color: white;
  font-size: 1rem;
}

/* 🔘 Checkbox Group Layout */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* ✅ Checkbox + Label Style */
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff4c4c;
  cursor: pointer;
}

/* 📩 Submit Button */
#commission-form button {
  padding: 10px 20px;
  background: #ff4c4c;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#commission-form button:hover {
  background: #e03838;
}

// Product.html
body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  margin: 0;
  padding: 0;
}

.product-page {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  background: #111;
}

.product-images {
  flex: 1;
  min-width: 300px;
}

#main-product-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: border 0.3s;
}

.thumbnail:hover {
  border: 2px solid #ff4c4c;
}

.product-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  margin-bottom: 1rem;
}

.product-price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffb347;
}

.product-info select,
.product-info button {
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.add-to-cart {
  background: #ff4c4c;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-cart:hover {
  background: #e94444;
}

.cta-button {
  text-decoration: none;
  background: #444;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  display: inline-block;
}

.cta-button:hover {
  background: #666;
}
.cart-section {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  background-color: #1a1a1a;
  color: white;
  border-radius: 10px;
}
.cart-total {
  margin: 1rem 0;
}
.checkout-button {
  background: #ff4c4c;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
select, input[type="email"] {
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
  margin-top: 0.25rem;
  width: 100%;
}
label {
  margin-top: 1rem;
  display: block;
}

.cart-item {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.cart-item-image {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-controls button {
  padding: 5px 10px;
  cursor: pointer;
}

.site-footer {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    color: #ccc;
    text-align: center;
    margin-top: 3rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    margin: 1rem 0;
  }
  
  .footer-links a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
  }
  
  .footer-links a:hover {
    color: #ff4c4c;
  }
  
  .footer-credit {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
  }
  

  