@charset "UTF-8";

.fluid {
    margin: 0 auto;
    padding: 0 1em;
}

.forge-notification {
  min-width: 280px;
  margin-bottom: 12px;
  border-left: 4px solid;
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #f0f0f0;
  background-color: #1b1b1b;
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInSlideDown 0.3s forwards;
}

.forge-success {
  border-color: #28a745;
}

.forge-error {
  border-color: #dc3545;
}

.forge-info {
  border-color: #17a2b8;
}

.forge-notification .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #ccc;
  cursor: pointer;
}

@keyframes fadeInSlideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@font-face {
    font-family: Basetica;
    src: url(/fonts/d0247117c9eb9ef48adc2a8ffc6c7296.woff2) format("woff2"), url(/fonts/f988375861d2965f91f1d4c33b121597.woff) format("woff");
    font-style: normal;
    font-weight: 300
}

@font-face {
    font-family: Basetica;
    src: url(/fonts/9b40edc3c64408b6bfeb00ea736d9b51.woff2) format("woff2"), url(/fonts/e1f33a89a4b0aa86640d0943c6ffc09a.woff) format("woff");
    font-style: normal;
    font-weight: 500
}

@font-face {
    font-family: Basetica;
    src: url(/fonts/ba33f1eeccd4ae608fa117d0e4b0007f.woff2) format("woff2"), url(/fonts/7482d138cda5702da8cfe25ac64116cb.woff) format("woff");
    font-style: normal;
    font-weight: 700
}

@font-face {
    font-family: Nib;
    src: url(/fonts/77a201447153385b8629de9b1334dc94.woff2) format("woff2"), url(/fonts/eb22d3442eac6fa74dc70f924a793866.woff) format("woff");
    font-style: italic !important;
    font-weight: 700
}

@font-face {
    font-family: Nib;
    src: url(/fonts/4b1a3a16266bb911c73fc6b60a9f8f7c.woff2) format("woff2"), url(/fonts/9856497ce6be3b763f4aebf2f2f2e897f2c.woff) format("woff");
    font-style: italic !important;
    font-weight: 600
}

@font-face {
    font-family: Replica Mono;
    src: url(/fonts/074347bf14d7aba6355b0b71dff3238f.woff2) format("woff2"), url(/fonts/899dfe75f2f6962e324f2121726cfc51.woff) format("woff");
    font-style: normal
}

*:not(.mce-btn button i, .atc-form--item--subtitle, .rebuy-cart i, .italic) {
    font-family: Basetica !important
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    background-color: #0F0F0F !important;
    color:#f2f2f2 !important;
}

.announcement-bar {
  background-color: #6D28D9  ;
  padding: 0.7em;
}

.announcement-bar p {
  color: #f2f2f2;
  margin-bottom: 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    position: relative;
}
 .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Transparent white color */
    z-index: 9999; /* Ensure the overlay is on top of other elements */
}
.nav-links {
    display: flex;
    gap: 2em;
}
.nav-links a {
    text-decoration: none;
    color: #f2f2f2;
    font-weight: 400;
}
.cart-icon {
    font-size: 1.2em;
}
.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #0F0F0F;
    color:#f2f2f2;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 2em;
    transition: left 0.3s ease-in-out;
    z-index: 999;
}
.mobile-menu.open {
    left: 0;
}
.mobile-menu .close-btn {
    font-size: 1.5em;
    align-self: flex-end;
    cursor: pointer;
}
.mobile-menu a {
    text-decoration: none;
    color: #f2f2f2;
    font-weight: bold;
    font-size: 1.2em;
}

.waitlist {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0F0F0F;
    color: #f2f2f2;
    padding: 2em;
    flex-direction: column;
    z-index: 999;
}
.waitlist.open {
    opacity: 1;
    pointer-events: auto;
}

.waitlist .close-btn {
    font-size: 1.5em;
    align-self: flex-end;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
    display: none;
    }
    .hamburger {
    display: block;
    }
}
.banner-heading{
    padding:1em;
}
.banner-heading h1{
    vertical-align: middle;
    text-align: center;
    color: #f2f2f2;
}

.button-default {
    padding:.8em;
    background-color: #6D28D9  ;
    color: #f2f2f2;
    border-radius: 5px;
    font-size: large;
    text-decoration: none;
}

.button-default:hover {
    background-color: #4e2b85;
    color: #f2f2f2;

}
.section-1 .right{
    padding-top: 5em;
}
@media (max-width: 768px) {
    .section-1 .right{
        padding-top: 1em;
    }
}
.section-1 .left img {
    max-height: 500px;   /* Adjust this value as needed */
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}
.light-font, .light-font h5 {
    font-weight: 300;
}
.marqueed {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  padding: 2em;
  background-color: #6D28D9;
}

.marqueed .size-1 {
    display: inline-block;
    min-width: 100%; /* ensures it's at least as wide as the container */
    will-change: transform;
    animation: marquee-move 8s linear infinite;
    font-size: 2em;
    font-weight: 700;
}
@keyframes  marquee-move {
  0%   { transform: translateX(40%); }
  100% { transform: translateX(-100%); }
}

.section-3{
    padding: 2em;
    background-color: #f8f4ff;
    color:#0F0F0F;
    border-radius: 1em;
}
.benefits{
    padding-top:1em;
}
.section-3 h1{
    font-weight: 1000;
}
.benefits h5{
    font-weight: 600;
}
.benefit-section{
    padding:1.5em;
}

.section-4{
    background-color: black;
}
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.product-description-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2em;
  max-width: 600px;
  margin: auto;
  text-shadow: 0 2px 8px #000;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* Adjust opacity for readability */
  z-index: 1;
}

.product-description-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2em 2em 2em 3em;
  margin: auto;
  max-width: 600px;
  font-size: 1.25em;
}

.product-description-overlay p {
  margin: 0;
  position: relative;
  font-style: italic;
}

.product-description-overlay p::before {
  content: "“";
  font-size: 3em;
  color: #a78bfa;
  position: absolute;
  left: -0.7em;
  top: -0.3em;
  line-height: 1;
}

.product-description-overlay p::after {
  content: "”";
  font-size: 3em;
  color: #a78bfa;
  position: absolute;
  right: -0.5em;
  bottom: -0.2em;
  line-height: 1;
}
.ingredient-card {
    padding: 10px;
    transition: background-color 0.3s ease;
    
}
.section-5{
    margin-top:2em;
}
.border{
    border: 1px solid #2B2B2B !important;
    background-color: #1e1b2e4a;
    border-radius: 5px;
    padding:20px;
}
.border:hover {
    box-shadow: #6D28D9 0px 0px 10px 0px;
    transition: box-shadow 0.3s ease;
    color: #f2f2f2;
}
.border img{
    max-height:4em;
}
.caption{
    color: #808080;
}
.ingredients{
    padding-top:1em;
}
.pad-1{
    padding: 1em;
}
.marg-1{
    margin: .5em;
}
.marg-2{
    margin-right: 2em;
    margin-left: 1em;
}
.marg-bot-2{
    margin-bottom: 2em;
}
.marg-top-2{
    margin-top: 2em;
}

.marg-top-1{
    margin-top: 1em;
}
.yellow{
    color:goldenrod;
}
.trust-badges{
    font-size: small;
}
.trust-badges li{
    vertical-align: middle;
    width:30%;
}
.light-purple{
    color: #a78bfa;
}
.col-md-6 {
  display: flex;
  flex-direction: column;
}
.fact{
    padding:1em;
    height:100%;
    background-color: #f8f4ff;
    flex-grow: 1;
    border-radius: .5em;
}


.black{
    color: #000;
}
.stat{
    color:#8b73d3;
    font-size:2.5em;
}
.hyperlink{
    color: black !important;
}
.pad-top-1{
    padding-top: 1em;
}
.pad-top-3{
    padding-top: 3em;
}
.gradient{
    /* background: linear-gradient(90deg, #ec4899, #6D28D9, #8b5cf6); */
    /* background: linear-gradient(90deg, #48d6ec, #6D28D9, #8b5cf6); */
    /* background: linear-gradient(90deg, #ec8448, #6D28D9, #8b5cf6); */
    background: linear-gradient(90deg, #ec4848, #6D28D9, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.gradient-2{
    /* background: linear-gradient(90deg, #ec4899, #6D28D9, #8b5cf6); */
    /* background: linear-gradient(90deg, #48d6ec, #6D28D9, #8b5cf6); */
background: linear-gradient(90deg, #fbc2c2, #aa79f8, #8B5CF6);

    background-clip: text;
    -webkit-background-clip: text;
      display: inline-block;
  padding-bottom: 0.2em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.gradient-3{
    /* background: linear-gradient(90deg, #ec4899, #6D28D9, #8b5cf6); */
    /* background: linear-gradient(90deg, #48d6ec, #6D28D9, #8b5cf6); */
background: linear-gradient(90deg, #c2d7fb, #799bf8, #8B5CF6);

    background-clip: text;
    -webkit-background-clip: text;
      display: inline-block;
  padding-bottom: 0.2em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.faq-item h5{
    cursor: pointer;
}
.footer{
    padding: 1em;
    background-color: #242424;
    color: #f2f2f2;
}
.footer i{
    font-size: 1.5em;
}
a{
    color:#f2f2f2 !important;
    text-decoration: none !important;
}
a:hover:not(.button-default){
    color:#6D28D9;
    transition: color 0.3s ease;
}

.float-right p{
    float: right;
}
ul{
    list-style: none;
    padding: 0;
}
li{
    display: inline-block;
}
.benefit-section p{
    color:#242424
}
.control-form{
    padding:.6em;
    width:100%;
    margin: 0 auto;
    text-decoration: none;
    color: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    background-color:#222;
}

.doodle-container {
    position: relative;
    overflow: visible; /* Let doodles overflow card edges if needed */
}

.doodle {
    position: absolute;
    /* width: 60px;  */
    height: auto;
    z-index: 2;
}

.doodle-top-left {
    top: -25px;
    left: 2px;
}

.doodle-bottom-right {
    bottom: -20px;
    right: 10px;
}

.personas{
    padding-top:1em;
}

.persona-border{
    border: 1px solid #2B2B2B !important;
    background-color: #1e1b2e24;
    border-radius: 5px;
    padding:20px;
}
.persona-border:hover {
    box-shadow: #6D28D9 0px 0px 10px 0px;
    transition: box-shadow 0.3s ease;
    color: #f2f2f2;
}
.persona-border img{
    max-height:4em;
}
.persona-card {
    padding: 10px;
    transition: background-color 0.3s ease;
}
.cartButton{
    padding-left:3em;
    padding-right:3em;
    font-size: larger;
    height:60px;
}
/* Quantity Selector Styling */
.qty-selector {
  display: inline-flex;
  align-items: center;
  padding: 12px 0px;
  border: 2px solid #6D28D9; /* Forge (Tailwind amber-400) */
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.qty-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0 12px;
  transition: color 0.2s ease;
}

.qty-btn:hover {
  color: #6D28D9; /* Forge Hover */
}

#qty {
  margin: 0 8px;
  min-width: 20px;
  text-align: center;
}
.radio-group {
      display: flex;
      gap: 0;
      font-family: sans-serif;
    }

    .radio-option-left {
      border-right: none;
      border-top-left-radius: 6px;
      border-bottom-left-radius: 6px;
    }
     .radio-option-right {
      border-left: none;
      border-top-right-radius: 6px;
      border-bottom-right-radius: 6px;
    }

    input[type="radio"] {
      display: none;
    }

    .radio-option {
        flex: 1;
        padding: 16px;
        text-align: center;
        cursor: pointer;
        border: 2px solid #808080;
        transition: all 0.3s ease;
    }

    input[type="radio"]:checked + .radio-option {
        border-color: #6D28D9;
        background-color: #222;
    }


    .radio-option .title {
      font-size: 14px;
    }

    .radio-option .price {
      font-weight: bold;
      font-size: 18px;
      margin-top: 4px;
    }

    .product-benefit-section img{
        border-radius:.5em;
    }

    .product-benefit-section p{
        /* font-size: 1.2em; */
        color: #f2f2f2;
    }
    .benefit-title{
        font-weight: 300;
    }
    .strong{
        font-weight: bold;
    }
    .italic{
        font-family: 'Nib', sans-serif !important;
        font-weight: 300;
    }
.product-benefit-section img{
    width:100%;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }

  .horizontal-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome/Safari */
  }

  .scroll-card {
  width: 280px;
  flex: 0 0 auto;
  margin-right: .5rem;
  }
  .card{
  background-color: #f8f4ff !important;

  }
.horizontal-scroll img{
    width: 100%;
}

.review-stars i{
    color: gold;
    margin-right:0.5px;
}
 .border-circle{
    border: 1px solid #2B2B2B !important;
    background-color: #1e1b2e24;
    border-radius: 10%;
    padding:5px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
.cart-item {
    background: #1a1a1a;
    border-radius: .5em;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.cart-summary {
    background: #1a1a1a;
    border-radius: .5rem;
    padding: 2rem;
    margin-bottom: 1rem;

}

.trust-signals {
    font-size: 0.9rem;
    margin-top: 1rem;
}
.btn-light{
    color:#f0f0f0;
    border: 1px solid #f0f0f0;
    background-color: transparent;
    padding: .8em;
    font-size: small;
}
 .btn-light:hover{
    background-color: #0F0F0F !important;
    color:#fff
 }
 .signup-box{
    border: 1px solid #2B2B2B !important;
    padding:1.5em;
    border-radius: 10px;
 }
 @media (min-width: 992px) {
    .signup-box {
        padding: 2em;
        margin: 0 auto;
        width: 50%;
    }
 }

@media (max-width: 767.98px) {
    .cart-item {
        flex-direction: row !important;      /* Keep row direction */
        align-items: flex-start !important;   /* Align to top */
        overflow-x: auto;                     /* Allow horizontal scroll if needed */
    }
    .pro-left {
        width: 80%;                          /* Reduce width */
        min-width: 0;
        text-align: left;
    }
    .pro-right {
        width: 20%;                          /* Take remaining space */
        min-width: 80px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 0.5em;
        text-align: right;
    }
}
.bi-arrow-right{
    position:relative;
    top: .5px;
}

.magnifier-lens {
    position: absolute;
    border: 2px solid #333;
    border-radius: 10%;
    width: 400px;
    height: 400px;
    pointer-events: none;
    display: none;
    z-index: 10;
}

.thumbnail-row {
    display: flex;
    gap: 8px !important;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox */
}
.thumbnail-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.thumb-img {
    flex: 0 0 auto; /* Prevent shrinking, allow horizontal scroll */
    width: 180px !important;
    height: 150px !important;
    object-fit: contain;
    background: #181818;
    border: 1.5px solid #222 !important;
    border-radius: 8px;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: none;
    padding: 4px;
}
.modal-open{
    padding-right:0px !important;
}
.thumb-img.active,
.thumb-img:hover {
    border: 2.5px solid #6D28D9 !important;
    box-shadow: 0 0 0 2px #6D28D933;
    background: #111;
}
@media (max-width: 600px) {
    .thumb-img {
        width: 110px !important;
        height: 90px !important;
    }
}

.custom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 0.5rem 0.7rem;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    position: relative;
}

.payment-method {
    padding: .7em;
    border: 1px solid #2B2B2B !important;
    border-radius: 10px;
    margin-top:.5em;
    cursor: pointer;
}

  .values-section {
      padding: 50px 0;
      text-align: center;
    }
    .values-section h2 {
      margin-bottom: 30px;
    }
    .scroll-cards {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding-bottom: 15px;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }
    @media (min-width: 1050px) {
      .scroll-cards {
        justify-content: center;
      }
    }
    .scroll-cards::-webkit-scrollbar {
      height: 8px;
    }
    .scroll-cards::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 5px;
    }
    .value-card {
      flex: 0 0 auto;
      width: 260px;
      background-color: #1e1b2e4a;
      color: #fff;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease;
    }
 
    .value-card i {
      font-size: 36px;
      margin-bottom: 15px;
      color: #6D28D9;
    }
    .value-card h6 {
      margin-bottom: 20px;
    }
    .value-card p {
      color: #ddd;
      /* fuck sake */
    }