/* ===== LOOKUP CONTENT ===== */
.lookup-content {
    padding: 24px 16px;
    padding-bottom: 100px;
}

/* ===== LOOKUP FORM ===== */
.lookup-form-container {
    margin-bottom: 24px;
}

.lookup-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    text-align: center;
}

.lookup-form {
    display: flex;
    gap: 12px;
}

.lookup-form input {
    flex: 1;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
}

.lookup-form input:focus {
    border-color: #1a1a1a;
}

.lookup-form .btn {
    padding: 14px 24px;
    border-radius: 12px;
    white-space: nowrap;
}

.lookup-form-container .error-message {
    color: #c62828;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

/* ===== STATUS BANNER ===== */
.status-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.status-banner.pending {
    background: #fff3e0;
}

.status-banner.confirmed {
    background: #e3f2fd;
}

.status-banner.ready {
    background: #e8f5e9;
}

.status-banner.picked_up {
    background: #f5f5f5;
}

.status-banner.cancelled {
    background: #ffebee;
}

.status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.status-banner.pending .status-icon {
    background: #ff9800;
    color: #fff;
}

.status-banner.confirmed .status-icon {
    background: #2196f3;
    color: #fff;
}

.status-banner.ready .status-icon {
    background: #4caf50;
    color: #fff;
}

.status-banner.picked_up .status-icon {
    background: #9e9e9e;
    color: #fff;
}

.status-banner.cancelled .status-icon {
    background: #f44336;
    color: #fff;
}

.status-text {
    display: flex;
    flex-direction: column;
}

.status-label {
    font-size: 12px;
    color: #666;
}

.status-value {
    font-size: 18px;
    font-weight: 600;
}

/* ===== ORDER INFO CARD ===== */
.order-info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.order-info-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.order-info-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.order-info-card .info-row:last-of-type {
    border-bottom: none;
}

.order-info-card .info-label {
    color: #666;
    font-size: 14px;
}

.order-info-card .info-value {
    font-weight: 500;
    font-size: 14px;
}

/* ===== ORDER ITEMS ===== */
.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item-name {
    flex: 1;
}

.result-item-qty {
    color: #666;
    margin: 0 12px;
}

.result-item-price {
    font-weight: 500;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid #eee;
    font-size: 16px;
    font-weight: 600;
}

/* ===== PAYMENT REMINDER ===== */
.payment-reminder {
    background: #fff8e1;
    border-color: #ffecb3;
    text-align: center;
}

.payment-reminder p {
    font-size: 14px;
    margin-bottom: 8px;
}

.payment-reminder .vipps-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff5722;
    margin: 12px 0;
}

.payment-reminder .vipps-note {
    font-size: 13px;
    color: #666;
}