/** Shopify CDN: Minification failed

Line 262:0 Unexpected "<"
Line 277:0 Unexpected "<"

**/
/* ===============================
   MOB - Streetwear Shopify Theme
   Version: Fixed Visibility + Glow
   =============================== */

/* ---- GLOBAL RESETS ---- */
body {
  background-color: #000000;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Scrollbar styling (subtle dark) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #1e1e1e; border-radius: 5px; }

/* ---- HEADINGS ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Blacklisted', 'Urban Decay', sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

/* === MOB Hero Fullscreen Fix === */
.hero {
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important;
}

.hero video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0 !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
}


.logo-top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.mob-logo {
  width: 90px; /* adjust size */
  height: 90px;
  border-radius: 50%; /* makes it round */
  object-fit: cover; /* ensures logo fits nicely */
  border: 2px solid #fff; /* optional white ring */
  background-color: #000; /* if logo has transparent edges */
  box-shadow: 0 0 10px rgba(255,255,255,0.3); /* soft glow */
}


.mob-quote {
  font-size: 2.5rem;
  color: #b30000;
  text-align: center;
  font-weight: 700;
  margin: 80px 0;
  text-shadow: 0 0 15px rgba(179, 0, 0, 0.7);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #b30000; }
  to { text-shadow: 0 0 25px #ff0000; }
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 22vh; /* moves text + button lower */
  transform: translateY(0);
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55); /* overlay for visibility */
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
  color: #ddd;
  letter-spacing: 1px;
}

.hero .cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  color: red;
  letter-spacing: 2px;

  border: 2px solid #b30000;
  color: #b30000;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero .cta:hover {
  background-color: #b30000;
  color: #fff;
  box-shadow: 0 0 15px #b30000;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 80px 10%;
  background-color: #0d0d0d;
}

.product-card {
  background: #121212;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.product-card img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.product-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.product-info p {
  color: #b30000;
  font-weight: bold;
}

/* ---- COUNTDOWN TIMER ---- */
.countdown {
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 60px 0;
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
  letter-spacing: 2px;
}

.countdown span {
  color: #b30000;
  text-shadow: 0 0 10px #b30000;
}

/* ---- GALLERY ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  background: #0d0d0d;
  padding: 60px 10%;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  filter: grayscale(70%);
  transition: all 0.3s ease;
}

.gallery img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

<style>
.social-icons {
  text-align: center;
  margin: 40px 0;
}
.social-icons a {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
  color: #e50914;
  transform: scale(1.1);
}
</style>


/* ---- EMAIL SIGNUP ---- */
.signup {
  text-align: center;
  background-color: #000;
  padding: 80px 10%;
  border-top: 1px solid #111;
}

.signup h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.signup input {
  padding: 12px 18px;
  width: 250px;
  border: none;
  border-bottom: 2px solid #b30000;
  background: transparent;
  color: #fff;
  outline: none;
}

.signup button {
  margin-left: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #b30000;
  color: #b30000;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup button:hover {
  background-color: #b30000;
  color: #fff;
  box-shadow: 0 0 10px #b30000;
}

/* ---- FOOTER ---- */
footer {
  text-align: center;
  padding: 30px;
  background-color: #0a0a0a;
  color: #666;
  font-size: 0.9rem;
}
