/*        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }*/
        
/*        body {
            background-color: #f5f7fa;
            color: #333;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }*/
        
/*        .properties-field {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-top: 20px;
        }*/
        
/*        h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ecf0f1;
            font-weight: 600;
        }*/
        
        .casement-type-selection-class {
            margin-bottom: 25px;
        }
        
        .select-casement-type {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding: 15px 10px 20px;
            border-radius: 8px;
            border: 1px solid #eaeaea;
            scrollbar-width: thin;
            scrollbar-color: #3498db #ecf0f1;
            max-width: 640px;
        }
        
        .select-casement-type::-webkit-scrollbar {
            height: 8px;
        }
        
        .select-casement-type::-webkit-scrollbar-track {
            background: #ecf0f1;
            border-radius: 4px;
        }
        
        .select-casement-type::-webkit-scrollbar-thumb {
            background-color: #3498db;
            border-radius: 4px;
        }
        
        .image-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
            padding: 8px;
            min-width: 160px;
            flex-shrink: 0;
            border: 2px solid transparent; /* Base transparent border */
        }
        
        .image-option:hover {
            border-color: #ff6600;
            transform: translateY(-3px);
        }
        
        .image-option.selected {
            border-color: #ff6600; /* Orange border for selected */
            box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3); /* Orange-tinted shadow */
        }
        
        .image-option img {
            height: 110px;
            width: auto;
            object-fit: contain;
            border-radius: 4px;
            margin-bottom: 8px;
            pointer-events: none;
        }
        
        .option-label {
            font-size: 14px;
            color: #2c3e50;
            font-weight: 500;
            text-align: center;
            pointer-events: none;
        }
        
/*        ul {
            list-style-type: none;
            margin-top: 20px;
        }
        
        li {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }*/
        
        label {
            width: 180px;
            font-weight: 500;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            background-color: white;
            color: #333;
            flex: 1;
            max-width: 300px;
            transition: border-color 0.3s;
        }
        
        select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
/*        .calculateCost {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-top: 10px;
            width: 100%;
        }
        
        .startButton {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .startButton:hover {
            background-color: #2980b9;
        }
        
        #cost {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            flex: 1;
            background-color: #f9f9f9;
            color: #2c3e50;
            font-weight: 500;
        }
        
        #add-to-cart, .view-cart {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        #add-to-cart {
            background-color: #2ecc71;
            color: white;
            margin-right: 15px;
        }
        
        #add-to-cart:hover {
            background-color: #27ae60;
        }
        
        .view-cart {
            background-color: #f39c12;
        }
        
        .view-cart a {
            color: white;
            text-decoration: none;
            display: block;
        }
        
        .view-cart:hover {
            background-color: #d68910;
        }
        
        .preview-section {
            margin-top: 25px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px dashed #ccc;
        }
        
        .preview-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .preview-container {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .selected-image-preview {
            height: 130px;
            width: auto;
            object-fit: contain;
            border-radius: 6px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
            background-color: white;
            padding: 5px;
        }
        
        .selected-details {
            flex: 1;
            min-width: 250px;
        }
        
        .detail-item {
            margin-bottom: 8px;
            font-size: 15px;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            display: inline-block;
            width: 140px;
        }*/
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
/*            .properties-field {
                padding: 15px;
            }
            
            li {
                flex-direction: column;
                align-items: flex-start;
            }
            
            label {
                width: 100%;
                margin-bottom: 5px;
            }
            
            select {
                max-width: 100%;
                width: 100%;
            }
            
            .calculateCost {
                flex-direction: column;
                align-items: flex-start;
            }
            
            #cost {
                width: 100%;
            }*/
            
            .select-casement-type {
                gap: 10px;
                padding: 10px 5px 15px;
            }
            
            .image-option {
                min-width: 140px;
            }
            
/*            .preview-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .selected-image-preview {
                align-self: center;
            }*/
        }
        
        @media (max-width: 480px) {
            .image-option {
                min-width: 120px;
            }
            
            .image-option img {
                height: 90px;
            }
        }
