* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  min-height: 100vh;
  background: #0b1a2f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-x: hidden;
}

/* video background – dark blue overlay with blue cast */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background: #0a1a2e;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
	rgba(0, 40, 80, 0.45),
	rgba(10, 30, 70, 0.35),
	rgba(0, 20, 60, 0.25);
  backdrop-filter: blur(1px);
  mix-blend-mode: multiply;
}

.blue-cast {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(0, 80, 180, 0.15), rgba(0, 20, 60, 0.4));
  pointer-events: none;
}

.store-container {
  max-width: 1280px;
  width: 100%;
  background: rgba(10, 25, 50, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 1.8rem 2rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

/* ===== RADIO HEADER – centered ===== */
.radio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0;
  border-bottom: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 8px;
  margin-bottom: 0px;
}

.brand i {
  font-size: 3.4rem;
  color: #8cd4ff;
  filter: drop-shadow(0 0 8px #00a6ff);
  animation: pulse-signal 2s infinite;
}

.brand h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e6f7ff;
  text-shadow: 0 0 12px #0088ff, 0 0 30px #0044aa;
  background: linear-gradient(135deg, #b3e4ff, #7fcaff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* ===== T-SHIRT GRID – max 3 columns ===== */
.tshirt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.8rem;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

/* Responsive: 2 columns on medium screens */
@media (max-width: 900px) {
  .tshirt-grid {
	grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 column on small screens */
@media (max-width: 600px) {
  .tshirt-grid {
	grid-template-columns: 1fr;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
  }
}

.tshirt-card {
  background: rgba(12, 30, 55, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 1.2rem 1rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(0, 180, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), 0 0 0 1px #003b6b inset;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

.tshirt-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #4db8ff;
  box-shadow: 0 20px 40px rgba(0, 80, 200, 0.5), 0 0 20px #0077ff55;
  background: rgba(16, 40, 72, 0.8);
}

/* ===== IMAGE WRAPPER ===== */
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
  border: 1px solid #2d6699;
  transition: 0.3s ease;
  background: #0a1a3a;
  cursor: pointer;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d0d0d0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: 6px;
}

.tshirt-card:hover .image-wrapper::before {
  opacity: 1;
}

.tshirt-card:hover .image-wrapper {
  border-color: #7fcbff;
  box-shadow: 0 0 24px #0066dd88;
}

.tshirt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  position: relative;
  z-index: 1;
  mix-blend-mode: normal;
}

/* ===== NEW SASH ===== */
.new-sash {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3366;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.5), 0 0 20px rgba(255, 51, 102, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  background: rgba(255, 51, 102, 0.92);
  transform: rotate(2deg);
  z-index: 2;
  animation: pulse-sash 2s infinite;
  pointer-events: none;
}

@keyframes pulse-sash {
  0% { box-shadow: 0 4px 12px rgba(255, 51, 102, 0.5), 0 0 20px rgba(255, 51, 102, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(255, 51, 102, 0.8), 0 0 40px rgba(255, 51, 102, 0.5); }
  100% { box-shadow: 0 4px 12px rgba(255, 51, 102, 0.5), 0 0 20px rgba(255, 51, 102, 0.3); }
}

.tshirt-name {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin: 0.8rem 0 0.25rem;
  color: #d4ecff;
  text-shadow: 0 2px 4px #00000055;
  font-family: 'Rajdhani', sans-serif;
  pointer-events: none;
}

/* ===== PRICE ===== */
.tshirt-price {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.6rem;
  color: #b3e4ff;
  background: #0f2942;
  padding: 0.15rem 1.4rem;
  border-radius: 6px;
  display: inline-block;
  margin: 0.2rem 0 0.2rem;
  border: 1px solid #0088dd;
  box-shadow: inset 0 0 8px #003f77;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  width: auto;
  min-width: 120px;
  pointer-events: none;
}

.tshirt-price small {
  font-size: 1rem;
  font-weight: 400;
  color: #85b9e6;
}

.tshirt-card:hover .tshirt-price {
  background: #1a3f66;
  border-color: #7fcbff;
  box-shadow: 0 0 24px #0077ff66, inset 0 0 12px #0088ff;
  transform: scale(1.04);
  color: #e6f7ff;
}

/* ===== DESCRIPTION ===== */
.tshirt-description {
  font-size: 0.85rem;
  color: #a0c4e8;
  margin-top: 0.5rem;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  line-height: 1.4;
  opacity: 0.8;
  font-weight: 300;
  padding: 0 0.2rem 0;
  pointer-events: none;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(0, 100, 255, 0.3), 0 0 120px rgba(0, 50, 150, 0.2);
  border: 2px solid rgba(0, 180, 255, 0.3);
  background-color:#ffffff;
}

.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(255, 51, 102, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: #ff1a4f;
  box-shadow: 0 4px 30px rgba(255, 51, 102, 0.6);
}

.lightbox-caption {
  color: #b3d9ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 100, 255, 0.3);
  background: rgba(10, 25, 50, 0.7);
  padding: 0.5rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 180, 255, 0.2);
  backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== FOOTER ===== */
.store-footer {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: none;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: #8ab9e0;
  font-weight: 400;
  opacity: 0.85;
  text-shadow: 0 2px 6px #00000066;
  font-family: 'Rajdhani', sans-serif;
}

.store-footer i {
  margin-right: 8px;
  color: #5fa3d4;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .store-container {
	padding: 1.2rem 1rem 1.5rem;
	border-radius: 6px;
  }
  .radio-header {
	margin-bottom: 1.2rem;
  }
  .brand h1 {
	font-size: 2.3rem;
	letter-spacing: 2px;
  }
  .brand i {
	font-size: 2.3rem;
  }
  .tshirt-grid {
	gap: 1.5rem;
	margin-bottom: 0.3rem;
  }
  .tshirt-price {
	font-size: 1.4rem;
	min-width: 100px;
	padding: 0.15rem 1rem;
  }
  .store-footer {
	font-size: 0.85rem;
  }
  .new-sash {
	font-size: 0.6rem;
	padding: 0.2rem 0.7rem;
	top: 8px;
	right: 8px;
  }
  .tshirt-description {
	font-size: 0.75rem;
	min-height: 1.6rem;
	margin-top: 0.7rem;
  }
  .lightbox-content {
	gap: 1rem;
  }
  .lightbox-close {
	width: 40px;
	height: 40px;
	font-size: 1.4rem;
	top: -10px;
	right: -10px;
  }
  .lightbox-caption {
	font-size: 1rem;
	padding: 0.4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .brand h1 {
	font-size: 1.5rem;
  }
  .radio-header {
	gap: 0.1rem;
	margin-bottom: 1rem;
  }
  .tshirt-card {
	padding: 0.8rem 0.5rem 1.2rem;
  }
  .store-footer {
	font-size: 0.8rem;
	margin-top: 0.3rem;
  }
  .new-sash {
	font-size: 0.5rem;
	padding: 0.15rem 0.6rem;
	top: 6px;
	right: 6px;
  }
  .tshirt-description {
	font-size: 0.7rem;
	min-height: 1.4rem;
	margin-top: 0.1rem;
  }
  .lightbox {
	padding: 1rem;
  }
  .lightbox-close {
	width: 35px;
	height: 35px;
	font-size: 1.2rem;
	top: -8px;
	right: -8px;
  }
  .lightbox-caption {
	font-size: 0.9rem;
	padding: 0.3rem 1rem;
  }
}

@keyframes pulse-signal {
  0% { opacity: 0.7; text-shadow: 0 0 4px #0088ff; }
  50% { opacity: 1; text-shadow: 0 0 20px #00a6ff, 0 0 40px #0044aa; }
  100% { opacity: 0.7; text-shadow: 0 0 4px #0088ff; }
}

::-webkit-scrollbar {
  width: 8px;
  background: #0b1a2f;
}
::-webkit-scrollbar-thumb {
  background: #1b4b77;
  border-radius: 6px;
}