/** Shopify CDN: Minification failed

Line 31:161 Unterminated string token
Line 101:0 Expected ")" to go with "("

**/
/* ===========================================
   BunkerShop - Home Page Custom Styling
   =========================================== */

body {
  background-color: #0e1f26;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* HEADER */
.header {
  background: rgba(10, 147, 150, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__heading,
.header__menu-item {
  color: #ffffff !important;
}

/* HERO SECTION */
.hero-banner {
  background: linear-gradient(to bottom, rgba(10, 147, 150, 0.8), rgba(10, 147, 150, 0.5)), url('{{ "bunker-coral-bg.jpg" | asset_url }}) center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  border-radius: 10px;
  margin: 20px auto;
}

.hero-banner h1 {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-banner p {
  color: #d9ffff;
  font-size: 1.3rem;
}

/* COLLECTION GRID */
.collection-list,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.collection-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  border-color: #0a9396;
  box-shadow: 0 5px 15px rgba(10, 147, 150, 0.3);
}

.collection-card img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.collection-card h3 {
  font-size: 1.4rem;
  color: #fff;
}

.collection-card p {
  color: #b8e4e5;
}

/* FOOTER */
.footer {
  background: #071014;
  color: #b8e4e5;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}
