/* cust address Jun-25-26 */
body.checkout-mobile {
  margin: 0;
  background: #f6f6f6;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
}

.checkout-mobile {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.mobile-header {
  height: 64px;
  display: grid;
  grid-template-columns: 44px 1fr 104px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #e5e7eb;
}

/*
.menu {
  font-size: 28px;
}

.logo {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #174832;
  line-height: 1.05;
}

.logo span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #777;
  letter-spacing: 0;
}

.icons {
  text-align: right;
  font-size: 22px;
  white-space: nowrap;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefits div {
  min-height: 72px;
  padding: 12px 6px;
  text-align: center;
  font-size: 24px;
  color: #0f6b3d;
  border-right: 1px solid #e5e7eb;
}

.benefits div:last-child {
  border-right: 0;
}

.benefits strong,
.benefits span {
  display: block;
  color: #111827;
}

.benefits strong {
  font-size: 13px;
  margin-top: 4px;
}

.benefits span {
  font-size: 12px;
  color: #444;
}
*/
.checkout-content {
	padding: 15px 15px 55px 15px;
}

body > div.checkout-mobile > main > h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.subtitle {
  margin: 6px 0 20px;
  color: #6b7280;
  font-size: 14px;
}

.address-form label {
  display: block;
  margin: 0 0 7px;
  font-weight: 700;
  font-size: 15px;
}

.address-form label span {
  font-weight: 400;
}

.input-wrap {
  height: 51px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  background: #fff;
  color: #374151;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: #111827;
}

.input-wrap input::placeholder {
  color: #6b7280;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 10px 0 22px !important;
  font-weight: 400 !important;
}

.checkbox-row input {
  width: 22px;
  height: 22px;
  accent-color: #0f6b3d;
}

.checkbox-row span {
  flex: 1;
  font-size: 14px;
}

.checkbox-row em {
  font-style: normal;
  color: #6b7280;
}

.summary-box {

}

.summary-box strong {
  display: block;
  font-size: 18px;
  margin-bottom: 9px;
}

.summary-box span {
  display: block;
  font-size: 15px;
  color: #374151;
}

.summary-price {
  font-size: 20px;
  font-weight: 700;
  color: #0f5132;
}

.summary-price span {
  display: inline;
  margin-left: 10px;
  font-size: 18px;
	position:relative;
  top:-6px;
}

.continue-btn {
  width: 100%;
  height: 64px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #0f5132, #166b42);
  color: #fff;
  font-size: 18px;
  letter-spacing: .5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
}

.continue-btn span {
  font-size: 28px;
  line-height: 1;
}

.secure-note {
  margin-top: 18px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}
.field-icon {
	width:18px;
	height:18px;
	opacity:.5;
}
.summary-wrap {
    margin-bottom:16px;
    border:1px solid #e5e7eb;
    border-radius:9px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
    overflow:hidden;
}

.summary-box {
	width:100%;
	padding:12px;
	border:0;
	background:#fff;
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	text-align:left;
	cursor:pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.summary-box strong {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:20px;
    margin-bottom:9px;
}

.summary-box span {
    display:block;
    font-size:15px;
    color:#374151;
}

.summary-price {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
    color:#0f5132;
    white-space:nowrap;
}

.summary-arrow {
    display:inline-block;
    font-size:18px;
    transition:transform .2s ease;
}

.summary-wrap.open .summary-arrow {
    transform:rotate(180deg);
}

.summary-details {
    display:none;
    padding:0 16px 16px;
    border-top:1px solid #e5e7eb;
}

.summary-wrap.open .summary-details {
    display:block;
}

.summary-line {
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:12px 0;
    font-size:15px;
    border-bottom:1px solid #f1f1f1;
}

.summary-line:last-child {
    border-bottom:0;
}

.summary-line span {
    color:#374151;
}

.summary-line strong {
    color:#111827;
}

.summary-line.total {
    font-size:18px;
    font-weight:700;
}

.summary-line.total strong {
    color:#0f5132;
}
#state_inp {width:100%}
.field-error {
    display:none;
    margin:-9px 0 14px;
    color:#b42318;
    font-size:13px;
}

.form-row.has-error .field-error {
    display:block;
}

.form-row.has-error .input-wrap {
    border-color:#b42318;
    background:#fff7f7;
}
.payment-title {
    margin:24px 0 16px;
    font-size:22px;
    font-weight:600;
    color:#111827;
}

.payment-grid {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.payment-option {
    width:100%;
    min-height:60px;
    padding:5px;
    background:#fff;
    border:2px solid #0f6b3d;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:14px;
    cursor:pointer;
    transition:all .15s ease;
}

.payment-option:hover {
    border-color:#24d77e;
}

.payment-option.active {
    border-color:#0f6b3d;
    background:#f0faf4;
}

.payment-option img {
    width:100%;
    flex-shrink:0;
    object-fit:contain;
}

.payment-option span {
    font-size: 50px;
    font-weight: 200;
    color: #5abd08;
    padding-right: 10px;
    margin-top: -11px;
}
.other-payment-card {
    display:flex;
    align-items:center;
    gap:10px;
    padding:5px;
    text-align:left;
}

.other-payment-card img {
    width:63px !important;
    object-fit:cover;
    border-radius:6px;
    flex-shrink:0;
}

.other-payment-text {
    flex:1;
    min-width:0;
}

.other-payment-text strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
}

.other-payment-text span {
    display:block;
    margin-top:4px;
    font-size:12px;
    color:#6b7280;
    line-height:1.3;
}

.payment-chevron {
    font-size:30px;
    color:#0f6b3d;
    line-height:1;
    flex-shrink:0;
}
.other-payment-options {
    display:none;
}

.other-payment-options.open {
    display:flex;
    flex-direction:column;
    gap:12px;
}

#otherPaymentBtn.open .payment-chevron {
    transform:rotate(90deg);
		margin-top: 14px;
}
.kpay-hidden {
	position: absolute;
	left: -9999px;
	top: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
#checkout_country {border:0;}
/* end cust address */