.elka-checkout {
    --elka-green: #008f3d;
    --elka-green-dark: #007331;
    --elka-green-soft: #eef8f2;
    --elka-ink: #101b2a;
    --elka-text: #4f5a68;
    --elka-muted: #84909c;
    --elka-border: #dce4df;
    --elka-border-strong: #cbd8d1;
    --elka-error: #cf3232;
    --elka-surface: #fff;
    --elka-panel: #f8faf9;
    position: relative;
    left: 50%;
    width: min(1180px, calc(100vw - 32px));
    margin: 30px 0 64px;
    color: var(--elka-ink);
    font-family: inherit;
    transform: translateX(-50%);
}

.elka-checkout *,
.elka-checkout *::before,
.elka-checkout *::after {
    box-sizing: border-box;
}

.elka-checkout a {
    color: var(--elka-green-dark);
}

.elka-checkout svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.elka-checkout__site-breadcrumbs {
    margin-bottom: 18px;
}

.elka-checkout__site-breadcrumbs > :first-child {
    margin-top: 0;
}

.elka-checkout__site-breadcrumbs > :last-child {
    margin-bottom: 0;
}

.elka-checkout__title {
    margin: 0 0 24px;
    color: var(--elka-ink);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.elka-checkout__columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 22px;
    align-items: start;
}

.elka-checkout__steps {
    display: grid;
    gap: 16px;
}

.elka-checkout__section,
.elka-checkout__agreements,
.elka-checkout__summary {
    border: 1px solid var(--elka-border);
    border-radius: 18px;
    background: var(--elka-surface);
}

.elka-checkout__section,
.elka-checkout__agreements {
    padding: 22px;
}

.elka-checkout__section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.elka-checkout__section-header h2,
.elka-checkout__summary h2 {
    margin: 0;
    color: var(--elka-ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.elka-checkout__step-number {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--elka-green);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.elka-checkout__choice-grid {
    display: grid;
    gap: 12px;
}

.elka-checkout__choice-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.elka-checkout__choice {
    position: relative;
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--elka-border);
    border-radius: 13px;
    background: #fff;
    color: var(--elka-ink);
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease;
}

.elka-checkout__choice:hover {
    border-color: #9bcbb0;
}

.elka-checkout__choice.is-selected {
    border-color: var(--elka-green);
    background: linear-gradient(110deg, #fff 5%, #f5fbf7 100%);
}

.elka-checkout__choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.elka-checkout__choice > svg {
    width: 24px;
    height: 24px;
    color: #27323c;
}

.elka-checkout__choice.is-selected > svg,
.elka-checkout__choice.is-selected > span:last-child,
.elka-checkout__choice.is-selected > span:last-child b {
    color: var(--elka-green-dark);
}

.elka-checkout__choice > span:last-child {
    display: grid;
    gap: 2px;
    color: #26313c;
    font-size: 14px;
    font-weight: 650;
}

.elka-checkout__choice span small {
    color: var(--elka-muted);
    font-size: 11px;
    font-weight: 450;
}

.elka-checkout__radio {
    display: grid;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1.5px solid #c5cec9;
    border-radius: 50%;
}

.elka-checkout__choice.is-selected .elka-checkout__radio {
    border: 6px solid var(--elka-green);
}

.elka-checkout__fields,
.elka-checkout__delivery-fields,
.elka-checkout__pickup-fields,
.elka-checkout__company-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.elka-checkout__company-fields {
    margin: 0;
}

.elka-checkout__field--wide {
    grid-column: 1 / -1;
}

.elka-checkout__field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
    color: #26313c;
    font-size: 14px;
    font-weight: 600;
}

input[type="date"][data-elka-date-input] {
    cursor: pointer;
}

.elka-checkout__field b {
    color: var(--elka-error);
}

.elka-checkout__field input,
.elka-checkout__field textarea,
.elka-checkout__field select,
.elka-checkout__coupon input {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--elka-border-strong);
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: var(--elka-ink);
    font: inherit;
    font-size: 16px;
    font-weight: 450;
    transition: border-color 150ms ease;
}

.elka-checkout__field input,
.elka-checkout__field select,
.elka-checkout__coupon input {
    height: 48px;
    padding: 0 13px;
}

.elka-checkout__field textarea {
    min-height: 92px;
    padding: 12px 13px;
    resize: vertical;
}

.elka-checkout__field input::placeholder,
.elka-checkout__field textarea::placeholder,
.elka-checkout__coupon input::placeholder {
    color: #a1aaa5;
}

.elka-checkout__field input:focus,
.elka-checkout__field textarea:focus,
.elka-checkout__field select:focus,
.elka-checkout__coupon input:focus {
    border-color: var(--elka-green);
    outline: 2px solid #b9dfc8;
    outline-offset: 1px;
}

.elka-checkout__field.is-error input,
.elka-checkout__field.is-error textarea,
.elka-checkout__field.is-error select,
.elka-checkout__check.is-error > span:first-of-type {
    border-color: var(--elka-error);
}

.elka-checkout__field small,
.elka-checkout__field-error {
    min-height: 0;
    color: var(--elka-error);
    font-size: 12px;
    font-weight: 500;
}

.elka-checkout__delivery-fields {
    margin-top: 16px;
}

.elka-checkout__pickup-fields {
    margin-top: 16px;
}

.elka-checkout__pickup-note {
    grid-column: 1 / -1;
    margin: 0;
    padding: 13px 15px;
    border-radius: 10px;
    background: var(--elka-green-soft);
    color: var(--elka-text);
    font-size: 13px;
    line-height: 1.5;
}

.elka-checkout__payment-logo {
    color: #6d32d9;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.elka-checkout__agreements {
    display: grid;
    gap: 14px;
}

.elka-checkout__check {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #424d58;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.45;
}

.elka-checkout__summary-empty {
    display: grid;
    min-height: 310px;
    place-items: center;
    align-content: center;
    gap: 11px;
    padding: 30px 14px 22px;
    border-top: 1px solid var(--elka-border);
    text-align: center;
}

.elka-checkout__summary-empty svg {
    width: 52px;
    height: 52px;
    color: var(--elka-green);
}

.elka-checkout__summary-empty h3,
.elka-checkout__summary-empty p {
    margin: 0;
}

.elka-checkout__summary-empty h3 {
    color: var(--elka-ink);
    font-size: 20px;
    font-weight: 800;
}

.elka-checkout__summary-empty p {
    max-width: 290px;
    color: var(--elka-text);
    font-size: 14px;
    line-height: 1.5;
}

.elka-checkout__check input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.elka-checkout__check > span:first-of-type {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 1px solid #bbc7c0;
    border-radius: 5px;
    background: #fff;
    transition: background 150ms ease, border-color 150ms ease;
}

.elka-checkout__check input:checked + span:first-of-type {
    border-color: var(--elka-green);
    background: var(--elka-green);
}

.elka-checkout__check input:checked + span:first-of-type::after {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    transform: rotate(45deg);
}

.elka-checkout__submit {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(110deg, var(--elka-green) 0%, var(--elka-green-dark) 100%);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    transition: filter 150ms ease, transform 150ms ease;
}

.elka-checkout__submit:hover:not(:disabled) {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

.elka-checkout__submit:disabled {
    cursor: not-allowed;
    filter: grayscale(0.35);
    opacity: 0.62;
}

.elka-checkout__submit svg {
    width: 22px;
    height: 22px;
}

.elka-checkout__submit.is-loading svg {
    animation: elka-checkout-pulse 750ms ease-in-out infinite alternate;
}

.elka-checkout__submit-note {
    margin: -4px 0 0;
    color: var(--elka-muted);
    font-size: 11px;
    text-align: center;
}

.elka-checkout__status {
    color: var(--elka-error);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.elka-checkout__summary {
    position: sticky;
    top: 76px;
    overflow: hidden;
    padding: 22px;
}

.elka-checkout__summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 15px;
}

.elka-checkout__summary-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.elka-checkout__summary-actions > span {
    color: var(--elka-muted);
    font-size: 12px;
    white-space: nowrap;
}

.elka-checkout__clear-cart {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #7e8983;
    cursor: pointer;
    transition: color 150ms ease, background 150ms ease;
}

.elka-checkout__clear-cart:hover {
    background: #fff1f1;
    color: var(--elka-error);
}

.elka-checkout__clear-cart svg {
    width: 22px;
    height: 22px;
}

.elka-checkout__cart-items {
    border-top: 1px solid var(--elka-border);
}

.elka-checkout__cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 9px 12px;
    padding: 16px 38px 16px 0;
    border-bottom: 1px solid var(--elka-border);
}

.elka-checkout__item-image {
    display: grid;
    grid-row: 1 / 3;
    width: 70px;
    height: 70px;
    overflow: hidden;
    place-items: center;
    border-radius: 10px;
    background: #f1f4f2;
}

.elka-checkout__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elka-checkout__item-main {
    display: grid;
    min-width: 0;
    align-content: start;
    gap: 5px;
}

.elka-checkout__item-name {
    display: -webkit-box;
    overflow: hidden;
    color: #24303a !important;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.elka-checkout__item-attrs {
    overflow: hidden;
    color: var(--elka-muted);
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.elka-checkout__quantity {
    display: grid;
    width: 96px;
    height: 34px;
    grid-template-columns: 30px 36px 30px;
    align-items: stretch;
    margin-top: 3px;
    overflow: hidden;
    border: 1px solid var(--elka-border);
    border-radius: 9px;
    background: var(--elka-panel);
}

.elka-checkout__quantity button,
.elka-checkout__quantity input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 32px;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    appearance: none;
    background: transparent;
    color: #34404a;
    font: inherit;
    font-size: 15px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    -webkit-appearance: none;
}

.elka-checkout__quantity button {
    display: grid;
    place-items: center;
    line-height: 1;
    cursor: pointer;
}

.elka-checkout__quantity button:hover {
    color: var(--elka-green);
}

.elka-checkout__quantity input {
    font-size: 16px;
    font-weight: 750;
}

.elka-checkout__remove {
    position: absolute;
    top: 15px;
    right: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #87918c;
    cursor: pointer;
}

.elka-checkout__remove:hover {
    color: var(--elka-error);
}

.elka-checkout__remove svg {
    width: 23px;
    height: 23px;
}

.elka-checkout__item-price {
    align-self: end;
    color: var(--elka-ink);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.elka-checkout__upsells {
    padding: 17px 0 14px;
    border-bottom: 1px solid var(--elka-border);
}

.elka-checkout__upsells h3 {
    margin: 0 0 10px;
    color: var(--elka-ink);
    font-size: 13px;
    font-weight: 800;
}

.elka-checkout__upsells h3 small {
    color: var(--elka-muted);
    font-size: 11px;
    font-weight: 450;
}

.elka-checkout__upsell {
    display: grid;
    grid-template-columns: 20px 46px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    cursor: pointer;
}

.elka-checkout__upsell input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.elka-checkout__upsell-check {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #bdc8c2;
    border-radius: 5px;
}

.elka-checkout__upsell input:checked + .elka-checkout__upsell-check {
    border-color: var(--elka-green);
    background: var(--elka-green);
}

.elka-checkout__upsell input:checked + .elka-checkout__upsell-check::after {
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    transform: rotate(45deg);
}

.elka-checkout__upsell img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
}

.elka-checkout__upsell > span:last-child {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.elka-checkout__upsell b {
    overflow: hidden;
    color: #2b3640;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.elka-checkout__upsell small {
    color: var(--elka-green-dark);
    font-size: 12px;
    font-weight: 700;
}

.elka-checkout__coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    padding: 16px 0 13px;
}

.elka-checkout__coupon button {
    min-width: 105px;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--elka-border-strong);
    border-radius: 10px;
    background: #fff;
    color: #35414b;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 650;
}

.elka-checkout__coupon button:hover {
    border-color: var(--elka-green);
    color: var(--elka-green-dark);
}

.elka-checkout__totals {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--elka-border);
}

.elka-checkout__totals > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #56616b;
    font-size: 13px;
}

.elka-checkout__totals dt,
.elka-checkout__totals dd {
    margin: 0;
}

.elka-checkout__totals dd {
    color: #303a44;
    font-weight: 650;
}

.elka-checkout__grand-total {
    align-items: baseline;
    margin-top: 3px;
    padding-top: 11px;
    border-top: 1px solid var(--elka-border);
    color: var(--elka-ink) !important;
    font-size: 17px !important;
    font-weight: 800;
}

.elka-checkout__grand-total dd {
    color: var(--elka-green-dark) !important;
    font-size: 23px;
    font-weight: 850;
}

.elka-checkout__safe-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    color: #67736d;
    font-size: 12px;
}

.elka-checkout__safe-note svg {
    width: 20px;
    height: 20px;
    color: var(--elka-green);
}

.elka-checkout__delivery-note {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(125deg, #eef8f2, #f8fbf9);
}

.elka-checkout__delivery-note > svg {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    color: var(--elka-green);
}

.elka-checkout__delivery-note span {
    display: grid;
    gap: 3px;
}

.elka-checkout__delivery-note b {
    color: #26322b;
    font-size: 13px;
}

.elka-checkout__delivery-note small {
    color: #6d7872;
    font-size: 11px;
    line-height: 1.4;
}

.elka-checkout__empty {
    display: grid;
    min-height: 360px;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 42px;
    border: 1px solid var(--elka-border);
    border-radius: 18px;
    text-align: center;
}

.elka-checkout__empty svg {
    width: 56px;
    height: 56px;
    color: var(--elka-green);
}

.elka-checkout__empty h2,
.elka-checkout__empty p {
    margin: 0;
}

.elka-checkout__empty p {
    color: var(--elka-text);
}

.elka-checkout__primary-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    margin-top: 5px;
    padding: 0 24px;
    border-radius: 10px;
    background: var(--elka-green);
    color: #fff !important;
    font-weight: 750;
    text-decoration: none;
}

.elka-checkout__fatal {
    padding: 18px;
    border: 1px solid #e9b8b8;
    border-radius: 12px;
    background: #fff5f5;
    color: #9a2727;
}

.elka-checkout button,
.elka-checkout input,
.elka-checkout select,
.elka-checkout textarea,
.elka-checkout__choice,
.elka-checkout__radio,
.elka-checkout__check > span:first-of-type,
.elka-checkout__upsell-check {
    box-shadow: none !important;
}

.elka-checkout [hidden] {
    display: none !important;
}

.elka-checkout .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.elka-thankyou {
    position: relative;
    left: 50%;
    width: min(1180px, calc(100vw - 32px));
    margin: 42px 0 72px;
    color: #101b2a;
    font-family: inherit;
    transform: translateX(-50%);
}

.elka-thankyou *,
.elka-thankyou *::before,
.elka-thankyou *::after {
    box-sizing: border-box;
}

.elka-thankyou__card {
    display: grid;
    min-height: 430px;
    place-items: center;
    align-content: center;
    gap: 15px;
    padding: 54px 32px;
    border: 1px solid #dce4df;
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.elka-thankyou__icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 50%;
    background: #fff5f5;
    color: #cf3232;
}

.elka-thankyou__icon--success {
    background: #eef8f2;
    color: #008f3d;
}

.elka-thankyou__icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.elka-thankyou h1,
.elka-thankyou p {
    margin: 0;
}

.elka-thankyou h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.elka-thankyou p {
    max-width: 650px;
    color: #4f5a68;
    font-size: 17px;
    line-height: 1.55;
}

.elka-thankyou__number {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
    padding: 11px 16px;
    border-radius: 10px;
    background: #f5f8f6;
}

.elka-thankyou__number span {
    color: #66726c;
    font-size: 14px;
}

.elka-thankyou__number strong {
    color: #007331;
    font-size: 17px;
}

.elka-thankyou__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.elka-thankyou__actions a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid #008f3d;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
}

.elka-thankyou__primary {
    background: #008f3d;
    color: #fff !important;
}

.elka-thankyou__secondary {
    background: #fff;
    color: #007331 !important;
}

@keyframes elka-checkout-pulse {
    from { opacity: 0.45; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 940px) {
    .elka-checkout__columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .elka-checkout__summary {
        position: static;
        grid-row: 1;
    }

    .elka-checkout__steps {
        grid-row: 2;
    }
}

@media (max-width: 620px) {
    .elka-checkout {
        width: calc(100vw - 20px);
        margin: 18px 0 24px;
    }

    .elka-checkout__site-breadcrumbs {
        margin-bottom: 12px;
    }

    .elka-checkout__title {
        margin-bottom: 16px;
        font-size: 29px;
    }

    .elka-checkout__columns,
    .elka-checkout__steps {
        gap: 12px;
    }

    .elka-checkout__section,
    .elka-checkout__agreements,
    .elka-checkout__summary {
        border-radius: 14px;
    }

    .elka-checkout__section,
    .elka-checkout__agreements,
    .elka-checkout__summary {
        padding: 16px;
    }

    .elka-checkout__section-header {
        margin-bottom: 14px;
    }

    .elka-checkout__section-header h2,
    .elka-checkout__summary h2 {
        font-size: 18px;
    }

    .elka-checkout__step-number {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .elka-checkout__choice-grid--two,
    .elka-checkout__fields,
    .elka-checkout__delivery-fields,
    .elka-checkout__pickup-fields,
    .elka-checkout__company-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .elka-checkout__choice {
        min-height: 58px;
        padding: 11px 12px;
    }

    .elka-checkout__delivery-fields {
        margin-top: 13px;
    }

    .elka-checkout__pickup-fields {
        margin-top: 13px;
    }

    .elka-checkout__cart-item {
        grid-template-columns: 66px minmax(0, 1fr) auto;
        padding-right: 38px;
    }

    .elka-checkout__item-image {
        width: 66px;
        height: 66px;
    }

    .elka-checkout__coupon {
        grid-template-columns: minmax(0, 1fr) 100px;
    }

    .elka-checkout__coupon button {
        min-width: 0;
        padding: 0 8px;
    }

    .elka-checkout__grand-total dd {
        font-size: 21px;
    }

    .elka-checkout__summary-empty {
        min-height: 250px;
        padding: 26px 10px 18px;
    }

    .elka-thankyou {
        width: calc(100vw - 20px);
        margin: 22px 0 34px;
    }

    .elka-thankyou__card {
        min-height: 390px;
        padding: 38px 20px;
        border-radius: 15px;
    }

    .elka-thankyou p {
        font-size: 15px;
    }

    .elka-thankyou__actions {
        width: 100%;
    }

    .elka-thankyou__actions a {
        width: 100%;
    }
}
