/* Base styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background-image: url('DigitalDojo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
  transition: background-position 0.1s ease-out;
  position: relative;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* overlay */
  z-index: -1;
}

header {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid #00bfff;
}

header h1 {
  color: #00bfff;
  font-size: 2rem;
  margin: 0;
}

.section {
  margin: 40px auto;
  max-width: 1400px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 12px #00bfff;
}

.section h2 {
  text-align: center;
  color: #00bfff;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.dino-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1600px;
}

.dino-item {
  width: 220px;
  background-color: #1a1a1a;
  border: 2px solid #00bfff;
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px transparent;
}

.dino-item:hover {
  box-shadow: 0 0 20px #00bfff, 0 0 30px #00bfff inset;
  transform: translateY(-5px);
  cursor: pointer;
}


.dino-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.dino-item h3 {
  color: #00bfff;
  font-size: 1.2rem;
  margin: 10px 0;
}

.includes {
  list-style-type: square;
  color: #ffa600;
  padding-left: 15px;
  text-align: left;
  margin: 10px 0;
  font-size: 0.95rem;
}

.includes li {
  margin: 5px 0;
  text-shadow: 1px 1px 2px #000;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #111;
  border-bottom: 2px solid #00bfff;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #00bfff;
  margin: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00bfff;
}

.paypal-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #4fa9f7;
  color: #111;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.paypal-btn:hover {
  background-color: #00bfff;
  color: #000;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00bfff;
  margin: 10px 0;
  text-align: center;
}

.payment-icons img {
  margin-top: 8px;
  width: 100%;
  max-width: 130px;
  opacity: 0.9;
}

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      background-color: #1a1a1a;
      color: #fff;
      font-size: 1rem;
    }
    th, td {
      border: 1px solid #00bfff;
      padding: 12px;
      text-align: center;
    }
    th {
      background-color: #111;
      color: #00bfff;
      font-size: 1.1rem;
    }
    tr:hover {
      background-color: #222;
    }
    .note-box {
      background-color: #111;
      padding: 15px;
      margin-top: 30px;
      border: 2px dashed #00bfff;
      border-radius: 8px;
    }
    .note-box p {
      color: #ffa600;
      margin: 0;
    }
    a.fake-link {
      color: #00bfff;
      text-decoration: underline;
      cursor: pointer;
    }
    
.cart-wrapper {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
  border-radius: 15px;
  border: 2px solid #00bfff;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

.cart-wrapper ul {
  list-style: none;
  padding-left: 0;
}

.cart-wrapper li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.cart-wrapper li button {
  background: darkred;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-wrapper li button:hover {
  background: crimson;
}

.cart-btn-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.empty-cart-btn {
  background-color: #8b0000;
  font-family: 'Orbitron', sans-serif;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px #00bfff;
  text-decoration: none;
  display: inline-block;
}

.empty-cart-btn:hover {
  background-color: #b30000;
  box-shadow: 0 0 15px #ff0000;
}

#cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
}