.translation-form .container{
    width:1440px;
}

.translation-hero {
    position: relative;
    width: 100%;
    overflow: visible;
    background-image: url("../img/topp_bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 192px 0px 56px;
}

.translation-hero__container {
    position: relative;
}



.translation-hero__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.translation-hero__eyebrow {
    color: var(--brand-core-accent, #E8663B);

    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.translation-hero__title {
    margin: 0;

    color: var(--brand-surface-cream, #F4EEE2);

    font-family: Fraunces, serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 124%;
    letter-spacing: -0.56px;
}

.translation-hero__description {
    margin: 0;

    color: var(--brand-tint-cream-80,
            rgba(244, 238, 226, 0.80));

    font-family: Satoshi, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 160%;
}

.translation-hero__tear {
    position: absolute;
    z-index: 3;

    left: 0;
    top: 0px;

    width: 100%;
    height: auto;

    display: block;
    pointer-events: none;
}


/* =========================================
   TRANSLATION FORM
========================================= */

.translation-form {
    width: 100%;
    background: #fdfbf6;
    padding: 96px 0px 0px;
}

.translation-form .container {
    display: flex;
    gap: 64px;
    padding: 96px 0 112px;
}

.container_translation-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 916px;
    width: 100%;
}

/* =========================================
   COMMON STEP
========================================= */

.translation-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.translation-step__heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.translation-step__number {
    flex-shrink: 0;

    color: var(--brand-core-accent, #E8663B);

    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.translation-step__heading h2 {
    margin: 0;

    color: var(--brand-core-ink, #15332A);

    font-family: "Fraunces", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.12px;
}

.translation-step__helper {
    margin: 0 0;
    color: var(--brand-text-muted, #5C6E67);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
}


/* =========================================
   STEP 01 — TRANSLATION TYPE
========================================= */

.translation-type__options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* =========================================
   RADIO OPTION
========================================= */

.translation-option {
    position: relative;

    display: flex;
    flex: 1 0 0;
    align-self: stretch;

    padding: 28px;

    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    border-radius: var(--radius-m, 12px);
    border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));

    background: #ffffff;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}


/* ACTUAL RADIO INPUT */

.translation-option input[type="radio"] {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: 0;
    opacity: 0;

    pointer-events: none;
}


/* SELECTED CARD */

.translation-option:has(input[type="radio"]:checked) {
    border-radius: var(--radius-m, 12px);
    border: 1.5px solid var(--brand-core-accent, #E8663B);
    background: var(--brand-surface-cream, #F4EEE2);
}


/* =========================================
   CUSTOM RADIO
========================================= */

.translation-radio {
    position: relative;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border: 1.5px solid #D9DEDA;
    border-radius: 50%;

    background: transparent;

    box-sizing: border-box;
}


/* SELECTED RADIO */

.translation-option:has(input[type="radio"]:checked) .translation-radio {
    border-color: var(--brand-core-accent, #E8663B);
    background: var(--brand-core-accent, #E8663B);
}


/* WHITE INNER DOT */

.translation-option:has(input[type="radio"]:checked) .translation-radio::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 50%;
    left: 50%;

    border-radius: 50%;
    background: #ffffff;

    transform: translate(-50%, -50%);
}

/* =========================================
   RADIO OPTION
========================================= */

.translation-option {
    position: relative;

    display: flex;
    flex: 1 0 0;
    align-self: stretch;

    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: var(--radius-m, 12px);
    background: #ffffff;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}


/* ACTUAL RADIO INPUT */

.translation-option input[type="radio"] {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: 0;
    opacity: 0;

    pointer-events: none;
}


/* SELECTED CARD */

.translation-option:has(input[type="radio"]:checked) {
    border-radius: var(--radius-m, 12px);
    border: 1.5px solid var(--brand-core-accent, #E8663B);
    background: var(--brand-surface-cream, #F4EEE2);
}


/* =========================================
   CUSTOM RADIO
========================================= */

.translation-radio {
    position: relative;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border: 1.5px solid #D9DEDA;
    border-radius: 50%;

    background: transparent;

    box-sizing: border-box;
}


/* SELECTED RADIO */

.translation-option:has(input[type="radio"]:checked) .translation-radio {
    border-color: var(--brand-core-accent, #E8663B);
    background: var(--brand-core-accent, #E8663B);
}


/* WHITE INNER DOT */

.translation-option:has(input[type="radio"]:checked) .translation-radio::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 50%;
    left: 50%;

    border-radius: 50%;
    background: #ffffff;

    transform: translate(-50%, -50%);
}


.translation-option input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.translation-option__content {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.translation-option__top {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.translation-option__title {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--brand-core-ink, #15332A);

    font-family: Fraunces, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    letter-spacing: -0.09px;
}

.translation-option__price {
    flex-shrink: 0;

    color: var(--brand-core-accent, #E8663B);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.translation-option__description {
    color: var(--brand-text-body, #2E3A33);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}


/* =========================================
   RADIO
========================================= */

.translation-radio {
    position: relative;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border: 1.5px solid #D9DEDA;
    border-radius: 50%;

    background: transparent;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.translation-option--selected .translation-radio,
.translation-delivery__option--selected .translation-radio {
    border-color: var(--brand-core-accent, #E8663B);
    background: var(--brand-core-accent, #E8663B);
}

.translation-option--selected .translation-radio::after,
.translation-delivery__option--selected .translation-radio::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 50%;
    left: 50%;

    border-radius: 50%;
    background: #ffffff;

    transform: translate(-50%, -50%);
}


/* =========================================
   STEP 02 — LANGUAGE
========================================= */

.translation-language {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.translation-select {
    display: flex;
    padding: 12px 20px 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: var(--radius-s, 8px);
    background: var(--brand-surface-cream, #F4EEE2);
}

.translation-select label,
.translation-upload__label,
.translation-notes label {
    color: var(--brand-text-muted, #5C6E67);

    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.translation-select__field {
    position: relative;

    width: 100%;
}

.translation-select select {
    width: 100%;
    padding: 0px;
    appearance: none;
    -webkit-appearance: none;

    border: 0;
    border-radius: 8px;

    outline: none;

    background: var(--brand-surface-cream, #F4EEE2);

    color: var(--brand-text-body, #2E3A33);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 160%;

    cursor: pointer;
}

.translation-select__arrow {
    position: absolute;

    top: 50%;
    right: 18px;

    display: flex;

    color: var(--brand-core-ink, #15332A);

    pointer-events: none;

    transform: translateY(-50%);
}


/* =========================================
   STEP 03 — QUANTITY
========================================= */
.translation-quantity {
    display: flex;
    width: 260px;
    align-items: center;
    border-radius: var(--radius-m, 12px);
    border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
    background: var(--brand-surface-cream, #F4EEE2);
    justify-content: space-between;
}

.translation-quantity__button {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;
    background: transparent;
}


.translation-quantity__button img {
    width: 16px;
    height: 16px;

    display: block;
}

.translation-quantity__value {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-core-ink, #15332A);
    text-align: center;
    font-family: "Fraunces";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    /* 23.76px */
    letter-spacing: -0.09px;
}

.qunatity_div {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.translation-words-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-text-body, #2E3A33);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
}

.translation-step__note {
    margin: -12px 0 0;
    color: var(--brand-text-muted, #5C6E67);
    font-family: "Satoshi";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    /* 21.7px */
}


/* =========================================
   UPLOAD
========================================= */

.translation-upload {
    position: relative;
    border-radius: var(--radius-s, 8px);
    border: 1px dashed var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
    background: var(--brand-surface-cream, #F4EEE2);
    display: flex;
    padding: 12px 20px 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.translation-upload__dropzone {
    display: flex;
    padding: 12px 0 8px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: var(--brand-text-muted, #5C6E67);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
}

.translation-upload__icon {
    display: flex;

    color: var(--brand-text-muted, #5C6E67);
}

.translation-upload__input {
    position: absolute;

    inset: 28px 0 0;

    width: 100%;
    height: calc(100% - 28px);

    opacity: 0;

    cursor: pointer;
}

/* =========================================
   STEP 04 — DELIVERY
========================================= */

.translation-delivery {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.translation-delivery__option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    gap: 14px;
    flex: 1 0 0;
    border-radius: var(--radius-m, 12px);
    border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
    background: var(--base-white, #FFF);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}


/* Hide actual radio */

.translation-delivery__option input[type="radio"] {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: 0;

    opacity: 0;
    pointer-events: none;
}


/* Selected card */

.translation-delivery__option:has(input[type="radio"]:checked) {
    border-radius: var(--radius-m, 12px);
    border: 1.5px solid var(--brand-core-accent, #E8663B);
    background: var(--brand-surface-cream, #F4EEE2);
}


/* =========================================
   RADIO
========================================= */

.translation-delivery__option .translation-radio {
    position: relative;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border: 1.5px solid #D9DEDA;
    border-radius: 50%;

    background: transparent;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}


/* Selected radio */

.translation-delivery__option:has(input[type="radio"]:checked) .translation-radio {
    border-color: var(--brand-core-accent, #E8663B);
    background: var(--brand-core-accent, #E8663B);
}


/* White center */

.translation-delivery__option:has(input[type="radio"]:checked) .translation-radio::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 50%;
    left: 50%;

    border-radius: 50%;
    background: #ffffff;

    transform: translate(-50%, -50%);
}


/* =========================================
   CONTENT
========================================= */

.translation-delivery__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.translation-delivery__title {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--brand-core-ink, #15332A);
    font-family: "Fraunces";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    /* 23.76px */
    letter-spacing: -0.09px;
}

.translation-delivery__time {
    padding-left: 32px;
    color: var(--brand-text-muted, #5C6E67);
    font-family: "Satoshi";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    /* 21.7px */
}

.translation-delivery__price {
    flex-shrink: 0;
    color: var(--brand-core-accent, #E8663B);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
}


/* Hover */

.translation-delivery__option:hover {
    border-color: var(--brand-core-accent, #E8663B);
}

/* =========================================
   NOTES
========================================= */

.translation-notes {
    display: flex;
    height: 132px;
    padding: 12px 20px 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: var(--radius-s, 8px);
    background: var(--brand-surface-cream, #F4EEE2);
}

.translation-notes textarea {
    width: 100%;
    min-height: 70px;

    padding: 0;

    resize: vertical;

    border: 0;
    outline: none;

    background: transparent;
    color: var(--brand-text-muted, #5C6E67);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
}

.translation-notes textarea::placeholder {
    color: var(--brand-text-muted, #5C6E67);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
    opacity: 1;
}


/* =========================================
   HOVER
========================================= */

.translation-option:hover,
.translation-delivery__option:hover {
    border-color: var(--brand-core-accent, #E8663B);
}

.translation-quantity__button:hover {
    opacity: 0.65;
}

.translation-form__container {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
}

/* =========================================
   ORDER SUMMARY
========================================= */

.order-summary {
    display: flex;
    width: 460px;
    padding: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: var(--radius-l, 16px);
    background: var(--brand-surface-cream, #F4EEE2);
}


/* =========================================
   TITLE
========================================= */

.order-summary__title {
    margin: 0;
    color: var(--brand-core-ink, #15332A);
    font-family: "Fraunces";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    /* 23.76px */
    letter-spacing: -0.09px;
}


/* =========================================
   DETAILS
========================================= */

.order-summary__details {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
}

.order-summary__row {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(21, 51, 42, 0.16);
    color: var(--brand-text-body, #2E3A33);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 27.2px */
}

.order-summary__row span:last-child {
    flex-shrink: 0;
}

.order-summary__row--total {
    color: var(--brand-core-ink, #15332A);
    color: var(--brand-core-ink, #15332A);
    font-family: "Fraunces";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    /* 23.76px */
    letter-spacing: -0.09px;
    border-bottom: 1px solid rgba(21, 51, 42, 0.16);
    margin-bottom: 4px;

}

.order-summary__row--total span:last-child {
    color: var(--brand-core-accent, #E8663B);
}


/* =========================================
   TERMS
========================================= */

.order-summary__terms {
    display: flex;
}

.order-summary__checkbox {
    display: flex;
    height: 22px;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
    cursor: pointer;
}

.order-summary__checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.order-summary__checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: var(--radius-xs, 4px);
    border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
    background: var(--base-white, #FFF);
}

.order-summary__checkbox input:checked+.order-summary__checkmark {
    border-color: var(--brand-core-accent, #E8663B);
    background: var(--brand-core-accent, #E8663B);
}

.order-summary__checkbox input:checked+.order-summary__checkmark::after {
    content: "";

    position: absolute;

    width: 3px;
    height: 6px;

    top: 6px;
    left: 8px;

    border: solid #ffffff;
    border-width: 0 1px 1px 0;

    transform: rotate(45deg);
}

.order-summary__terms-text {
    color: var(--brand-text-body, #2E3A33);
    font-family: "Satoshi";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    /* 21.7px */
}

.order-summary__terms-text a {
    color: inherit;

    text-decoration: underline;
    text-underline-offset: 2px;
}


/* =========================================
   BUTTONS
========================================= */

.order-summary__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    margin-top: -8px;
}

.order-summary__button {
    width: 100%;
    justify-content: space-between;
    display: flex;
    padding: 18px 24px 18px 28px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    line-height: 140%;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    color: var(--base-white, #FFF);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 23.8px */
}


/* Primary */

.order-summary__button--primary {
    border-radius: var(--radius-s, 8px);
    background: var(--brand-core-accent, #E8663B);
    color: #ffffff;
    border: 1px solid var(--brand-core-accent, #E8663B);
}

.order-summary__button--primary:hover {
    background: #d95730;
    border-color: #d95730;
}


/* Secondary */

.order-summary__button--secondary {
    border-radius: var(--radius-s, 8px);
    border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
    background: var(--base-white, #FFF);

    color: var(--brand-core-ink, #15332A);
}

.order-summary__button--secondary:hover {
    border-color: var(--brand-core-ink, #15332A);
    color: #ffffff;

}


/* Arrow */

.order-summary__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}

.order-summary__button:hover .order-summary__arrow {
    transform: translateX(3px);
}

.order-summary__button--primary:hover {
    background: var(--brand-core-ink, #15332A);
    border-color: var(--brand-core-ink, #15332A);
}

.order-summary__button--primary:hover .order-summary__arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--brand-core-accent, #E8663B);

    transform: translateX(2px);
}


.order-summary__button--secondary:hover {
    background: var(--brand-core-ink, #15332A);
    border-color: var(--brand-core-ink, #15332A);
}

.order-summary__button--secondary:hover .order-summary__arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--brand-core-accent, #E8663B);

    transform: translateX(2px);
}


/* CART */

/* =========================================
   CART HEADER
========================================= */

.cart-header {
    position: relative;
    width: 100%;
    overflow: visible;
    background-image: url("../img/topp_bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 180px 0px 56px;
}

.cart-header__container {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;
}


/* =========================================
   TITLE
========================================= */

.cart-header__title {
    margin: 0;

    color: var(--brand-surface-cream, #F4EEE2);

    text-align: center;

    font-family: Fraunces, serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 124%;
    letter-spacing: -0.56px;
}


/* =========================================
   PROGRESS CONTAINER
========================================= */

.cart-progress {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;
}


/* =========================================
   PROGRESS ITEM
========================================= */

.cart-progress__item {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 10px 20px 10px 18px;

    flex: 0 0 auto;

    border-radius: var(--radius-full, 999px);

    background: var(--brand-tint-cream-10,
            rgba(244, 238, 226, 0.10));

    color: var(--brand-surface-cream, #F4EEE2);
    font-family: "Satoshi";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 21px */
}


/* =========================================
   ACTIVE ITEM
========================================= */

.cart-progress__item--active {
    padding: 10px 20px 10px 18px;

    gap: 10px;

    background: var(--brand-core-accent, #E8663B);

    color: #FFFFFF;
}


/* =========================================
   NUMBER
========================================= */

.cart-progress__number {
    color: var(--base-white, #FFF);
    font-family: "Satoshi";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 16.8px */
    letter-spacing: 1.68px;
    text-transform: uppercase;
}


/* =========================================
   LABEL
========================================= */

.cart-progress__label {
    color: var(--base-white, #FFF);
    font-family: "Satoshi";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 21px */
}


/* =========================================
   DOTTED LINE
========================================= */

.cart-progress__line {
    width: 40px;
    height: 1px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
}

.cart-progress__line svg {
    width: 40px;
    height: 1px;

    display: block;
}


.cart-progress__item:not(.cart-progress__item--active) {
    transition: background-color 0.2s ease;
}

.cart-progress__item:not(.cart-progress__item--active):hover {
    background: rgba(244, 238, 226, 0.16);
}

/* =========================================
   CART CONTENT
========================================= */

.cart-content {
    width: 100%;
    padding: 82px 0 112px;

    background: var(--brand-surface-paper, #FDFBF6);
}

.cart-layout {
    width: 100%;

    display: flex;
    align-items: flex-start;
    padding-top: 88px;
    gap: 64px;
}


/* =========================================
   LEFT CART ITEMS
========================================= */

.cart-items {
    width: calc(100% - 440px);

    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* =========================================
   CART ITEM
========================================= */

.cart-item-card {
    width: 100%;
    display: flex;
    padding: 36px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: var(--radius-l, 16px);
    border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
    background: var(--base-white, #FFF);
}


/* =========================================
   ITEM HEADER
========================================= */

.cart-item-card__header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.cart-item-card__title {
    margin: 0;

    color: var(--brand-core-ink, #15332A);

    font-family: "Fraunces", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.12px;
}


/* PRICE + REMOVE */

.cart-item-card__right {
    display: flex;
    align-items: center;

    gap: 24px;

    flex-shrink: 0;
}

.cart-item-card__price {
    color: var(--brand-core-accent, #E8663B);

    font-family: Fraunces, serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.12px;
}

.cart-item-card__remove {
    padding: 0;

    border: 0;
    background: transparent;

    color: var(--brand-text-muted, #5C6E67);

    font-family: Satoshi, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;

    text-decoration-line: underline;

    cursor: pointer;
}


.cart-item-card__details {
    width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 40px;
}

.cart-item-card__detail {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 6px;
}

.cart-item-card__label {
    color: var(--brand-core-accent, #E8663B);

    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.68px;

    text-transform: uppercase;
}

.cart-item-card__value {
    color: var(--brand-core-ink, #15332A);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}


/* =========================================
   ADD DOCUMENT
========================================= */

.cart-add-document {
    width: 100%;
    display: flex;
    padding: 24px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    border-radius: var(--radius-l, 16px);

    border: 1px dashed var(--brand-tint-ink-16,
            rgba(21, 51, 42, 0.16));

    background: transparent;

    color: var(--brand-core-accent, #E8663B);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;

    cursor: pointer;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.cart-summary {
    width: 440px;

    flex: 0 0 440px;

    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    box-sizing: border-box;
    border-radius: var(--radius-l, 16px);
    background: var(--brand-surface-cream, #F4EEE2);
}


/* =========================================
   SUMMARY TITLE
========================================= */

.cart-summary__title {
    margin: 0;

    color: var(--brand-core-ink, #15332A);

    font-family: Fraunces, serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.12px;
}


/* =========================================
   SUMMARY DETAILS
========================================= */

.cart-summary__details {
    display: flex;
    flex-direction: column;
}

.cart-summary__row {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 24px 0;

    border-top: 1px solid #DFDCD3;

    color: var(--brand-text-muted, #5C6E67);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.cart-summary__row:last-of-type {
    border-top: 0;
    padding-top: 0px;
    border-bottom: 1px solid var(--brand-border, #DFDCD3);
}


/* =========================================
   TOTAL
========================================= */

.cart-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 0 0;

    color: var(--brand-core-ink, #15332A);

    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 160%;
}

.cart-summary__total strong {
    color: var(--brand-core-accent, #E8663B);

    font-family: Fraunces, serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 128%;
    letter-spacing: -0.16px;
}


/* =========================================
   CHECKOUT BUTTON
========================================= */

.cart-summary__checkout {
    width: 100%;
    min-height: 56px;
    display: flex;
    padding: 18px 24px 18px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 0;
    border-radius: var(--radius-s, 8px);
    background: var(--brand-core-accent, #E8663B);
    color: var(--base-white, #FFF);
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 23.8px */

    cursor: pointer;
}

.cart-summary__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}

.cart-summary__checkout:hover .cart-summary__arrow {
    transform: translateX(3px);
}


/* =========================================
   PAYMENT
========================================= */

.cart-summary__payment {
    display: flex;
    align-items: center;
}

.cart-summary__payment img {
    width: 256px;
    height: 46px;
}

/* =========================================
   SECURITY
========================================= */

.cart-summary__security {
    margin: 0;

    color: var(--brand-text-muted, #5C6E67);

    font-family: Satoshi, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}



/* CART BTN */

.cart-summary__checkout:hover {
    border-color: var(--brand-core-ink, #15332A);
    color: #ffffff;

}


/* Arrow */

.order-summary__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}


.cart-summary__checkout:hover .cart-summary__arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--brand-core-accent, #E8663B);

    transform: translateX(2px);
}


.cart-summary__checkout:hover {
    background: var(--brand-core-ink, #15332A);
    border-color: var(--brand-core-ink, #15332A);
}

.cart-summary__checkout:hover .order-summary__arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--brand-core-accent, #E8663B);

    transform: translateX(2px);
}

.cart-summary__row > span:nth-child(2) {
    color: var(--brand-text-body, #2E3A33);
    font-family: Satoshi;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}



/* Checkout */


.checkout-header {
    position: relative;

    width: 100%;

    overflow: visible;

    background-image: url("../img/topp_bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

    padding: 180px 0 56px;
}


/* =========================================
   CONTAINER
========================================= */

.checkout-header__container {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;
}


/* =========================================
   TITLE
========================================= */

.checkout-header__title {
    margin: 0;

    color: var(--brand-surface-cream, #F4EEE2);

    text-align: center;

    font-family: Fraunces;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 124%;
    letter-spacing: -0.56px;
}


/* =========================================
   PROGRESS
========================================= */

.checkout-progress {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;
}


/* =========================================
   STEP PILL
========================================= */

.checkout-progress__item {
    display: flex;
    padding: 10px 20px 10px 18px;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    border-radius: var(--radius-full, 999px);
    background: var(--brand-tint-cream-10,
            rgba(244, 238, 226, 0.10));

    color: var(--base-white, #FFF);

    font-family: "Satoshi";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}


/* =========================================
   ACTIVE
========================================= */

.checkout-progress__item--active {
    background: var(--brand-core-accent, #E8663B);
}


/* =========================================
   NUMBER
========================================= */

.checkout-progress__number {
    color: var(--base-white, #FFF);

    font-family: "Satoshi";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.68px;

    text-transform: uppercase;
}


/* =========================================
   LABEL
========================================= */

.checkout-progress__label {
    color: var(--base-white, #FFF);

    font-family: "Satoshi";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}


/* =========================================
   DOTTED LINE
========================================= */

.checkout-progress__line {
    width: 40px;
    height: 1px;

    display: flex;
    align-items: center;

    flex: 0 0 40px;
}

.checkout-progress__line svg {
    display: block;

    width: 40px;
    height: 1px;
}


/* =========================================
   HOVER
========================================= */

.checkout-progress__item:not(.checkout-progress__item--active) {
    transition: background 0.2s ease;
}

.checkout-progress__item:not(.checkout-progress__item--active):hover {
    background: rgba(244, 238, 226, 0.16);
}



.checkout-content {
    width: 100%;

    padding: 81px 0 112px;

    background: var(--brand-surface-paper,
            #FDFBF6);
}


.checkout-layout {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 88px;
    gap: 64px;
}


.checkout-form {
    width: calc(100% - 440px);

    display: flex;
    flex-direction: column;

    gap: 24px;
}


/* =========================================
   FORM ROW
========================================= */

.checkout-form__row {
    width: 100%;

    display: flex;

    gap: 24px;
}


/* =========================================
   FIELD
========================================= */

.checkout-field {
    min-width: 0;

    flex: 1;
    display: flex;
    padding: 12px 20px 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: var(--radius-s,
            8px);
    background: var(--brand-surface-cream,
            #F4EEE2);
    box-sizing: border-box;
}


/* FULL WIDTH FIELD */

.checkout-field--full {
    width: 100%;

    flex: none;
}


/* =========================================
   FIELD LABEL
========================================= */

.checkout-field__label {
    color: var(--brand-text-muted,
            #5C6E67);

    font-family: "Satoshi";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.68px;

    text-transform: uppercase;
}


/* =========================================
   INPUT
========================================= */

.checkout-field__input {
    width: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--brand-text-muted,
            #5C6E67);

    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.checkout-field__input::placeholder {
    color: var(--brand-text-muted,
            #5C6E67);

    opacity: 1;
}


/* =========================================
   COUNTRY SELECT
========================================= */

.checkout-field--select {
    position: relative;
}

.checkout-field__select-wrapper {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
}

.checkout-field__select {
    width: 100%;

    appearance: none;
    -webkit-appearance: none;

    padding: 0 24px 0 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--brand-text-muted,
            #5C6E67);

    font-family: "Satoshi";
    font-size: 17px;
    font-weight: 400;
    line-height: 160%;

    cursor: pointer;
}

.checkout-field__select-icon {
    position: absolute;

    top: 50%;
    right: 0;

    width: 16px;
    height: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    pointer-events: none;
}


/* =========================================
   TERMS
========================================= */

.checkout-terms {
    display: flex;

    margin-top: 8px;
}

.checkout-terms__checkbox {
    display: flex;

    min-height: 22px;

    align-items: flex-start;

    gap: 14px;

    cursor: pointer;
}

.checkout-terms__checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.checkout-terms__checkmark {
    position: relative;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border-radius: var(--radius-xs,
            4px);

    border: 1px solid var(--brand-tint-ink-16,
            rgba(21, 51, 42, 0.16));

    background: var(--base-white,
            #FFF);
}

.checkout-terms__checkbox input:checked+.checkout-terms__checkmark {
    border-color: var(--brand-core-accent,
            #E8663B);

    background: var(--brand-core-accent,
            #E8663B);
}

.checkout-terms__checkbox input:checked+.checkout-terms__checkmark::after {
    content: "";

    position: absolute;

    width: 3px;
    height: 6px;

    top: 6px;
    left: 8px;

    border: solid #FFFFFF;
    border-width: 0 1px 1px 0;

    transform: rotate(45deg);
}

.checkout-terms__text {
    color: var(--brand-text-body,
            #2E3A33);

    font-family: "Satoshi";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.checkout-terms__text a {
    color: inherit;

    text-decoration: underline;
    text-underline-offset: 2px;
}


/* =========================================
   CAPTCHA
========================================= */

.checkout-captcha {
    display: flex;
    align-items: flex-start;

    margin-top: 0px;
}

.checkout-captcha__image {
    display: block;

    max-width: 120px;
    height: auto;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.checkout-summary {
    width: 440px;

    flex: 0 0 440px;

    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 36px;

    box-sizing: border-box;
border-radius: var(--radius-l, 16px);
background: var(--brand-surface-cream, #F4EEE2);
}


/* =========================================
   SUMMARY TITLE
========================================= */

.checkout-summary__title {
    margin: 0;

    padding-bottom: 22px;
color: var(--brand-core-ink, #15332A);
font-family: "Fraunces";
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 132%; /* 23.76px */
letter-spacing: -0.09px;

    border-bottom: 1px solid #DFDCD3;
}


/* =========================================
   SUMMARY ITEMS
========================================= */

.checkout-summary__items {
    display: flex;
    flex-direction: column;
}

.checkout-summary__item {
    display: flex;
    flex-direction: column;

    gap: 4px;

    padding: 16px 0;

    border-bottom: 1px solid #DFDCD3;
}


/* ITEM HEADER */

.checkout-summary__item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}

.checkout-summary__item-name,
.checkout-summary__item-price {
color: var(--brand-core-ink, #15332A);
font-family: "Satoshi";
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 27.2px */
}

.checkout-summary__item-price {
    flex-shrink: 0;
}


/* META */

.checkout-summary__item-meta {
color: var(--brand-text-muted, #5C6E67);
font-family: "Satoshi";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 155%; /* 21.7px */
}


/* DISCOUNT */

.checkout-summary__item-price--discount {
    color: var(--brand-core-accent,
            #E8663B);
}

.checkout-summary__remove {
    padding: 0;

    border: 0;

    background: transparent;

    color: var(--brand-text-muted,
            #5C6E67);

    font: inherit;

    text-decoration: underline;

    cursor: pointer;
}


/* =========================================
   DISCOUNT CODE
========================================= */

.checkout-discount {
    width: 100%;
display: flex;
padding: 20px 0;
align-items: center;
gap: 12px;
align-self: stretch;

    border-bottom: 1px solid #DFDCD3;
}

.checkout-discount__field {
    min-width: 0;

    flex: 1;

display: flex;
padding: 12px 20px 14px 20px;
flex-direction: column;
align-items: flex-start;
gap: 4px;
align-self: stretch;
border-radius: var(--radius-s, 8px);
background: var(--brand-surface-paper, #FDFBF6);}

.checkout-discount__label {
  color: var(--brand-text-muted, #5C6E67);
font-family: "Satoshi";
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 140%; /* 16.8px */
letter-spacing: 1.68px;
text-transform: uppercase;
}

.checkout-discount__input {
    width: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;
color: var(--brand-text-muted, #5C6E67);
font-family: "Satoshi";
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 27.2px */
}

.checkout-discount__input::placeholder {
    color: var(--brand-text-muted,
            #5C6E67);
}

.checkout-discount__button {
    border: 0;
display: flex;
padding: 18px 24px 18px 28px;
align-items: center;
gap: 10px;
align-self: stretch;
border-radius: var(--radius-s, 8px);
border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
background: var(--base-white, #FFF);
color: var(--brand-core-ink, #15332A);
font-family: "Satoshi";
font-size: 17px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 23.8px */

    cursor: pointer;
}


/* =========================================
   TOTAL
========================================= */

.checkout-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid #DFDCD3;

    color: var(--brand-core-ink,
            #15332A);

    font-family: "Satoshi";
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
}

.checkout-summary__total strong {
color: var(--brand-core-accent, #E8663B);
font-family: "Fraunces";
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 132%; /* 23.76px */
letter-spacing: -0.09px;
}


/* =========================================
   CONTINUE BUTTON
========================================= */

.checkout-summary__checkout {
    width: 100%;

    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 20px;

    padding: 12px 16px;

    border: 1px solid var(--brand-core-accent,
            #E8663B);

    border-radius: var(--radius-s,
            8px);

    background: var(--brand-core-accent,
            #E8663B);

    color: #FFFFFF;

    font-family: "Satoshi";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


/* =========================================
   BUTTON HOVER
========================================= */

.checkout-summary__checkout:hover {
    background: var(--brand-core-ink,
            #15332A);

    border-color: var(--brand-core-ink,
            #15332A);

    color: #FFFFFF;
}


/* =========================================
   ARROW
========================================= */

.checkout-summary__arrow {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}

.checkout-summary__arrow svg {
    width: 18px;
    height: 18px;

    display: block;
}


/* HOVER ARROW CIRCLE */

.checkout-summary__checkout:hover .checkout-summary__arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(--brand-core-accent,
            #E8663B);

    transform: translateX(2px);
}


/* =========================================
   PAYMENT
========================================= */

.checkout-summary__payment {
    display: flex;
    align-items: center;

    margin-top: 16px;
}

.checkout-summary__payment-image {
    display: block;
width: 256px;
height: 46px;
}

.checkout-field:focus-within {
    border-radius: var(--radius-s, 8px);

    border: 1.5px solid var(
        --brand-core-accent,
        #E8663B
    );

    background: var(
        --brand-surface-cream,
        #F4EEE2
    );

    box-sizing: border-box;
}


/*//////////////////////////////////// Payment Success */



.checkout-success {
    width: 100%;
    padding: 220px 0 140px;
background: var(--brand-surface-shell, #F6F2EA);
}


.checkout-success__container {
    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================
   SUCCESS CARD
========================================= */

.checkout-success__card {
    width: 100%;
    max-width: 760px;

    display: flex;
    flex-direction: column;

    align-items: center;

    padding: 56px;

border-radius: var(--radius-l, 16px);
border: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
background: var(--base-white, #FFF);
    box-sizing: border-box;
}


/* =========================================
   SUCCESS ICON
========================================= */

.checkout-success__icon {
    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 72px;

    margin-bottom: 24px;
}

.checkout-success__icon svg {
    width: 72px;
    height: 72px;

    display: block;
}


/* =========================================
   TITLE
========================================= */

.checkout-success__title {
    margin: 0 0 24px;

    color: var(
        --brand-core-ink,
        #15332A
    );

    text-align: center;

    font-family: Fraunces;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 128%;
    letter-spacing: -0.4px;
}


/* =========================================
   DESCRIPTION
========================================= */

.checkout-success__description {
    max-width: 650px;

    margin: 0 0 24px;

    color: var(
        --brand-text-body,
        #2E3A33
    );

    text-align: center;

    font-family: Satoshi;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}


/* =========================================
   ORDER DETAILS
========================================= */

.checkout-success__details {
    width: 100%;

    display: flex;
    flex-direction: column;
}


/* =========================================
   DETAIL ROW
========================================= */

.checkout-success__row {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 16px 0;
    border-top: 1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));

    box-sizing: border-box;
}

.checkout-success__row:last-child {
    border-bottom:1px solid var(--brand-tint-ink-16, rgba(21, 51, 42, 0.16));
}


/* =========================================
   LABEL
========================================= */

.checkout-success__label {
    color: var(
        --brand-text-body,
        #2E3A33
    );

    font-family: Satoshi;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}


/* =========================================
   VALUE
========================================= */

.checkout-success__value {
    color: var(
        --brand-core-ink,
        #15332A
    );

    text-align: right;

    font-family: Satoshi;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}


/* =========================================
   ACTIONS
========================================= */

.checkout-success__actions {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding-top: 40px;
}


/* =========================================
   BUTTON
========================================= */

.checkout-success__button {
    min-height: 56px;
    gap: 10px;
display: flex;
padding: 18px 24px 18px 28px;
align-items: center;
gap: 10px;
    font-family: "Satoshi";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
border-radius: var(--radius-s, 8px);
background: var(--brand-core-accent, #E8663B);
    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


/* =========================================
   PRIMARY
========================================= */

.checkout-success__button--primary {
    min-width: fit-content;

    border: 1px solid var(
        --brand-core-accent,
        #E8663B
    );

    background: var(
        --brand-core-accent,
        #E8663B
    );

    color: #FFFFFF;
}


/* =========================================
   SECONDARY
========================================= */

.checkout-success__button--secondary {
    min-width: fit-content;

    border: 1px solid #DFDCD3;

    background: #FFFFFF;

    color: var(
        --brand-core-ink,
        #15332A
    );
}


/* =========================================
   BUTTON ARROW
========================================= */

.checkout-success__button-arrow {
    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    transition: transform 0.2s ease;
}

.checkout-success__button-arrow svg {
    width: 18px;
    height: 18px;

    display: block;
}


/* =========================================
   BUTTON HOVER
========================================= */

.checkout-success__button:hover
.checkout-success__button-arrow {
    transform: translateX(3px);
}

/* =========================================
   BUTTON ARROW
========================================= */

.checkout-success__button-arrow {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 
        width 0.2s ease,
        height 0.2s ease,
        flex-basis 0.2s ease,
        transform 0.2s ease;
}

.checkout-success__button-arrow svg {
    width: 18px;
    height: 18px;

    display: block;
}


/* =========================================
   PRIMARY BUTTON HOVER
========================================= */

.checkout-success__button--primary:hover {
    background: var(--brand-core-ink, #15332A);
    border-color: var(--brand-core-ink, #15332A);
    color: #FFFFFF;
}


/* =========================================
   ARROW HOVER
========================================= */

.checkout-success__button:hover
.checkout-success__button-arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 50%;

    background: var(
        --brand-core-accent,
        #E8663B
    );

    transform: translateX(2px);
}


/* =========================================
   SECONDARY BUTTON HOVER
========================================= */

.checkout-success__button--secondary:hover {
  background: var(--brand-core-ink, #15332A);
    border-color: var(--brand-core-ink, #15332A);
    color: #FFFFFF;

}