/* GLOBAL VARIABLES */
:root {
  --color-primary: #7ee45a;
  --color-text-black: #000000;
  --color-text-white: #fff;
  --color-background: #292929;
  --color-gray: #414141;
  --gradient-primary: linear-gradient(89.92deg,
      #29c480 0.05%,
      #40cd76 0.06%,
      #79e35c 98.41%,
      #7ee45a 98.42%);
  --font-body: "Poppins", sans-serif;
  --font-weight-body: 500;
  /* Regular */
  --font-weight-body-bold: 700;
  /* Bold */
  --font-secondary: "Poppins", sans-serif;
  --border-radius-main: 20px;
  --border-radius-full: 1000px;
}

/* FONTS */
@font-face {
  font-family: "MBF";
  src: url(../fonts/mbf-edge/MBFEdge-Regular.ttf) format("truetype");
  font-weight: 500;
}

/* LAYOUT */
body {
  background-color: #121619;
  font-family: var(--font-body);
  font-weight: 500;
}

@media (min-width: 992px) {
  body {
    background-color: #121619;
  }
}

.page-width {
  max-width: 1250px;
  margin-inline: auto;
}

/* BUTTONS */

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  color: var(--color-text-black);
  border: none;
  border-radius: var(--border-radius-full);
  padding: 10.5px 18px;
  text-decoration: none;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: block;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.btn:hover {
  transform: translateY(4px) scale(0.99);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
}

.btn.btn--primary {
  background: var(--gradient-primary);
}

.btn.btn--secondary {
  background-color: var(--color-text-white);
}

.btn--secondary:hover {
  transform: none;
  opacity: 0.8;
}

.btn--secondary:active {
  transform: translateY(3px);
  background-color: var(--color-text-white) !important;
}

.gradient-link {
  font-family: var(--font-secondary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  cursor: pointer;
}

.gradient-heading {
  background: #29C480;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (min-width: 992px) {
  .btn {
    padding: 10px;
    font-size: 20px;
  }
}

/* HEADINGS */
h1 {
  font-size: 30px;
  color: var(--color-text-white);
}

.page-heading {
  background-color: #0D0F12;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 15px;
  margin-top: 30px;
}

@media (min-width: 992px) {
  h1 {
    font-size: 40px;
  }

  .page-heading {
    padding: 33px 60px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-heading {
    padding: 31px 15px;
  }
}

/* PRODUCT CARD */
.product-card {
  /* width: calc(50% - var(--grid-gap) / 2); */
  border-radius: 5px;
  overflow: hidden;
  background-color: #0D0F12;
  text-decoration: none;
  display: block;
  color: #fff !important;
}

.product-card__image-container {
  padding-top: 100%;
  position: relative;
  background-color: var(--color-text-white);
}

.product-card__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}

.product-card__content {
  padding: 10px;
  background-color: #0D0F12;
}

.product-card__content a {
  color: #fff !important;
}

.product-card__title {
  font-family: var(--font-secondary) !important;
  font-size: 14px !important;
  line-height: 1.2em !important;
  font-weight: 400 !important;
  opacity: 0.8 !important;
  color: #fff !important;
}

.product-card__price {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff !important;
  font-weight: 800;
}

.product-card__price__number {
  font-size: 18px;
}

@media(max-width:768px) {
  .product-card__price__number {
    font-size: 12px;
    font-weight: 500;
  }
}

.product-card__price__discount {
  color: #fff;
  font-family: var(--font-secondary);
}

@media(max-width:768px) {
  .product-card__price__discount {
    font-size: 14px;
  }
}

.product-card__shipping {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 13px;
  margin-top: 15px;
}

/* CUSTOM SELECT INPUT DESIGN */
.select-opener {
  cursor: pointer;
}

.select-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  background-color: var(--color-gray);
  color: var(--color-text-white);
  font-family: var(--font-secondary);
  border-radius: var(--border-radius-main);
  overflow: hidden;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.select-options.active {
  opacity: 1;
  display: block;
}

.select-option {
  padding: 20px;
  cursor: pointer;
}

.select-option:hover {
  background-color: var(--color-background);
}

.h1-title {
  font-size: 25px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .h1-title {
    font-size: 14px;
    font-weight: 900;
    text-align: center;
  }

}

.btn-global {
  width: 100%;
  background-color: transparent;
  color: #29C480;
  font-size: 16px;
  border: 2px solid #29C480;
  font-weight: 700;
  border-radius: 5px;
}

@media(max-width: 768px) {
  .btn-global {
    max-width: 280px;
    width: 100%;
    height: 41px;
    font-size: 12px;
    background-color: #29C480;
    color: #000000;
  }
}

.btn-global:hover {
  background-color: #49DC81;
  color: #000;
  border: 2px solid #49DC81;
}

.small-btn-global {
  background-color: transparent;
  color: #29C480;
  font-size: 16px;
  border: 2px solid #29C480;
  font-weight: 700;
  border-radius: 5px;
  padding: 10px 30px;
}

@media(max-width: 768px) {
  .small-btn-global {
    color: #000000;
    background-color: #29C480;
    font-size: 12px;
  }
}

.small-btn-global:hover {
  background-color: #49DC81;
  color: #000;
  border: 2px solid #49DC81;
}

/* CUSTOM SWEETALERT2 STYLES FOR OTP POPUPS */
.custom-swal-popup {
  background-color: #080a0d !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.custom-swal-title {
  color: var(--color-text-white) !important;
  font-family: var(--font-body) !important;
  font-weight: var(--font-weight-body-bold) !important;
  font-size: 1.5rem !important;
}

.custom-swal-content {
  color: var(--color-text-white) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.custom-swal-confirm {
  background: var(--gradient-primary) !important;
  color: var(--color-text-black) !important;
  border: 2px solid var(--color-text-black) !important;
  border-radius: 10px !important;
  font-weight: var(--font-weight-body-bold) !important;
  padding: 12px 24px !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
}

.custom-swal-confirm:hover {
  color: var(--color-text-white) !important;
  border: 2px solid var(--color-text-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.custom-swal-cancel {
  background-color: var(--color-text-white) !important;
  color: var(--color-text-black) !important;
  border: 2px solid var(--color-text-black) !important;
  border-radius: 10px !important;
  font-weight: var(--font-weight-body-bold) !important;
  padding: 12px 24px !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
}

.custom-swal-cancel:hover {
  background-color: var(--color-text-black) !important;
  color: var(--color-text-white) !important;
  border: 2px solid var(--color-text-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

/* OTP-specific input styling */
.custom-swal-otp-input {
  background-color: #1a1d21 !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 20px !important;
  color: var(--color-text-white) !important;
  font-family: monospace !important;
  font-size: 1.4rem !important;
  font-weight: bold !important;
  text-align: center !important;
  padding: 15px !important;
  margin: 20px 0 !important;
  width: 100% !important;
  max-width: 300px !important;
  transition: all 0.3s ease !important;
}

.custom-swal-otp-input:focus {
  outline: none !important;
  border-color: #49DC81 !important;
  box-shadow: 0 0 0 3px rgba(73, 220, 129, 0.2) !important;
  transform: scale(1.02) !important;
}

.custom-swal-otp-input::placeholder {
  color: #666 !important;
  font-size: 1rem !important;
}

/* OTP countdown timer styling */
.custom-swal-countdown {
  margin: 20px 0 !important;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.custom-swal-countdown-text {
  color: var(--color-text-white) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  margin-bottom: 8px !important;
}

.custom-swal-countdown-timer {
  color: var(--color-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: var(--font-weight-body-bold) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.custom-swal-countdown-timer.expired {
  color: #ff6b6b !important;
  animation: pulse 1s infinite !important;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* OTP validation message styling */
.custom-swal-validation {
  color: #ff6b6b !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  margin-top: 10px !important;
  text-align: center !important;
}

/* SweetAlert2 validation message styling */
.swal2-validation-message {
  color: #ff6b6b !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  margin-top: 10px !important;
  text-align: center !important;
  background-color: rgba(255, 107, 107, 0.1) !important;
  border: 1px solid rgba(255, 107, 107, 0.3) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
}

/* SweetAlert2 icon styling */
.swal2-icon.swal2-warning {
  border-color: #ffc107 !important;
  color: #ffc107 !important;
}

.swal2-icon.swal2-error {
  border-color: #ff6b6b !important;
  color: #ff6b6b !important;
}

.swal2-icon.swal2-success {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .custom-swal-popup {
    margin: 20px !important;
    border-radius: 15px !important;
  }

  .custom-swal-title {
    font-size: 1.3rem !important;
  }

  .custom-swal-content {
    font-size: 0.9rem !important;
  }

  .custom-swal-otp-input {
    font-size: 1.3rem !important;
    padding: 12px !important;
  }

  .custom-swal-confirm,
  .custom-swal-cancel {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* Ensure OTP verification button uses green color */
.custom-swal-popup .custom-swal-confirm {
  background: var(--gradient-primary) !important;
  background-image: var(--gradient-primary) !important;
  color: var(--color-text-black) !important;
  border: 2px solid var(--color-text-black) !important;
}

/* Override any conflicting wallet popup styles with higher specificity */
body .custom-swal-popup .custom-swal-confirm,
html .custom-swal-popup .custom-swal-confirm {
  background: var(--gradient-primary) !important;
  background-color: transparent !important;
  background-image: var(--gradient-primary) !important;
  color: var(--color-text-black) !important;
  border: 2px solid var(--color-text-black) !important;
}
.product-card-usdt-main{
  color: #29C480 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}
.product-card-usdt-discount{
  color: #29C480 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}
.product-card-ars-main{
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}
.product-card-ars-discount{
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}