/* =========================
   SHOOTEROFIO STORE STYLES
   ========================= */

body {
  margin: 0;
  background-color: #0c0c0c;
  color: white;
  font-family: "Hitmarker Text", sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.9);
  padding: 16px 48px;
  border-bottom: 1px solid #222;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.nav-left .logo {
  font-family: "Hitmarker Text", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.nav-center a {
  margin: 0 14px;
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.nav-center a:hover,
.nav-center a.active {
  color: #fff;
}

.nav-right .user-tag {
  font-weight: 600;
  background: #111;
  padding: 8px 14px;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: background-image 0.6s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  font-family: "Hitmarker Text", sans-serif;
  letter-spacing: 3px;
  color: #f6c945;
  margin-bottom: 1rem;
}

.btn-get {
  background-color: #f6c945;
  color: black;
  border: none;
  padding: 14px 30px;
  font-family: "Hitmarker Text", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-get:hover {
  background-color: #fff;
}

/* Carousel Thumbnails */
.carousel {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  z-index: 2;
}

.carousel-item {
  width: 110px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-item.active {
  border: 2px solid #f6c945;
  transform: scale(1.05);
}

/* =========================
   STORE PAGE ADDITIONS
   ========================= */

/* Buttons Section */
.store-buttons {
  background-color: #0c0c0c;
  padding: 80px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-container {
  display: flex;
  gap: 40px;
}

.store-btn {
  background: #1b1b1b;
  border: 1px solid #2a2a2a;
  color: #fff;
  font-family: "Hitmarker Text", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 22px 60px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.store-btn:hover {
  background: #f6c945;
  color: #000;
  transform: translateY(-2px);
}

/* Store Grid */
.store-grid {
  background-color: #101010;
  padding: 60px 100px 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 40px;
  justify-content: center;
}

.bundle-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Uniform Image Container */
.bundle-image {
  width: 100%;
  height: 300px; /* fixed consistent height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage without stretching */
  transition: transform 0.4s ease;
}

/* Optional hover zoom */
.bundle-card:hover .bundle-image img {
  transform: scale(1.05);
}

/* Info */
.bundle-info {
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.bundle-type {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #a1a1a1;
  text-transform: uppercase;
  margin: 0;
}

.bundle-info h3 {
  font-family: "Hitmarker Text", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.bundle-tags {
  display: flex;
  gap: 8px;
}

.tag {
  background: #2a2a2a;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: #d1d1d1;
}

.bundle-price {
  position: absolute;
  bottom: 20px;
  right: 26px;
  font-family: "Hitmarker Text", sans-serif;
  font-size: 1.3rem;
  color: #fff;
}

