body {
  margin: 0;
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #000;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  align-items: flex-start;
}

.product-images {
  position: relative;
  width: 45%;
  max-width: 500px;
}

.product-slide {
  display: none;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.product-slide.active {
  display: block;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-buttons button {
  background-color: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.product-details {
  width: 45%;
}

.product-details h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  margin: 10px 0;
}

.description {
  margin-bottom: 20px;
  color: #444;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

select,
input[type="number"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.add-cart {
  display: inline-block;
  margin-top: 20px;
  background-color: black;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.add-cart:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-images,
  .product-details {
    width: 90%;
  }
}
.main-navbar {
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
}

.nav-left .logo {
  height: 50px;
}

.nav-right ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-right ul li {
  position: relative;
}

.nav-right ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
  padding: 8px;
}

.nav-right ul li a:hover {
  border-bottom: 2px solid black;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: rgb(0, 0, 0);
  border: 1px solid #ccc;
  list-style: radial-gradient();
  padding: 10px 0;
  z-index: 10;
  min-width: 160px;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  top: 35px;
  left: 0;
  min-width: 140px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  z-index: 1000;
}

.dropdown-content li {
  padding: 8px 12px;
  border-bottom: 1px solid #444;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.dropdown-content li a {
  color: #0d0d0d;
  font-weight: normal;
}

.dropdown-content li a:hover {
  color: #141414;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  user-select: none;
}

.add-cart {
  background-color: black;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.add-cart:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
