/* ═══════════════════════════════════════════════
 * Sirius Tours Booking — Custom Cart Page
 * ═══════════════════════════════════════════════ */

.stb-cart-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    font-family: var(--font-main, "Outfit", -apple-system, sans-serif);
}

.stb-cart-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b2e4a;
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: 0.01em;
}

/* ── Booking Card ─────────────────────────────── */
.stb-cart-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.stb-cart-image {
    position: relative;
    background: #f3f4f6;
}

.stb-cart-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.stb-cart-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

/* ── Details ──────────────────────────────────── */
.stb-cart-details {
    padding: 36px 40px 32px;
    display: flex;
    flex-direction: column;
}

.stb-cart-tour-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1b2e4a;
    margin: 0 0 24px;
    line-height: 1.3;
}

.stb-cart-tour-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.stb-cart-tour-name a:hover {
    color: #C9A962;
}

/* ── Meta Grid (Date, Type, Guests, Price) ────── */
.stb-cart-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stb-cart-meta-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
}

.stb-cart-meta-icon {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
}

.stb-cart-meta-icon svg {
    width: 22px;
    height: 22px;
}

.stb-cart-meta-label {
    grid-column: 2;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.stb-cart-meta-value {
    grid-column: 2;
    font-size: 1rem;
    color: #1b2e4a;
    font-weight: 600;
}

/* ── Total ─────────────────────────────────────── */
.stb-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 24px 0;
    margin-top: auto;
}

.stb-cart-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stb-cart-total-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1b2e4a;
    letter-spacing: -0.01em;
}

/* ── Actions ──────────────────────────────────── */
.stb-cart-actions {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.stb-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.stb-cart-btn-primary {
    background: #C9A962;
    color: #ffffff;
    flex: 1;
}

.stb-cart-btn-primary:hover {
    background: #b8983f;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201, 169, 98, 0.3);
}

.stb-cart-btn-primary svg {
    transition: transform 0.2s ease;
}

.stb-cart-btn-primary:hover svg {
    transform: translateX(3px);
}

.stb-cart-btn-ghost {
    background: transparent;
    color: #6b7280;
    border-color: #e5e7eb;
}

.stb-cart-btn-ghost:hover {
    color: #dc2626;
    border-color: #dc2626;
    background: #fef2f2;
}

/* ═══════════════════════════════════════════════
 * Empty State
 * ═══════════════════════════════════════════════ */

.stb-cart-empty {
    text-align: center;
    padding: 80px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.stb-cart-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    color: #C9A962;
    background: #fdf8ed;
    border-radius: 50%;
}

.stb-cart-empty-icon svg {
    width: 48px;
    height: 48px;
}

.stb-cart-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b2e4a;
    margin: 0 0 12px;
}

.stb-cart-empty-text {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stb-cart-empty .stb-cart-btn {
    min-width: 180px;
}

/* ═══════════════════════════════════════════════
 * Responsive
 * ═══════════════════════════════════════════════ */

@media (max-width: 860px) {
    .stb-cart-wrap {
        padding: 40px 16px 60px;
    }

    .stb-cart-title {
        font-size: 1.7rem;
        margin-bottom: 28px;
    }

    .stb-cart-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stb-cart-image img {
        min-height: 240px;
        max-height: 300px;
    }

    .stb-cart-details {
        padding: 28px 24px 24px;
    }

    .stb-cart-tour-name {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .stb-cart-meta-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stb-cart-total-value {
        font-size: 1.6rem;
    }

    .stb-cart-actions {
        flex-direction: column-reverse;
    }

    .stb-cart-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .stb-cart-empty {
        padding: 60px 20px;
    }

    .stb-cart-empty-icon {
        width: 80px;
        height: 80px;
    }

    .stb-cart-empty-title {
        font-size: 1.25rem;
    }
}
