    .select2.select2-container {
  width: 100% !important;
}

.select2.select2-container .select2-selection {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 34px;
  margin-bottom: 15px;
  outline: none !important;
  transition: all .15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
  color: #333;
  line-height: 32px;
  padding-right: 33px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
  background: #f8f8f8;
  border-left: 0px solid #ccc;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  height: 32px;
  width: 33px;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background: #f8f8f8;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
  border: 1px solid #34495e;
}

.select2.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 34px;
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  line-height: 29px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.select2-container .select2-dropdown {
  background: transparent;
  border: none;
  margin-top: -5px;
}

.select2-container .select2-dropdown .select2-search {
  padding: 0;
}

.select2-container .select2-dropdown .select2-search input {
  outline: none !important;
  border: 1px solid #34495e !important;
  border-bottom: none !important;
  padding: 4px 6px !important;
}

.select2-container .select2-dropdown .select2-results {
  padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #34495e;
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #3498db;
}

        /* Modal Styles */
        .mix-modal {
            /*position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;           
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            visibility: visible;*/
             background: #fdf9f5;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            width: 95%;
            max-width: 1200px;
            /*max-height: 90vh;*/
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px rgb(211 149 149 / 30%);
        }

        /* Progress Indicator */
        .progress-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
            /*background: linear-gradient(135deg, #667eea, #764ba2);*/
            background: #e7c3b4;
            /*border-radius: 25px 25px 0 0;*/
        }

        .progress-step {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .progress-step.active {
            color: white;
        }

        .progress-step.completed {
            color: #9b6853;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .progress-step.active .step-number {
            background: white;
            color: #9b6853;
        }

        .progress-step.completed .step-number {
            background: #9b6853;
            color: white;
        }

        .progress-connector {
            width: 60px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 20px;
        }

        .progress-step.completed + .progress-connector {
            background: #9b6853;
        }

        /* Step Content */
        .step-content {
            padding: 40px;
            display: none;
        }

        .step-content.active {
            display: block;
        }

        .step-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #9b6853, #c19684);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #9b6853;
        }

        /* Category Selection */
        .category-selection {
            max-width: 500px;
            margin: 0 auto;
        }

        .select2-container {
            width: 100% !important;
        }

        .select2-selection {
            height: 50px !important;
            border: 2px solid #e0e0e0 !important;
            border-radius: 15px !important;
            font-size: 16px !important;
        }

        .select2-selection__rendered {
            line-height: 46px !important;
            padding-left: 15px !important;
        }

        .select2-selection__arrow {
            height: 28px !important;
            right: 15px !important;
        }

        /* Format Cards */
        .format-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .format-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 25px 50px rgb(211 149 149 / 30%);
            border: 3px solid transparent;
        }

        .format-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgb(211 149 149 / 30%);
        }

        .format-card.selected {
            border-color: #9b6853;
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }

        .format-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .format-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }

        .format-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Size Grid */
        .size-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .size-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #f0f0f0;
        }

        .size-card:hover {
            border-color: #9b6853;
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgb(211 149 149 / 30%);
        }

        .size-card.selected {
            border-color: #9b6853;
            background: linear-gradient(135deg, #9b6853, #c19684);
            color: white;
        }

        .size-card .size-label {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .size-card .size-price {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Mix Form */
        .mix-form {
            max-width: 800px;
            margin: 0 auto;
        }

        .fragrance-slots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .fragrance-slot {
            background: white;
            border-radius: 20px;
            padding: 25px;
              box-shadow: 0 25px 50px rgb(211 149 149 / 30%);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .fragrance-slot.filled {
            border-color: #4CAF50;
        }

        .slot-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .slot-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #9b6853, #c19684);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }

        .slot-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
        }

        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        /* Ratio Sliders */
        .ratio-controls {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .ratio-control {
            text-align: center;
        }

        .form-range {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #f0f0f0;
            outline: none;
            appearance: none;
            margin-bottom: 10px;
        }

        .form-range::-webkit-slider-thumb {
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #9b6853, #c19684);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .form-range:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .ratio-value {
            font-weight: bold;
            font-size: 1.2rem;
            color: #9b6853;
        }

        /* Blend Summary */
        .blend-summary {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
        }

        .total-percentage {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #9b6853, #c19684);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .blend-name-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1.1rem;
            text-align: center;
            margin: 20px 0;
        }

        .blend-name-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        /* Navigation Buttons */
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 40px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 0 0 25px 25px;
        }

        .nav-btn {
            padding: 12px 30px;
            border: 2px solid #9b6853;
            border-radius: 25px;
            background: transparent;
            color: #9b6853;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-btn:hover:not(:disabled) {
            background: #9b6853;
            color: white;
            transform: translateY(-2px);
        }

        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .nav-btn.primary {
            background: linear-gradient(135deg, #9b6853, #c19684);
            color: white;
            border-color: transparent;
        }

        .step-info {
            font-weight: 600;
            color: #9b6853;
        }

        .selection .select2-selection--single, .select2-selection--multiple{
                border: solid 1px #c19684 !important;
                background-color: #fff !important;
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 40px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #4CAF50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .success-message h2 {
            color: #4CAF50;
            margin-bottom: 15px;
        }

        /* custom 2507 Css */

        .ai-assistant-container { 
            margin: 0px auto !important;  
        }

        .header {
            position: relative;
        }

        .elementor-2174 .elementor-element.elementor-element-edc0d7f{
            margin-top: 0;
        }

        .ai-assistant-buttons {
            flex-direction: column;
        }

        /* custom 2507 Css */

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .modal-content {
                width: 98%;
                margin: 10px;
            }

            .step-content {
                padding: 20px;
            }

            .step-title {
                font-size: 2rem;
            }

            .format-grid {
                grid-template-columns: 1fr;
            }

            .fragrance-slots {
                grid-template-columns: 1fr;
            }

            .ratio-controls {
                grid-template-columns: 1fr;
            }

            .nav-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }

            .nav-btn {
                width: 100%;
                justify-content: center;
            }

            .progress-step span {
                display: none;
            }

            .progress-connector {
                width: 30px;
                margin: 0 10px;
            }
        }

div#customer_details .col-1 {
    width: 100% !important;
}

div#customer_details .col-2 {
    width: 100% !important;
}