/* ===== General Setup ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  min-height: 100vh;
  overflow: hidden;
  font-size: 16px; /* Fixed base font size for consistent ratios */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main content centers horizontally only */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 0;
}

/* Logo sits at the very top and stays the same size */
.logo {
  display: block;
  margin: 0 auto 32px auto;
  width: 400px; /* fixed width */
  max-width: 90vw;
  height: auto;
}

/* ===== White Info Card (fixed centered) ===== */
.info-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  padding: 32px 40px;
  border-radius: 0px;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
  text-align: center;
  max-width: 960px;
  width: 80%;
}

.info-box h2 {
  margin-top: 0;
}

/* ===== Buttons ===== */
.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.btn {
  display: block;
  margin: 0;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  background: black;
  color: white;
  transition: 0.3s;
  width: 200px;
  min-width: 120px;
  max-width: 300px;
  text-align: center;
}

.btn:hover {
  background: #444;
}

/* ===== Merch Section ===== */
.merch-column {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  width: 600px;
  min-width: 300px;
  max-width: 90vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
  padding: 32px 32px;
  border-radius: 16px;
  z-index: 10;
}

.merch-header {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 36px;
  text-align: center;
  font-weight: bold;
}

.merch-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
}

.merch-center p {
  font-size: 20px;
}

.merch-buttons {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.slideshow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

/* ===== Slides ===== */
.slide {
  display: none;
}

.slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center arrows horizontally under info */
.slideshow-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}

.slideshow-arrows button {
  background: black;
  color: white;
  border: none;
  font-size: 32px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.slideshow-arrows button:hover {
  background: #444;
}

/* ===== Cart Buttons ===== */
.cart-btn {
  position: fixed;
  top: 32px;
  right: 32px;
  background: #222;
  color: white;
  border: none;
  font-size: 32px;
  padding: 12px 24px;
  border-radius: 16px;
  cursor: pointer;
  z-index: 100;
  transition: background 0.2s;
}

.cart-btn:hover {
  background: #444;
}

.add-cart-btn {
  margin-top: 32px;
  background: #222;
  color: white;
  border: none;
  font-size: 20px;
  padding: 12px 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.add-cart-btn:hover {
  background: #444;
}

#cart-items ul {
  max-height: 45vh;
  overflow-y: auto;
  padding-right: 8px;
}

.purchase-btn {
  background: #c00;
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 16px 48px;
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 32px;
  margin-top: 16px;
  transition: background 0.2s;
  font-weight: bold;
  display: block;
  width: 80%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.purchase-btn:hover {
  background: #900;
}

/* ===== Checkout Home Button ===== */
.checkout-home-btn {
  background: #222;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 12px 32px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 32px;
  margin-bottom: 16px;
  transition: background 0.2s;
  font-weight: bold;
  display: block;
  width: 80%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-home-btn:hover {
  background: #444;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 700px) {
  .logo {
    width: 90vw;
    max-width: 90vw;
  }
  .button-group {
    gap: 24px;
  }
  .btn {
    font-size: 16px;
    width: 60vw;
    min-width: 100px;
    max-width: 90vw;
    padding: 12px 24px;
  }
  .merch-column {
    width: 90vw;
    min-width: 0;
    padding: 24px 8px;
    height: 90vh;
  }
  .merch-header {
    font-size: 24px;
  }
  .merch-center p {
    font-size: 16px;
  }
  .slideshow-arrows button,
  .cart-btn {
    font-size: 24px;
    padding: 8px 16px;
  }
  .purchase-btn {
    font-size: 18px;
    padding: 12px 24px;
  }
}