/* General */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #000000;
  color: #ffffff;
  padding: 10px;
}

/* Banner */

.banner {
  background: linear-gradient(90deg, #ff003c, #ff6b00, #ffec00, #00ffff);
  color: #000;
  text-align: center;
  padding: 20px;
}

.banner h1 {
  font-size: 2em;
  font-weight: bold;
}

/* Navbar */

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}

.navbar ul li {
  margin: 5px;
  position: relative;
}

.navbar a {
  display: block;
  padding: 7px 10px;
  background: #ff6b00;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #ffec00;
}

/* Dropdown */

.dropdown ul.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #ff003c;
  padding: 10px;
  border-radius: 5px;
}

.dropdown:hover ul.dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 5px 0;
}

/* Product Card */

.product-card {
  background: #1a1a1a;
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
}

.product-title {
  color: #ffec00;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.product-price {
  color: #00ffff;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-status {
  margin-bottom: 10px;
}

.product-description {
  margin: 10px 0;
}

.image-viewer {
  /*width: 300px;*/
  height: 300px;
  background: #281f5c;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.image-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-top: 7px;
}

.thumbnails img {
  width: 50px;
  cursor: pointer;
  border: 2px solid #ff6b00;
  border-radius: 5px;
}

.paypal-button-placeholder {
  background: #ff003c;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.paypal-button-placeholder:hover {
  background: #ffec00;
  color: #000;
}

/* Pagination */

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination button {
  background: #ff6b00;
  color: #000;
  border: none;
  padding: 10px 15px;
  margin: 2px;
  cursor: pointer;
  border-radius: 5px;
}

.pagination button:hover {
  background: #ffec00;
}
