@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: linear-gradient(135deg, #ff1493, #ffff00); /* bright pink to neon yellow */
  color: #000;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur817.cur'), auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #ff1493cc;
  padding: 15px 10px;
  text-align: center;
  border-bottom: 4px solid #ffff00;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #ffff00;
  text-shadow: 0 0 10px #ffff00;
}

nav ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #ffff00;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
  color: #ff66cc;
  text-shadow: 0 0 10px #ff66cc;
}

main {
  flex: 1;
  max-width: 960px;
  margin: 20px auto;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff0f6cc;
  border-radius: 20px;
  box-shadow: 0 0 20px #ff1493aa;
}

.blinkies-left,
.blinkies-right {
  position: fixed;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.blinkies-left {
  left: 5px;
}

.blinkies-right {
  right: 5px;
}

.blinkies-left img,
.blinkies-right img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  border: 2px solid #ff1493;
  box-shadow: 0 0 15px #ffff00aa;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blinkies-left img:hover,
.blinkies-right img:hover {
  transform: scale(1.1);
}

.mp3-player-section h2 {
  color: #ff1493;
  text-shadow: 0 0 10px #ff1493;
  font-size: 1.3rem;
  text-align: center;
}

.shop-columns {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-column {
  background: #ffff00cc;
  border-radius: 20px;
  padding: 20px;
  width: 420px;
  box-shadow: 0 0 20px #ff1493aa;
}

.brand-column h2 {
  color: #ff1493;
  text-align: center;
  font-size: 1.5rem;
  text-shadow: 0 0 10px #ff1493;
  margin-bottom: 15px;
}

.product {
  background: #ff149944;
  border: 2px solid #ff1493;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  color: #000;
}

.product h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #ff1493;
  text-shadow: 0 0 5px #ffff00;
}

.product p {
  font-size: 0.85rem;
}

.product strong {
  color: #ffff00;
}

.add-to-cart-btn {
  background: #ff1493;
  color: #ffff00;
  border: none;
  border-radius: 12px;
  padding: 8px 14px;
  font-family: 'Press Start 2P', cursive;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.add-to-cart-btn:hover {
  background: #ffff00;
  color: #ff1493;
}

.cart-section {
  background: #ff149944;
  border: 2px solid #ff1493;
  border-radius: 20px;
  padding: 20px;
  color: #000;
}

.cart-section h2 {
  color: #ff1493;
  text-shadow: 0 0 8px #ffff00;
  margin-top: 0;
}

#cart-items {
  list-style: none;
  padding-left: 0;
  max-height: 150px;
  overflow-y: auto;
}

#cart-items li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cart-items button {
  background: transparent;
  border: none;
  color: #ff1493;
  font-size: 1rem;
  cursor: pointer;
}

#cart-total {
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.1rem;
}

#checkout-btn {
  margin-top: 10px;
  background: #ffff00;
  color: #ff1493;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: 'Press Start 2P', cursive;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#checkout-btn:hover:not(:disabled) {
  background: #ff1493;
  color: #ffff00;
}

.shipping-info {
  background: #ffff00cc;
  border-radius: 20px;
  padding: 20px;
  color: #000;
}

.shipping-info h2 {
  color: #ff1493;
  text-shadow: 0 0 8px #ffff00;
  margin-top: 0;
}

.shipping-info form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shipping-info label {
  font-size: 0.85rem;
  font-weight: bold;
}

.shipping-info input {
  padding: 8px;
  border: 2px solid #ff1493;
  border-radius: 12px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.85rem;
}

.shipping-info button {
  background: #ff1493;
  color: #ffff00;
  border: none;
  padding: 10px;
  font-family: 'Press Start 2P', cursive;
  cursor: pointer;
  border-radius: 20px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.shipping-info button:hover {
  background: #ffff00;
  color: #ff1493;
}

footer {
  margin: 40px 0 10px 0;
  text-align: center;
  font-size: 0.7rem;
  color: #ffff00;
  text-shadow: 0 0 10px #ff1493;
}
