/** Shopify CDN: Minification failed

Line 237:1 Expected "}" to go with "{"

**/
/* === FONTS === */
@font-face {
  font-family: 'Akira Expanded';
  src: url('/cdn/shop/files/AkiraExpanded-SuperBold.woff2?v=1744118522') format('woff2'),
       url('/cdn/shop/files/AkiraExpanded-SuperBold.woff?v=1744118522') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial';
  src: url('/cdn/shop/files/Arial-BoldMT.woff2?v=1744118821') format('woff2'),
       url('/cdn/shop/files/Arial-BoldMT.woff?v=1744118821') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* === MAIN CARD CONTAINER === */
.oneAP {
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  border: 2px solid #C084FC;
  box-shadow: 0 0 15px #C084FC66;
}

/* === ACTIVE CARD VARIANT === */
.first-div.oneAP.actives, .second-div.oneAP.actives {
  background: #0a0a0a;
  border: 2px solid #C084FC;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* === FLEX WRAPPER === */
.main-custom-ap {
  display: flex;
  gap: 10px;
  align-items: stretch;
  font-size: 21px;
  flex-wrap: wrap;
}

/* === PLAN NAME === */
.oneAP .plan-name {
  text-align: left;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 700;
  font-family: 'Akira Expanded';
  color: #fff;
}

/* === PLAN PRICE === */
.plan-price {
  margin: 6px 0;
  height: 35px;
  font-family: 'Akira Expanded';
  font-size: 16px;
  color: #C084FC;
}

/* === PLAN TOGGLE === */
.plan-tabs {
  display: flex;
  padding: 8px 8px;
  font-size: 21px;
  margin-bottom: 8px;
  background: #111;
  color: #fff;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #333;
}

.oneTB {
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.oneTB label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Akira Expanded';
  color: #C084FC;
  transition: all 0.25s ease;
}

.oneTB:not(.current):hover label {
  color: #C084FC;
  opacity: 1;
  text-shadow: 0 0 6px #C084FC;
}

.oneTB.current {
  background: #C084FC;
  color: #000;
  border-radius: 5px;
  margin: 3px;
  box-shadow: none !important;
  border: none !important;
}

.oneTB.current label {
  color: #000 !important;
  text-shadow: none;
}

/* === PLAN DESCRIPTION LIST === */
.aps-main-description {
  border-top: 1px solid #333;
  padding-top: 10px;
  padding-left: 17px;
  margin-bottom: 5px;
  width: 100% !important;
}

.aps-main-description ul li {
  font-size: 16px;
  line-height: 1.4em;
  font-family: 'Arial';
  color: #fff;
  margin-bottom: 0px;
}

/* === SUBSCRIBE BUTTON === */
.ecom-product-single__add-to-cart--submit {
  background: transparent;
  color: #C084FC;
  font-family: 'Akira Expanded';
  border: 2px solid #C084FC;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ecom-product-single__add-to-cart--submit:hover {
  background: #C084FC;
  color: #000;
  box-shadow: 0 0 10px #C084FC;
}

/* === HIDE DEFAULT SELECT BOX === */
.widgetSellingPlanWrapper .appstle_input_wrapper {
  display: none !important;
  opacity: 0;
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .oneAP {
    width: 100% !important;
  }


  .aps-main-description {
    max-height: 180px;
    overflow: auto;
  }

  .plan-price {
    font-size: 14px;
    margin: 5px 0;
  }

  .ecom-product-single__add-to-cart--submit {
    padding: 12px 20px !important;
    font-size: 14px !important;
    width: 100% !important;
    border-radius: 10px;
  }

  .ecom-product-single__add-to-cart-buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  /* === FIX VERTICAL ALIGNMENT IN PLAN TOGGLE BUTTONS === */
.oneTB {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
  height: 100%;
}

.oneTB label {
  line-height: 1;
  margin: 0;
  padding: 0;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Akira Expanded';
  color: #C084FC;
  transition: all 0.25s ease;
}

.oneTB.current {
  background: #C084FC;
  color: #000;
  border-radius: 5px;
  margin: 3px;
  box-shadow: none !important;
  border: none !important;
}

.oneTB.current label {
  color: #000 !important;
  text-shadow: none;
}
@media (max-width: 768px) {
  .aps-main-description ul li {
    font-size: 13px !important;
  }
}