/** Shopify CDN: Minification failed

Line 143:0 Unexpected "}"
Line 225:0 Expected "}" to go with "{"

**/
/* Landing Page - Custom Theme Style */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins , sans-serif;
}

body {
  background-color: #0b0b0b;
  color: white;
  line-height: 1.6;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  min-height: 80vh;
  background: radial-gradient(circle at 75% center, #2e0c08 0%,#1b0a08 35%,#0d0403 60%,#000000 100%);
  position: relative; /* ensure proper stacking */
  background-attachment: fixed; /* keeps gradient from shifting */
  margin-top: -1px; /* pull up the bottom edge */
  z-index: 1;
  padding-top: 0px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
}

.hero-content p {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
}

.btn-primary {
  background-color: #c21313;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: Poppins, sans-serif;
}

.btn-primary:hover {
  background-color: #e61919;
  text-decoration: none;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #fff;
}

.hero-features span {
  display: inline-block;
}

/* HERO IMAGE */
.hero-image img {
  width: 600px;
  border-radius: 16px;
}

.hero-image{
  margin-left: auto;       /* pushes it away from text */
  margin-right: 180px;     /* balances empty space on the left */
}




/* FIT SECTION */
.fit-section {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  flex-wrap: nowrap;
  background: #121212;
}

.fit-text {
  flex: 1 1 520px;
  max-width: 720px;
  min-width: 280px;
}

.fit-text h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.fit-text p {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 30px;
}

.fit-logo {
    flex: 0 1 420px; /* current width */
  display: flex;
  align-items: center;
  justify-content: center; /* center image in its container */
  margin-left: auto;       /* pushes it away from text */
  margin-right: auto;      /* balances empty space on the left */
}
}

.fit-logo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.fit-section.image-left {
  flex-direction: row-reverse;
}

.fit-section.image-right {
  flex-direction: row;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fit-text h2 { font-size: 2.4rem; }
  .fit-logo { flex: 0 1 360px; }
  .fit-logo img { 
    max-width: 360px;
    width: 360px; 
  
  
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 28px;
    min-height: 60vh;
    gap: 30px;
  }

  .hero-image img { width: 300px; }

  .fit-section {
    flex-direction: column;
    padding: 48px 22px;
    gap: 24px;
    align-items: center;
  }

  .fit-text { order: 0; text-align: center; }
  .fit-logo { display: none;}
  .fit-logo img { display: none;}


}


@media (max-width: 768px) {
  /* Fit section adjustments when image is hidden */
  .fit-section {
    flex-direction: column; /* stack elements */
    align-items: center;    /* center content horizontally */
    text-align: center;     /* center text inside */
    gap: 24px;
  }

  .fit-text {
    width: 100%;            /* full width */
    display: flex;
    flex-direction: column;
    align-items: center;    /* center the button too */
  }

  .fit-text a.btn-primary {
    margin: 0 auto;         /* center button if needed */
  }
}


@media (min-width: 768px) and (max-width: 1024px) {


