:root {
    --mhc-primary: var(--main-color, #354ab6);
    --mhc-primary-soft: rgba(53, 74, 182, .08);
    --mhc-primary-line: rgba(53, 74, 182, .18);
    --mhc-bg: #f4f6fb;
    --mhc-card: #fff;
    --mhc-card-soft: #f8f9fd;
    --mhc-text: #121b35;
    --mhc-muted: #79819a;
    --mhc-line: #e4e7f0;
    --mhc-success: #1fac78;
    --mhc-danger: #f02467;
    --mhc-shadow: 0 24px 60px rgba(24, 32, 65, .09);
}

body.mh-checkout-v1 {
    background: var(--mhc-bg);
}

.mh-checkout-page {
    min-height: 620px;
    padding: 38px 0 100px;
    background:
        radial-gradient(circle at 12% 4%, rgba(53, 74, 182, .06), transparent 25%),
        var(--mhc-bg);
}

.mh-checkout-page > .container {
    width: min(1280px, calc(100% - 48px));
    max-width: none;
}

.checkout20-page-title {
    margin: 0 0 30px;
    text-align: center;
}

.checkout20-page-title h1 {
    margin: 0;
    color: var(--mhc-text);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.045em;
}

.checkout20-form {
    display: block;
    width: 100%;
}

.checkout20-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(350px, .72fr);
    align-items: start;
    gap: 28px;
    width: 100%;
}

.checkout20-main,
.checkout20-sidebar {
    display: grid;
    min-width: 0;
    gap: 24px;
}

.checkout20-card {
    width: 100%;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--mhc-line);
    border-radius: 26px;
    background: var(--mhc-card);
    box-shadow: var(--mhc-shadow);
}

.checkout20-summary-card {
    position: sticky;
    top: 108px;
    padding: 26px;
}

.checkout20-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--mhc-line);
}

.checkout20-card-head > div {
    min-width: 0;
}

.checkout20-card-head h2 {
    margin: 0;
    color: var(--mhc-text);
    font-size: 23px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.checkout20-section-kicker {
    display: block;
    margin: 0 0 5px;
    color: var(--mhc-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.checkout20-order-count,
.checkout20-secure-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid var(--mhc-primary-line);
    border-radius: 999px;
    color: var(--mhc-primary);
    background: var(--mhc-primary-soft);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.checkout20-secure-badge {
    color: var(--mhc-success);
    border-color: rgba(31, 172, 120, .18);
    background: rgba(31, 172, 120, .07);
}

#sepet-items.checkout20-cart-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.checkout20-cart-item {
    --cart-platform-color: var(--mhc-primary);
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 106px;
    padding: 17px;
    border: 1px solid var(--mhc-line);
    border-radius: 20px;
    background: var(--mhc-card-soft);
    color: var(--mhc-text);
}

.checkout20-cart-item.platform-instagram { --cart-platform-color: #ef3e78; }
.checkout20-cart-item.platform-tiktok { --cart-platform-color: #111827; }
.checkout20-cart-item.platform-youtube { --cart-platform-color: #ff2b2b; }
.checkout20-cart-item.platform-twitter,
.checkout20-cart-item.platform-x { --cart-platform-color: #199ee9; }
.checkout20-cart-item.platform-facebook { --cart-platform-color: #1877f2; }
.checkout20-cart-item.platform-telegram { --cart-platform-color: #2aabee; }
.checkout20-cart-item.platform-spotify { --cart-platform-color: #1db954; }

.checkout20-platform-icon {
    position: relative;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    overflow: hidden;
    border-radius: 19px;
    color: #fff;
    background: var(--cart-platform-color);
    box-shadow: 0 13px 28px rgba(33, 45, 85, .16);
}

.checkout20-platform-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, .24), transparent 58%);
}

.checkout20-platform-icon i {
    position: relative;
    z-index: 1;
    color: inherit;
    font-size: 29px;
}

.checkout20-cart-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.checkout20-platform-name {
    color: var(--cart-platform-color);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.checkout20-package-name {
    max-width: 100%;
    color: var(--mhc-text);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.checkout20-target {
    display: flex;
    max-width: 100%;
    align-items: center;
    gap: 6px;
    color: var(--mhc-muted);
    font-size: 12px;
}

.checkout20-target span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout20-cart-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.checkout20-price {
    display: inline-grid;
    min-width: 54px;
    min-height: 44px;
    place-items: center;
    padding: 0 12px;
    border-radius: 14px;
    color: var(--mhc-text);
    background: #eef0f7;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.checkout20-remove {
    display: grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: var(--mhc-danger);
    background: rgba(240, 36, 103, .09);
    font-size: 20px;
    cursor: pointer;
}

.checkout20-remove:hover {
    background: rgba(240, 36, 103, .15);
}

.checkout20-empty,
.checkout20-loading {
    padding: 30px 18px;
    border: 1px dashed #d7dbe8;
    border-radius: 18px;
    color: var(--mhc-muted);
    background: var(--mhc-card-soft);
    text-align: center;
}

.checkout20-empty i {
    display: block;
    margin-bottom: 8px;
    color: var(--mhc-primary);
    font-size: 30px;
}

.checkout20-empty a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--mhc-primary);
    font-weight: 800;
}

.checkout20-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.checkout20-field-full {
    grid-column: 1 / -1;
}

.checkout20-field label {
    display: block;
    margin-bottom: 8px;
    color: #303951;
    font-size: 12px;
    font-weight: 800;
}

.checkout20-input-wrap {
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #daddE8;
    border-radius: 17px;
    background: #fff;
    transition: border-color .18s, box-shadow .18s;
}

.checkout20-input-wrap:focus-within {
    border-color: var(--mhc-primary);
    box-shadow: 0 0 0 4px var(--mhc-primary-soft);
}

.checkout20-input-wrap > i {
    display: grid;
    width: 56px;
    min-width: 56px;
    height: 32px;
    place-items: center;
    border-right: 1px solid var(--mhc-line);
    color: #8b91a6;
    font-size: 19px;
}

.checkout20-input-wrap input.form-control {
    width: 100%;
    height: 60px;
    min-height: 60px;
    padding: 0 16px;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--mhc-text);
    font-size: 16px;
}

.checkout20-input-wrap input::placeholder {
    color: #979dae;
}

.checkout20-save-contact {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--mhc-line);
}

.checkout20-save-label,
.checkout20-contract {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.checkout20-save-label input,
.checkout20-contract input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkout20-save-box,
.checkout20-contract-box {
    display: grid;
    width: 24px;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid #d4d8e5;
    border-radius: 7px;
    color: transparent;
    background: #fff;
}

.checkout20-save-label input:checked + .checkout20-save-box,
.checkout20-contract input:checked + .checkout20-contract-box {
    border-color: var(--mhc-primary);
    color: #fff;
    background: var(--mhc-primary);
}

.checkout20-save-copy {
    display: grid;
    gap: 3px;
    color: var(--mhc-text);
}

.checkout20-save-copy strong {
    font-size: 13px;
}

.checkout20-save-copy small {
    color: var(--mhc-muted);
    font-size: 11px;
}

.checkout20-lock {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--mhc-primary);
    background: var(--mhc-primary-soft);
    font-size: 19px;
}

.checkout20-totals {
    display: grid !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.checkout20-totals li {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--mhc-muted) !important;
    background: transparent !important;
    font-size: 13px !important;
}

.checkout20-totals strong {
    color: #46506a;
    font-size: 14px;
    font-weight: 850;
}

.checkout20-totals .checkout20-total-row {
    margin-top: 5px;
    padding-top: 14px !important;
    border-top: 1px solid var(--mhc-line) !important;
    color: var(--mhc-text) !important;
    font-weight: 850;
}

.checkout20-totals .checkout20-total-row strong {
    color: var(--mhc-primary);
    font-size: 19px;
}

.checkout20-divider {
    height: 1px;
    margin: 20px 0;
    background: var(--mhc-line);
}

.checkout20-method-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--mhc-text);
    font-size: 14px;
    font-weight: 850;
}

.checkout20-method-title small {
    color: var(--mhc-muted);
    font-size: 10px;
    font-weight: 500;
}

.PaymentMethod.checkout20-methods ul {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.PaymentMethod.checkout20-methods li {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 20px !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 82px !important;
    padding: 14px !important;
    border: 1px solid var(--mhc-line) !important;
    border-radius: 18px !important;
    color: var(--mhc-text) !important;
    background: var(--mhc-card-soft) !important;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

.PaymentMethod.checkout20-methods li.selected {
    border-color: var(--mhc-primary) !important;
    background: var(--mhc-primary-soft) !important;
    box-shadow: 0 0 0 3px rgba(53, 74, 182, .055);
}

.checkout20-method-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--mhc-primary);
    background: rgba(53, 74, 182, .06);
    font-size: 22px;
}

.checkout20-method-copy {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.checkout20-method-copy .top span {
    color: var(--mhc-text) !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.25;
}

.checkout20-method-copy .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: var(--mhc-muted);
    font-size: 10px;
    font-weight: 700;
}

.checkout20-method-copy .selected {
    display: none;
    color: var(--mhc-primary);
}

.PaymentMethod.checkout20-methods li.selected .default {
    display: none;
}

.PaymentMethod.checkout20-methods li.selected .selected {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.checkout20-fee-label {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
}

.checkout20-fee-label.is-free {
    color: #18875f;
    background: #dcf7eb;
}

.checkout20-method-radio {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #c8ccda;
    border-radius: 50%;
}

.PaymentMethod.checkout20-methods li.selected .checkout20-method-radio {
    border: 6px solid var(--mhc-primary);
}

.checkout20-contract {
    margin: 18px 0 0;
    color: var(--mhc-muted);
    font-size: 12px;
    line-height: 1.45;
}

.checkout20-contract-copy {
    display: inline;
}

.checkout20-contract-link {
    display: inline;
    padding: 0;
    border: 0;
    color: var(--mhc-primary);
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.checkout20-submit {
    display: flex !important;
    width: 100% !important;
    min-height: 58px !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 18px 0 0 !important;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 16px !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--mhc-primary), #176fe8) !important;
    box-shadow: 0 14px 30px rgba(53, 74, 182, .24) !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    text-transform: none !important;
    cursor: pointer;
}

.checkout20-submit:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.mh-contract-modal {
    position: fixed;
    inset: 0;
    z-index: 100300;
    display: grid;
    visibility: hidden;
    place-items: center;
    padding: 20px;
    opacity: 0;
    background: rgba(5, 10, 26, .7);
    transition: opacity .18s, visibility .18s;
}

.mh-contract-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.mh-contract-modal__panel {
    width: min(760px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.mh-contract-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--mhc-line);
}

.mh-contract-modal__head h2 {
    margin: 0;
    color: var(--mhc-text);
    font-size: 21px;
}

.mh-contract-modal__close {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 12px;
    color: var(--mhc-text);
    background: #f0f2f7;
    cursor: pointer;
}

.mh-contract-modal__body {
    max-height: calc(100vh - 150px);
    overflow: auto;
    padding: 22px;
    color: #4c566f;
    font-size: 14px;
    line-height: 1.65;
}

body.mh-cart-modal-open {
    overflow: hidden;
}

.mh-cart-success {
    position: fixed;
    inset: 0;
    z-index: 100250;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    background: rgba(6, 12, 28, .7);
    backdrop-filter: blur(7px);
    transition: opacity .18s, visibility .18s;
}

.mh-cart-success.is-open {
    visibility: visible;
    opacity: 1;
}

.mh-cart-success__panel {
    display: flex;
    width: min(980px, 100%);
    max-height: min(820px, calc(100vh - 38px));
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 28px;
    background: #f8f9fd;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
    transform: translateY(14px) scale(.985);
    transition: transform .2s;
}

.mh-cart-success.is-open .mh-cart-success__panel {
    transform: none;
}

.mh-cart-success__top {
    position: relative;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--mhc-line);
    background: #fff;
}

.mh-cart-success__check {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--mhc-success), #56dca6);
    box-shadow: 0 13px 28px rgba(31, 172, 120, .24);
    font-size: 27px;
}

.mh-cart-success__copy small {
    display: block;
    margin-bottom: 4px;
    color: var(--mhc-success);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.mh-cart-success__copy strong {
    display: block;
    color: var(--mhc-text);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
}

.mh-cart-success__close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 13px;
    color: #687089;
    background: #f0f2f7;
    cursor: pointer;
}

.mh-cart-success__body {
    min-height: 0;
    overflow: auto;
    padding: 22px 24px 24px;
}

.mh-cart-success__heading {
    margin-bottom: 16px;
}

.mh-cart-success__heading h2 {
    margin: 0 0 4px;
    color: var(--mhc-text);
    font-size: 22px;
    font-weight: 900;
}

.mh-cart-success__heading p {
    margin: 0;
    color: var(--mhc-muted);
    font-size: 13px;
}

.mh-cart-recommendations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mh-cart-rec {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--mhc-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(27, 35, 67, .05);
}

.mh-cart-rec__head {
    min-height: 48px;
    margin: 0;
}

.mh-cart-rec__head span {
    display: block;
    margin-bottom: 4px;
    color: var(--mhc-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mh-cart-rec__head strong {
    display: block;
    color: var(--mhc-text);
    font-size: 16px;
    line-height: 1.25;
}

.mh-cart-rec__facts {
    display: grid;
    grid-template-columns: 88px 88px;
    gap: 8px;
    margin: 0;
}

.mh-cart-rec__fact {
    padding: 10px;
    border-radius: 12px;
    background: var(--mhc-card-soft);
}

.mh-cart-rec__fact small,
.mh-cart-rec__fact strong {
    display: block;
}

.mh-cart-rec__fact small {
    margin-bottom: 3px;
    color: var(--mhc-muted);
    font-size: 9px;
}

.mh-cart-rec__fact strong {
    color: var(--mhc-text);
    font-size: 14px;
}

.mh-cart-rec__controls {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
}

.mh-cart-rec__controls button,
.mh-cart-rec__add {
    border: 0;
    cursor: pointer;
}

.mh-cart-rec__controls button {
    display: grid;
    min-height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--mhc-primary);
    background: var(--mhc-primary-soft);
}

.mh-cart-rec__controls button:disabled {
    cursor: not-allowed;
    opacity: .4;
}

.mh-cart-rec__track {
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--mhc-muted);
    background: #f3f4f8;
    font-size: 10px;
    font-weight: 800;
}

.mh-cart-rec__add {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--mhc-primary), #176fe8);
    font-size: 13px;
    font-weight: 850;
}

.mh-cart-rec__add:disabled {
    cursor: wait;
    opacity: .65;
}

.mh-cart-success__empty {
    padding: 28px;
    border: 1px dashed #d8dce8;
    border-radius: 18px;
    color: var(--mhc-muted);
    background: #fff;
    text-align: center;
}

.mh-cart-success__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--mhc-line);
    background: #fff;
}

.mh-cart-success__nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--mhc-primary-line);
    border-radius: 15px;
    color: var(--mhc-primary);
    background: #fff;
    font-size: 14px;
    font-weight: 850;
}

.mh-cart-success__nav a:last-child {
    color: #fff;
    border-color: var(--mhc-primary);
    background: var(--mhc-primary);
}

.mh-cart-success__count {
    display: inline-grid;
    min-width: 23px;
    height: 23px;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    color: var(--mhc-primary);
    background: #fff;
    font-size: 11px;
}

@media (max-width: 1080px) {
    .checkout20-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
        gap: 22px;
    }

    .checkout20-card {
        padding: 24px;
    }
}

@media (max-width: 900px) {
    .checkout20-grid {
        grid-template-columns: 1fr;
    }

    .checkout20-sidebar {
        order: 2;
    }

    .checkout20-summary-card {
        position: static;
    }

}

@media (max-width: 767px) {
    .mh-checkout-page {
        padding: 20px 0 120px;
    }

    .mh-checkout-page > .container {
        width: calc(100% - 24px);
    }

    .checkout20-page-title {
        margin-bottom: 14px;
    }

    .checkout20-page-title h1 {
        font-size: clamp(36px, 12vw, 52px);
        line-height: 1.06;
    }

    .checkout20-main,
    .checkout20-sidebar,
    .checkout20-grid {
        gap: 12px;
    }

    .checkout20-card,
    .checkout20-summary-card {
        padding: 14px;
        border-radius: 17px;
    }

    .checkout20-card-head {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .checkout20-card-head h2 {
        font-size: 21px;
    }

    .checkout20-cart-item {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 8px;
        min-height: 0;
        padding: 10px;
        border-radius: 14px;
    }

    .checkout20-platform-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .checkout20-platform-icon i {
        font-size: 20px;
    }

    .checkout20-package-name {
        font-size: 13px;
        line-height: 1.22;
    }

    .checkout20-platform-name {
        font-size: 10px;
    }

    .checkout20-target {
        margin-top: 4px;
        font-size: 11px;
    }

    .checkout20-cart-actions {
        min-width: 78px;
        gap: 6px;
    }

    .checkout20-price {
        min-width: 37px;
        min-height: 34px;
        padding: 0 7px;
        border-radius: 10px;
        font-size: 12.5px;
    }

    .checkout20-remove {
        width: 34px;
        min-width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 16px;
    }

    .checkout20-fields {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .checkout20-field,
    .checkout20-field-full {
        grid-column: auto;
    }

    .checkout20-input-wrap,
    .checkout20-input-wrap input.form-control {
        min-height: 56px;
        height: 56px;
    }

    .mh-cart-success {
        align-items: flex-end;
        padding: 0;
    }

    .mh-cart-success__panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
    }

    .mh-cart-success__top {
        grid-template-columns: 48px minmax(0, 1fr) 38px;
        gap: 11px;
        padding: 15px;
    }

    .mh-cart-success__check {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 22px;
    }

    .mh-cart-success__copy strong {
        font-size: 16px;
    }

    .mh-cart-success__close {
        width: 38px;
        height: 38px;
    }

    .mh-cart-success__body {
        padding: 16px 14px;
    }

    .mh-cart-success__heading h2 {
        font-size: 19px;
    }

    .mh-cart-recommendations {
        display: flex;
        gap: 11px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .mh-cart-recommendations::-webkit-scrollbar {
        display: none;
    }

    .mh-cart-rec {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        flex: 0 0 min(78vw, 290px);
        scroll-snap-align: start;
    }

    .mh-cart-rec__facts {
        grid-template-columns: 78px;
    }

    .mh-cart-success__nav {
        position: sticky;
        bottom: 0;
        gap: 9px;
        padding: 12px 14px max(12px, env(safe-area-inset-bottom));
    }

    .mh-cart-success__nav a {
        min-height: 50px;
        font-size: 12px;
    }

    .mh-contract-modal {
        align-items: flex-end;
        padding: 0;
    }

    .mh-contract-modal__panel {
        max-height: 90vh;
        border-radius: 22px 22px 0 0;
    }
}

@media (max-width: 390px) {
    .mh-checkout-page > .container {
        width: calc(100% - 16px);
    }

    .checkout20-card,
    .checkout20-summary-card {
        padding: 12px;
    }

    .checkout20-cart-item {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 7px;
        padding: 9px;
    }

    .checkout20-platform-icon {
        width: 40px;
        height: 40px;
    }

    .checkout20-cart-actions {
        min-width: 74px;
        gap: 5px;
    }

    .checkout20-price {
        min-width: 34px;
        min-height: 32px;
        padding: 0 6px;
        font-size: 12px;
    }

    .checkout20-remove {
        width: 32px;
        min-width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .checkout20-order-count,
    .checkout20-secure-badge {
        min-height: 30px;
        padding: 0 9px;
        font-size: 9px;
    }
}


/* MH_ORDER_ADDRESS_LABEL_FIX_V1
   Islem adresi doldugunda aciklama metninin yazilan degerle cakismasini onler. */
.form-floating.fc-icon > input.form-control[name="islem_adres"]:not(:placeholder-shown) ~ label {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
}

.form-floating.fc-icon > input.form-control[name="islem_adres"]:not(:placeholder-shown) {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}