/* ================= GLOBAL STYLES ================= */

body {
  background-color: #0e0e0e;
  color: #f8f5f0;
  font-family: 'Poppins', sans-serif;
}

/* Pre-order */

.product-img-wrapper {
  position: relative;
}

.preorder-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c8a44d;
  color: white;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ================= PRODUCT SECTION ================= */

.product-section {
  border-bottom: 1px solid #1f1f1f;
  padding: 50px 0;
}

/* ================= IMAGES ================= */

.product-image {
  border-radius: 8px;
  transition: 0.4s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid #2a2a2a;
  margin-right: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.thumbnail:hover {
  border-color: #d4af37;
}

/* ================= OPTION CIRCLES ================= */

.option-circle-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.option-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  cursor: pointer;
}

.option-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.option-item.selected .option-circle {
  border: 2px solid #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
  transform: scale(1.1);
}

.option-label {
  margin-top: 6px;
  font-size: 12px;
  color: #ccc;
  transition: 0.3s ease;
}

.option-item.selected .option-label {
  color: #d4af37;
  font-weight: 500;
}

/* ================= BUTTON ================= */

.btn-gold {
  background-color: #d4af37;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background-color: #b8962e;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .option-circle-container {
    gap: 18px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .option-item {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .option-circle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .option-label {
    font-size: 13px;
    margin-top: 8px;
  }
}

