:root {
    --black: #222221;
    --accent: #EE8787;
    --accent-soft: #FDF0F0;
    --accent-dark: #D94F4F;
    --grey-text: #898683;
    --grey-light: #F5F4F1;
    --grey-border: #EDECE7;
    --warm-bg: #FBFAF9;
    --white: #ffffff;
}

a { text-decoration: none; }

/* ---- Back Button ---- */
.back-button-container {
    display: block;
    margin-top: 40px;
    margin-bottom: 56px;
    margin-left: 80px;
    width: fit-content;
}

.back-button {
    background: var(--warm-bg);
    border: 1px solid #F0EFEB;
    border-radius: 300px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover { background: #F0EFEB; }

.back-button img {
    width: 20px;
    height: 20px;
}

/* ---- Page Layout ---- */
.order-options {
    margin-left: 80px;
    margin-right: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.titles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titles h1 {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    margin: 0;
    letter-spacing: -1.5px;
    line-height: 52px;
}

.titles p {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--grey-text);
    margin: 0;
    letter-spacing: -0.3px;
}

/* ---- Cards ---- */
.cards-container {
    display: flex;
    gap: 20px;
}

.card-link { flex: 1; }

.card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px;
    background: var(--warm-bg);
    border-radius: 16px;
    border: 1px solid var(--grey-border);
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(34, 34, 33, 0.07);
}

.card-deluxe {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.card-deluxe:hover {
    border-color: var(--accent-dark);
    box-shadow: 0 12px 32px rgba(238, 135, 135, 0.15);
}

/* Card Top Row */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.card-number {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--grey-text);
    letter-spacing: 0.5px;
}

.card-deluxe .card-number {
    color: var(--accent-dark);
}

.card-badge {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-dark);
    background: white;
    border: 1px solid var(--accent);
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Card Body */
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.card-body h2 {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 26px;
}

.card-body p {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-text);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 24px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--grey-border);
}

.card-deluxe .card-footer {
    border-top-color: rgba(238, 135, 135, 0.3);
}

.info-text {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--grey-text);
    letter-spacing: -0.2px;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.arrow-circle img {
    width: 16px;
    height: 16px;
}

.card:hover .arrow-circle {
    background: var(--black);
}

.card:hover .arrow-circle img {
    filter: invert(1);
}

.card-deluxe:hover .arrow-circle {
    background: var(--accent-dark);
}

/* ---- Tablet ---- */
@media (min-width: 744px) and (max-width: 1279px) {
    .back-button-container {
        margin-left: 64px;
        margin-top: 32px;
        margin-bottom: 48px;
    }

    .order-options {
        margin-left: 64px;
        margin-right: 64px;
        gap: 48px;
        max-width: 82%;
    }

    .titles h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .cards-container {
        flex-direction: column;
        gap: 16px;
    }

    .card-top { margin-bottom: 28px; }
    .card-body { margin-bottom: 28px; }
}

/* ---- Mobile ---- */
@media (min-width: 320px) and (max-width: 743px) {
    .back-button-container {
        margin-left: 20px;
        margin-top: 24px;
        margin-bottom: 36px;
    }

    .order-options {
        margin-left: 20px;
        margin-right: 20px;
        gap: 40px;
        margin-bottom: 40px;
    }

    .titles h1 {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -0.8px;
    }

    .titles p { font-size: 16px; }

    .cards-container {
        flex-direction: column;
        gap: 14px;
    }

    .card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .card-top { margin-bottom: 24px; }

    .card-body {
        margin-bottom: 24px;
        gap: 10px;
    }

    .card-body h2 { font-size: 18px; }
    .card-body p  { font-size: 15px; }

    .info-text { font-size: 12px; }
}