@charset "UTF-8";
/* CSS Document */

  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

/* DESKTOP: show desk, hide mobile */
.header-logo-desk {
  display: block;
}

.header-logo-mob {
  display: none;
}


/* MOBILE */
@media (max-width: 768px) {

  .header-logo-desk {
    display: none;
  }

  .header-logo-mob {
    display: block;
	  margin: 0 auto;
	  text-align: center;
  }

}


/*--- ROW ---*/
.custom-row {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

/*--- COLUMNS ---*/
.col {
  padding: 20px;
  box-sizing: border-box;
}

/*--- LEFT COLUMN ---*/
.col-left {
  width: 60%;
  border-right: 1px solid #ddd;
}

/*--- RIGHT COLUMN (STICKY) ---*/
.col-right {
  width: 40%;
  position: sticky;
  top: 20px;
  height: fit-content;
}

/*==============================*/
/*--- MOBILE (<= 768px) ---*/
/*==============================*/
@media (max-width: 768px) {

  .custom-row {
    flex-direction: column;
  }

  .col-left,
  .col-right {
    width: 100%;
    border-right: none;
  }

  .col {
    padding: 15px 10px;
  }

  /* ✅ FIXED: move right column on top + disable sticky */
  .col-right {
    order: -1;
    position: relative;
    top: auto;
  }
}

  /* DEMO CONTENT */
  .box {
    background: #f5f5f5;
  }
	
	.checkout-wrapper {
    max-width: 100%;
    text-align: center;
  }

  /* LOGO */
  .logo {
    margin-bottom: 0px;
  }

  .logo img {
    width: 150px;
  }
  .logo-mob img {
    width: 120px;
	  margin-bottom: 0px;
  }

  /* TITLE */
  .title-top {
    font-size: 16px;
    margin: 10px 0 20px;
    color: #666;
  }

  /* BUTTON ROW */
  .express-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .btn {
  flex: 1;
  max-width: 70%;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;     /* vertical */
  justify-content: center; /* horizontal */
}
.logo-mini {
	width: 60px;
}
  .shop {
    background: linear-gradient(90deg, #6a5cff, #4a2ee0);
  }

  .paypal {
    background: #f4b73c;
    color: #003087;
  }

  .gpay {
    background: #000;
    color: #fff;
  }

  /* TEXT */
  .disclaimer {
    font-size: 16px;
    line-height: 1.3;
    max-width: 750px;
    margin: 0 auto;
    color: #6b6b6b;
  }

  /* OR DIVIDER */
  .or-divider {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .or-divider div {
    flex: 1;
    height: 1px;
    background: #ccc;
  }

  .or-divider span {
    margin: 0 15px;
    font-size: 16px;
    color: #777;
  }

  /* MOBILE */
  @media (max-width: 768px) {
        .btn {
      max-width: 100%;
      width: 100%;
    }
  }



.container-form {
  max-width: 720px;
  margin: 10px auto;
	text-align: left;
}

h2 {
  font-size: 20px;
  margin-bottom: 15px;
}


/*--- TOP ROW (CONTACT HEADER) ---*/
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signin {
  color: #2a5bd7;
  font-size: 16px;
  text-decoration: none;
}


/*--- INPUT FIELDS ---*/
.input {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 18px;
  margin-bottom: 15px;
  box-sizing: border-box;
  background: #fff;
}

.input::placeholder {
  color: #888;
}


/*--- FLEX ROWS ---*/
.row {
  display: flex;
  gap: 15px;
}

.half {
  width: 50%;
}

.third {
  width: 33.33%;
}


/*--- SELECT DROPDOWN ---*/
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23888' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}


/*--- ADDRESS ICON ---*/
.input-icon {
  position: relative;
}

.input-icon input {
  padding-right: 45px;
}

.input-icon::after {
  content: "🔍";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.6;
}


/*--- SHIPPING BOX ---*/
.shipping-box {
  padding: 20px;
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/*--- RECURRING BOX ---*/
.recurring-box {
  background: #f6f6f6;
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/*--- GLOBAL ---*/

/*--- INPUT BASE ---*/
.input {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  margin-bottom: 15px;
  box-sizing: border-box;
  background: #fff;
}

.input::placeholder {
  color: #888;
}


/*--- LAYOUT ---*/
.row {
  display: flex;
  gap: 15px;
}

.half { width: 50%; }
.third { width: 33.33%; }


/*--- SELECT ---*/
select.input {
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='%23888' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>")
    no-repeat right 15px center / 16px;
}


/*--- INPUT ICON SYSTEM (MERGED) ---*/
.input-icon {
  position: relative;
}

.input-icon input {
  padding-right: 45px;
}

.input-icon::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-80%);
}

/* modifiers */
.input-icon.lock::after { content: "🔒"; }
.input-icon.help::after { content: "?"; }


/*--- PAYMENT SECTION ---*/
.payment-section {
  margin-top: 40px;
}

.payment-subtext {
  color: #666;
  margin-bottom: 20px;
}


/*--- PAYMENT METHOD ---*/
.payment-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.payment-method.active {
  border-color: #2a5bd7;
  background: #f4f7ff;
}


/*--- PAYMENT HEADER ---*/
.payment-header {
  display: flex;
  align-items: center;
  gap: 12px;
}


/*--- RADIO ---*/
.radio {
  width: 18px;
  height: 18px;
  border: 2px solid #2a5bd7;
  border-radius: 50%;
  position: relative;
}

.radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #2a5bd7;
  border-radius: 50%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}


/*--- CARD ICONS ---*/
.card-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

/*--- CARD BOX ---*/
.card {
  height: 28px;
  min-width: 42px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/*--- CARD IMAGES ---*/
.card img {
  max-height: 25px;
  width: auto;
  display: block;
}

/*--- +5 BOX ---*/
.card.more {
  font-size: 14px;
  font-weight: 600;
  color: #2a5bd7;
  background: #f5f7ff;
  border-color: #d6e0ff;
}


/*--- PAYMENT FORM ---*/
.payment-form {
  padding: 10px;
  border-radius: 0px 0px 12px 12px;
  border: 1px solid #e0e0e0;
  background: #f6f6f6;
}


/*--- CHECKBOX ---*/
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  cursor: pointer;
}

.checkbox input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #2a5bd7;
  border-radius: 4px;
  position: relative;
}

.checkbox input:checked + .checkmark {
  background: #2a5bd7;
}

.checkbox input:checked + .checkmark::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}


/*--- BILLING SECTION ---*/
.billing-section {
  display: none;
  margin-top: 20px;
}

/*--- SAVE SECTION ---*/
.save-section {
  margin-top: 40px;
}

/*--- PHONE INPUT ---*/
.input-icon.phone {
  position: relative;
}

.input-icon.phone input {
  padding-left: 60px;
}

.input-icon.phone .prefix {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-85%);
  color: #111;
}

/* reuse icon system */
.input-icon.phone::after {
  content: "";
  width: 14px;
  height: 18px;
  border: 2px solid #888;
  border-radius: 3px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-80%);
}

.input-icon.phone::before {
  content: "";
  width: 8px;
  height: 2px;
  background: #888;
  position: absolute;
  left: 23px;
  top: calc(50% - 2px);
}

/*--- TEXT ---*/
.save-text {
  color: #666;
  margin: 15px 0 25px;
  line-height: 1.5;
}

.save-text a,
.footnote a {
  color: #666;
  text-decoration: underline;
}

/*--- BUTTON ---*/
.pay-btn {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: #2a5bd7;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/*--- FOOTNOTE ---*/
.footnote {
  margin-top: 25px;
  color: #666;
  line-height: 1.3;
}

/*--- MODAL OVERLAY ---*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* keep full screen */
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/*--- MODAL BOX ---*/
.modal {
  width: 500px;
  max-width: 95%;
  height: 80vh; /* 👈 ADD THIS */
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;

  display: flex;              /* 👈 ADD */
  flex-direction: column;     /* 👈 ADD */
}

/*--- HEADER ---*/
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0; /* 👈 prevent shrinking */
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
}

/*--- CLOSE ---*/
.modal-close {
  font-size: 24px;
  cursor: pointer;
}

/*--- CONTENT ---*/
.modal-content {
  font-size: 16px;
  color: #444;
  line-height: 1.4;
  text-align: left;

  flex: 1;              /* 👈 fill remaining space */
  overflow-y: auto;     /* 👈 vertical scroll */
  overflow-x: auto;     /* 👈 horizontal scroll when needed */
}

/*--- SHOW ---*/
.modal-overlay.active {
  display: flex;
}
@media (max-width: 768px) {
  .modal {
    width: 90%;
  }
}

/*--- ORDER SUMMARY ---*/
.order-summary {
  margin-top: 10px;
}


/*--- DISCOUNT ---*/
.discount-row {
  display: flex;
  gap: 10px;
	margin-top: 20px;
}

.discount-input {
  flex: 1;
	
}

/*--- APPLY BUTTON ---*/
.apply-btn {
  height: 50px; /* match your input height */
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #eee;
  font-size: 16px;
  cursor: pointer;
}

/*--- TOTALS ---*/
.totals {
  margin-top: 30px;
}

/*--- ROW ---*/
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/*--- MUTED TEXT ---*/
.muted {
  color: #777;
}

/*--- MAIN TOTAL ---*/
.total-main {
  font-weight: 600;
  font-size: 20px;
}

/*--- PRICE ---*/
.total-price {
  font-weight: 600;
}

.total-price small {
  font-weight: 400;
  margin-right: 5px;
  color: #777;
}

/*--- DIVIDER ---*/
.totals hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

/*--- RECURRING ---*/
.recurring-title {
  font-size: 18px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recurring-text {
  margin-top: 8px;
  color: #666;
  line-height: 1.5;
}

/*--- INFO ICON ---*/
.info {
  width: 18px;
  height: 18px;
  border: 1px solid #888;
  border-radius: 50%;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.checkout-footer {
	padding-top: 20px;
	border-top: 1px solid #ccc;
}
/*--- ORDER ITEM ---*/
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

/*--- LEFT ---*/
.item-left {
  display: flex;
  gap: 15px;
  flex: 1;
}

/*--- IMAGE ---*/
.item-image {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 12px;
	border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
top: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/*--- QTY BADGE ---*/
.qty {
  position: relative;
  right: -55px;
  background: #000;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
 z-index: 1234654654564;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--- TEXT ---*/
.item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

/*--- PRICE ---*/
.item-price {
  min-width: 50px;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
}

/* TOGGLE BAR */
/* TOGGLE BAR (hidden desktop) */
.order-toggle {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .order-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
	  margin-bottom: -40px;
  }

  .toggle-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .toggle-price {
    font-weight: 600;
  }

  .toggle-icon {
    transition: transform 0.3s ease;
  }

  /* HIDE CONTENT BY DEFAULT */
  .order-summary-container {
    display: none;
  }

  /* SHOW WHEN ACTIVE */
  .order-summary-container.active {
    display: block;
  }
	
	.toggle-icon::before {
  content: "▼";
}

.order-toggle.active .toggle-icon::before {
  content: "▲";
}
}

/* WRAPPER */
.mobile-header {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .mobile-header {
    display: block;
    background: #fff;
  }
	.order-summary-container {
		margin-top: 70px;
	}
  .header-logo-mob {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .header-logo-mob img {
    max-height: auto;
  }

}


/* SHIPPING METHOD */
.hc-shipping {
  max-width: 100%;
  margin: 0px auto;
  font-family: Arial, sans-serif;
}

.hc-shipping__title {
  font-size: 22px;
  margin-bottom: 15px;
}

/* OPTION CARD */
.hc-shipopt {
  display: block;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  position: relative;
}

/* HIDE RADIO */
.hc-shipopt__input {
  display: none;
}

/* FLEX LAYOUT */
.hc-shipopt__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 30px;
}

/* TEXT */
.hc-shipopt__title {
  font-size: 18px;
  display: block;
}

.hc-shipopt__sub {
  font-size: 15px;
  color: #6b7280;
  margin-top: 4px;
  display: block;
}

/* PRICE */
.hc-shipopt__price {
  font-weight: bold;
  font-size: 18px;
}

/* RADIO OUTER */
.hc-shipopt::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  top: 22px;
}

/* RADIO INNER */
.hc-shipopt::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #2a5bd7;
  border-radius: 50%;
  position: absolute;
  left: 21px;
  top: 27px;
  opacity: 0;
}

/* ACTIVE STATE */
.hc-shipopt:has(.hc-shipopt__input:checked) {
  border-color: #2a5bd7;
  background: #f4f7ff;
}

.hc-shipopt:has(.hc-shipopt__input:checked)::before {
  border-color: #2a5bd7;
}

.hc-shipopt:has(.hc-shipopt__input:checked)::after {
  opacity: 1;
}