.checkout-stepper-row { display: flex; justify-content: center; align-items: center; margin-bottom: 4rem; }
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4; transition: 0.3s; }
.step.current { opacity: 1; }
.step.current .step-num { background: var(--primary); color: white; border-color: var(--primary); }
.step-num { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #ccc; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; background: white; }
.step-line { width: 60px; height: 2px; background: #eee; margin: 0 20px; margin-bottom: 25px; }

.cart-grid, .checkout-main-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 4rem; align-items: start; }
.cart-items-column { border-right: 1px solid var(--border); padding-right: 2rem; }

.cart-summary-box { background: var(--bg-light); padding: 2.5rem; border-radius: var(--radius); border: 1px solid var(--border); position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 0.95rem; }
.summary-row.total { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px dashed #ccc; font-size: 1.4rem; font-weight: 800; font-family: var(--font-heading); }

/* Pokladna */
.form-title { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.input-group { display: flex; flex-direction: column; gap: 5px; }
.input-group.full-width { margin-bottom: 15px; }
.input-group label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--secondary); }
.payment-box { margin-top: 30px; background: var(--bg-light); padding: 20px; border-radius: 8px; border: 1px solid #eee; }
.radio-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 500; }
.radio-label input { accent-color: var(--primary); transform: scale(1.2); }
.gdpr-box { margin: 25px 0; display: flex !important; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #222 !important; }
.gdpr-box label { color: #222 !important; cursor: pointer; line-height: 1.5; }
.gdpr-box a { color: #222 !important; text-decoration: underline; font-weight: 600; }
.gdpr-box input { margin-top: 4px; transform: scale(1.2); accent-color: var(--primary); flex-shrink: 0; }
.btn-large { padding: 18px; font-size: 1rem; letter-spacing: 1px; font-weight: 700; background: var(--primary); color: white; border-radius: 4px; text-transform: uppercase; width: 100%; border: none; cursor: pointer; }
.btn-large:hover { background: #333; }

/* Úspěch & Ticket */
.order-timeline { display: flex; justify-content: center; align-items: center; margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.timeline-step { text-align: center; position: relative; z-index: 2; }
.dot { width: 50px; height: 50px; background: #f4f4f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px auto; color: #ccc; transition: 0.3s; font-size: 1.2rem; }
.timeline-step.active .dot { background: var(--primary); color: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.timeline-line { flex-grow: 1; height: 2px; background: #f4f4f4; margin: -25px 10px 0 10px; }

.payment-ticket { display: flex; background: white; border-radius: 8px; box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: 4rem; border: 1px solid #eee; }
.ticket-left { width: 40%; background: #2c3e50; color: white; padding: 3rem; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.qr-header h3 { color: white; font-size: 1.2rem; margin-bottom: 0.5rem; }
.qr-header p { color: #bdc3c7; font-size: 0.85rem; margin-bottom: 2rem; }
.qr-placeholder { background: white; padding: 15px; border-radius: 8px; display: inline-block; margin: 0 auto 2rem auto; }
.qr-placeholder img { width: 180px; height: 180px; display: block; }
.amount { font-size: 2rem; font-weight: 700; color: #fff; margin-top: 5px; }
.ticket-right { width: 60%; padding: 3rem; }
.ticket-right h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.detail-row { margin-bottom: 1.5rem; border-bottom: 1px dashed #eee; padding-bottom: 10px; }
.label { display: block; font-size: 0.75rem; text-transform: uppercase; color: #999; letter-spacing: 1px; margin-bottom: 5px; }
.value { font-size: 1.3rem; font-family: var(--font-heading); color: var(--primary); font-weight: 600; }
.highlight { color: var(--primary); }
.btn-copy { background: none; border: 1px solid #eee; color: #999; padding: 6px 12px; border-radius: 4px; cursor: pointer; transition: 0.2s; }
.btn-copy:hover { border-color: var(--primary); color: var(--primary); }
.info-alert { background: #f9f9f9; padding: 1rem; font-size: 0.85rem; color: #666; border-left: 3px solid var(--primary); display: flex; gap: 12px; align-items: center; margin-top: 2rem; }
.ticket-rip { width: 0; border-left: 2px dashed #ccc; position: relative; }
.ticket-rip::before, .ticket-rip::after { content: ''; position: absolute; left: -10px; width: 20px; height: 20px; background: var(--bg-body); border-radius: 50%; }
.ticket-rip::before { top: -10px; } .ticket-rip::after { bottom: -10px; }
.animate-up { animation: fadeIn 0.8s ease 0.2s forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
    .cart-grid, .checkout-main-grid, .payment-ticket { grid-template-columns: 1fr !important; gap: 3rem; display: block; }
    .cart-items-column { border-right: none; padding-right: 0; }
    .payment-ticket { display: block; } .ticket-left, .ticket-right { width: 100%; }
    .ticket-rip { border-left: none; border-top: 2px dashed #ccc; height: 0; width: 100%; }
}