* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.wizard-container {
    flex: 2;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-container {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.wizard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.wizard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.wizard-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

.progress-step {
    /* display: flex; */
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step.active::after {
    background: #667eea;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-circle {
    background: #667eea;
    color: white;
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: white;
}

.step-label {
    font-weight: 500;
    color: #6c757d;
}

.progress-step.active .step-label {
    color: #667eea;
}

.wizard-content {
    padding: 40px;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.required {
    color: #dc3545;
}

.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.error.show {
    display: block;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.summary-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-section h3 {
    color: #667eea;
    margin-bottom: 15px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 5px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item .summary-value {
    flex: 1;
    margin-right: 15px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: #495057;
}

.summary-value {
    color: #6c757d;
}

.summary-price {
    color: #28a745;
    font-weight: 600;
    font-size: 0.95rem;
}

.summary-total {
    background-color: #f8f9fa;
    margin-top: 10px;
    padding: 12px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.summary-total .summary-label {
    font-weight: 600;
    color: #343a40;
}

.summary-total .summary-price {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

.grand-total {
    background-color: #e8f5e8;
    border: 2px solid #28a745;
    margin-top: 15px;
}

.grand-total .summary-label {
    font-weight: 700;
    color: #155724;
    font-size: 1.1rem;
}

.grand-total .summary-price {
    color: #155724;
    font-weight: 700;
    font-size: 1.3rem;
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    flex: 1;
}

/* Day Checkbox Skins */
.days-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.day-checkbox {
    position: relative;
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0 !important;
}

.day-label {
    position: relative;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 0 !important;
    background: #f8f9fa;
    border: 2px solid transparent;
}

/* Tuesday Skin - Blue Theme */
.day-tuesday .day-checkbox {
    border-color: #007bff;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.day-tuesday .day-checkbox:checked {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #0056b3;
}

.day-tuesday .day-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.day-tuesday .day-label {
    border-color: #007bff;
    color: #007bff;
}

.day-tuesday .day-checkbox:checked + .day-label {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-color: #0056b3;
}

/* Wednesday Skin - Green Theme */
.day-wednesday .day-checkbox {
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #c3e6cb 100%);
}

.day-wednesday .day-checkbox:checked {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-color: #1e7e34;
}

.day-wednesday .day-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.day-wednesday .day-label {
    border-color: #28a745;
    color: #28a745;
}

.day-wednesday .day-checkbox:checked + .day-label {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    border-color: #1e7e34;
}

/* Thursday Skin - Orange Theme */
.day-thursday .day-checkbox {
    border-color: #fd7e14;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.day-thursday .day-checkbox:checked {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
    border-color: #e8590c;
}

.day-thursday .day-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.day-thursday .day-label {
    border-color: #fd7e14;
    color: #fd7e14;
}

.day-thursday .day-checkbox:checked + .day-label {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
    color: white;
    border-color: #e8590c;
}

/* Hover effects */
.day-checkbox:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.day-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .days-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .checkbox-group {
        justify-content: center;
    }
    
    .main-container {
        flex-direction: column;
    }
    
    .cart-container {
        position: relative;
        top: auto;
    }
}

/* Cart Styles */
.cart-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.cart-content {
    padding: 20px;
}

.cart-items {
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    color: #6c757d;
    padding: 40px 20px;
}

.empty-cart p {
    margin: 0 0 5px 0;
    font-weight: 500;
}

.empty-cart small {
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    font-weight: 500;
    color: #495057;
    flex: 1;
}

.cart-item-price {
    font-weight: 600;
    color: #667eea;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    margin-left: 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.cart-item-remove:hover {
    background-color: #f8d7da;
}

.cart-summary {
    /* border-top: 2px solid #e9ecef; */
    padding-top: 15px;
}


.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.total-row.final-total {
    border-top: 1px solid #e9ecef;
    padding-top: 8px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.total-label {
    color: #495057;
}

.total-amount {
    color: #667eea;
    font-weight: 600;
}

.final-total .total-amount {
    color: #28a745;
    font-size: 1.2rem;
}
