        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f6f8fc;
            color: #212529;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: transparent;
        }

        .container {
            max-width: 1340px;
            margin: 60px auto;
        }

        .box-content {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            margin-bottom: 20px;
            padding: 32px 0px 12px 0px;
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .settings-boxes-row.payment-boxes {
            margin: 16px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 1px solid #E1E8EE;
        }

        .section-title h1, .section-title h3 {
            font-size: 21px;
            font-weight: 500;
            color: #2a3540fc;
            margin-bottom: 10px;
        }

        .section-title p {
            font-size: 13px;
            color: #5b6b7e;
            max-width: 860px;
            margin: 16px auto 46px;
            line-height: 1.5;
        }

        .shipping-steps {
            display: flex;
            gap: 20px;
            list-style: none;
            margin-bottom: 20px;
            padding: 0;
        }

        .shipping-steps li {
            flex: 1;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 25px 0px 16px 0px;
            position: relative;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .shipping-steps li.is-completed {
            border-color: #2ecc71;
            box-shadow: 0 0 8px rgba(46, 204, 113, 0.15);
        }

        .step-check {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #2ecc71;
            font-size: 20px;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .shipping-steps li.is-completed .step-check {
            opacity: 1;
            transform: scale(1);
        }

        .shipping-header {
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 20px;
            color: #213446;
            border-bottom: 1px solid #E1E8EE;
            padding-bottom: 16px;
        }

        a#reset-filters-btn {
            display: none !important;
        }

        .shipping-header span {
            display: block;
            font-size: 12px;
            color: #9ba3af;
            font-weight: 400;
            margin-top: 5px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .custom-select {
            position: relative;
            width: 100%;
        }

        .select-selected {
            background-color: #fff;
            border: 1px solid #ced4da8f;
            padding: 10px 15px;
            border-radius: 4px;
            text-align: left;
            font-size: 13px;
            color: #495057;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
        }

        .select-selected.disabled {
            background-color: #f8f9fa;
            color: #adb5bd;
            cursor: not-allowed;
            border-color: #e9ecef;
        }

        .select-selected.select-arrow-active {
            border-color: #2196f3;
            box-shadow: 0 0 0 1px #bee3f8;
        }

        .select-selected::after {
            content: "↕"; 
            font-size: 14px;
            color: #adb5bd;
            transition: transform 0.2s;
        }

        .select-items {
            position: absolute;
            background-color: #ffffff;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 99;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-top: 5px;
            max-height: 250px;
            overflow-y: auto;
        }

        .select-hide {
            display: none;
        }

        .select-items div {
            padding: 12px 15px;
            cursor: pointer;
            font-size: 14px;
            color: #495057;
            border-bottom: 1px solid #f4f6f9;
            display: flex;
            align-items: center;
            transition: background-color 0.2s, color 0.2s;
        }

        .select-items div:last-child {
            border-bottom: none;
        }

        .select-items div:hover, .same-as-selected {
            background-color: #f8faff;
            color: #2196f3;
            font-weight: 600;
        }

        .select-items div i, .select-selected i {
            margin-right: 10px;
            color: #2196f3;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .footer-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
            margin: 16px;
        }

        .right-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .reset-filters {
            font-size: 12px;
            color: #2196f3;
            text-decoration: none;
        }

        .reset-filters:hover {
            text-decoration: underline;
        }

        .btn {
            padding: 8px 46px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: background-color 0.2s, color 0.2s, opacity 0.2s;
        }
        
        p.my-01 {
            margin: -10px auto 15px !important;
        }

        .btn-stripped {
            background-color: transparent;
            border: 1px solid #ced4da;
            color: #495057;
        }

        .btn-default {
            background-color: #6c757d;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-default.active-blue {
            background-color: #2196f3;
        }

        .btn-default:disabled {
            background-color: #e2e6ea;
            color: #adb5bd;
            cursor: not-allowed;
            opacity: 0.8;
        }

        .btn-default i {
            font-size: 16px;
        }

        #shipping-step3 {
            display: none; 
            margin-top: 45px;
        }

        .shipping-box .result-card {
            background-color: #ffffff;
            border-radius: 8px;
            margin: 0 auto;
        }

        .result-header {
            font-size: 14px;
            color: #6c757d;
            text-align: center;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .result-header span {
            font-weight: 500;
            color: #00aaff;
        }

        .shipping-table {
            background-color: #fbfbfc;
            border-radius: 6px;
            border: 1px solid #e9ecef;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .shipping-row {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            border-bottom: 1px solid #e9ecef;
            font-size: 13px;
        }

        .shipping-row-desc {
            display: flex;
            align-items: center;
            flex-grow: 1;
            color: #6c757d;
        }

        .shipping-row-desc i.icon {
            font-size: 12px;
            color: #254c6c99;
            margin-right: 10px;
            opacity: 0.8;
            width: 12px;
            text-align: center;
            margin-top: 4px;
        }

        .shipping-row-desc a {
            color: #00aaff;
            text-decoration: none;
            margin-left: 5px;
        }

        .shipping-row-desc a:hover {
            text-decoration: underline;
        }

        .shipping-row-amount {
            font-weight: 400;
            color: #333;
            margin-left: auto;
            text-align: right;
            min-width: 100px;
        }

        .commission-row {
            color: #6c757d;
            font-weight: 600;
        }
        
        .commission-row .shipping-row-amount {
            font-weight: 700;
            color: #333;
        }

        .result-footer {
            padding: 22px 25px;
            border-top: 4px double #b1b5b8;
            font-size: 17px;
            border-bottom: none;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .result-footer-row {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
        }

        .result-footer .shipping-row-desc {
            color: #3b3f42;
            font-size: 13px;
        }

        .result-footer .shipping-row-amount {
            font-weight: 700;
            font-size: 17px;
            color: #1a1a1a;
        }

        .extra-costs h5 {
            font-size: 13px;
            font-weight: 500;
            color: #141414;
            margin-top: 30px;
            margin-bottom: 12px;
            text-align: center;
            margin-left: 4px;
        }

        .extra-costs-table {
            background-color: #fbfbfc;
            overflow: hidden;
        }

        .extra-cost-row {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 15px 25px;
            border-bottom: 1px solid #e9ecef;
            font-size: 14px;
        }
        
        .extra-cost-row:last-child {
            border-bottom: none;
        }

        .extra-cost-row-desc {
            color: #6c757d;
            flex-grow: 1;
        }

        .extra-cost-row-amount {
            color: #121313;
            font-weight: 400;
            margin-left: auto;
            text-align: right;
            min-width: 100px;
        }

        .support-warning {
            display: none;
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
            padding: 25px;
            border-radius: 6px;
            text-align: center;
            margin-bottom: 30px;
            font-size: 15px;
        }

        .support-warning i {
            font-size: 24px;
            margin-bottom: 10px;
            display: block;
            color: #ffc107;
        }

        .shipping-content {
            margin: 0px 22px;
        }

        .seo-section {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            padding: 35px 40px;
            color: #5c7489;
            font-size: 14px;
            line-height: 1.5;
        }

        .seo-section h2 {
            color: #0a8bf1;
            font-size: 15px;
            font-weight: 400;
            margin-top: 35px;
            margin-bottom: 15px;
        }

        .seo-section h2:first-child {
            margin-top: 0;
        }

        .seo-section p {
            margin-bottom: 18px;
        }

        .seo-section ul {
            margin-top: 10px;
            margin-bottom: 25px;
            padding-left: 20px;
        }

        .seo-section ul li {
            margin-bottom: 10px;
            list-style-type: disc;
        }

        .seo-section a {
            color: #2196f3;
            text-decoration: none;
        }

        .seo-section a:hover {
            text-decoration: underline;
        }

        .seo-my-section {
            max-width: 1220px;
            margin: 60px auto;
        }
        
        .vin-section-divider {
            text-align: center;
            position: relative;
            margin: 30px 16px 20px 16px;
        }
        .vin-section-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e9ecef;
            z-index: 1;
        }
        .vin-section-divider span {
            background: #ffffff;
            padding: 0 15px;
            color: #2a2929;
            font-size: 13px;
            font-weight: bold;
            position: relative;
            z-index: 2;
        }
        .vin-input-container {
            margin: 0 16px 20px;
        }
        .vin-input-container input:focus {
            outline: none;
            border-color: #2196f3;
            box-shadow: 0 0 0 1px #bee3f8;
        }
        
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(33, 37, 41, 0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }
        .modal-box {
            background: #ffffff;
            border-radius: 8px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            overflow: hidden;
            border: 1px solid #E1E8EE;
        }
        .modal-overlay.show .modal-box {
            transform: translateY(0);
        }
        .modal-header-container {
            padding: 20px 25px 15px;
            border-bottom: 1px solid #e9ecef;
            background-color: #fbfbfc;
        }
        .modal-header-container h4 {
            margin: 0;
            font-size: 14px;
            font-weight: 500;
            color: #2a3540fc;
        }
        .modal-body {
            padding: 25px;
            font-size: 14px;
            color: #5b6b7e;
            line-height: 1.5;
        }
        .modal-footer {
            padding: 15px 25px 20px;
            text-align: right;
            border-top: 1px solid #f4f6f9;
        }
        .modal-footer button {
            padding: 8px 30px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 20px auto;
            }
            .box-content {
                padding: 20px 0px 10px 0px;
                margin-left: 0px;
                margin-right: 0px;
            }
            .shipping-content {
                margin: 0px 12px;
            }
            .settings-boxes-row.payment-boxes {
                margin: 12px;
            }
            .shipping-steps {
                flex-direction: column;
                gap: 15px;
            }
            .section-title h1, .section-title h3 {
                font-size: 18px;
                padding: 0 10px;
            }
            .section-title p {
                font-size: 12px;
                margin: 10px 15px 25px;
            }
            .shipping-header {
                font-size: 14px;
            }
            .shipping-header span {
                font-size: 11px;
            }
            .btn {
                padding: 8px 30px;
                font-size: 13px;
            }
            
            .shipping-row {
                padding: 16px 15px;
                flex-wrap: wrap;
            }
            .shipping-row-desc {
                font-size: 13px;
                width: 100%;
                margin-bottom: 8px;
                align-items: flex-start;
                flex-wrap: wrap;
                line-height: 1.4;
            }
            .shipping-row-desc i.icon {
                margin-top: 3px;
            }
            .shipping-row-desc a {
                flex: 1 1 100%;
                margin-left: 22px;
                margin-top: 4px;
                display: block;
            }
            .shipping-row-amount {
                width: 100%;
                text-align: right;
                font-size: 14px;
                font-weight: 600;
                min-width: auto;
            }
            .commission-row .shipping-row-desc {
                margin-bottom: 4px;
            }
            
            .extra-cost-row {
                padding: 16px 15px;
                flex-wrap: wrap;
            }
            .extra-cost-row-desc {
                width: 100%;
                font-size: 13px;
                margin-bottom: 8px;
                line-height: 1.4;
            }
            .extra-cost-row-amount {
                width: 100%;
                text-align: left;
                font-size: 14px;
                font-weight: 600;
                min-width: auto;
                color: #121313;
            }
            
            .result-footer {
                padding: 16px 15px;
            }
            .result-footer-row {
                flex-wrap: nowrap;
            }
            .result-footer .shipping-row-desc {
                width: auto;
                margin-bottom: 0;
            }
            .result-footer .shipping-row-amount {
                width: auto;
                font-size: 16px;
            }
            
            .seo-section {
                padding: 25px 20px;
            }
            .seo-section h2 {
                font-size: 14px;
                margin-top: 25px;
            }
            .seo-my-section {
                margin: 30px auto;
            }
            .footer-line {
                flex-direction: column;
                gap: 15px;
            }
            .right-info {
                width: 100%;
                justify-content: space-between;
            }
            .btn-stripped {
                width: 100%;
            }

            #step-box-3, #step-box-4 {
                border: none !important;
                padding: 0 !important;
                box-shadow: none !important;
            }
            #step-box-3 .step-check, #step-box-4 .step-check,
            #step-box-3 .shipping-header, #step-box-4 .shipping-header {
                display: none !important;
            }
            #step-box-3 .shipping-content, #step-box-4 .shipping-content {
                margin: 0 !important;
            }

            #vehicleSelect .select-selected {
                display: none !important;
            }
            #vehicleSelect .select-items {
                display: block !important;
                position: static;
                border: none;
                box-shadow: none;
                padding: 0;
                margin-top: 0;
                background: transparent;
                max-height: none;
            }
            #vehicleSelect .select-items div {
                border: 1px solid #ced4da73 !important;
                border-radius: 8px;
                margin-bottom: 12px;
                padding: 14px 20px;
                display: flex;
                align-items: center;
                background-color: #fff;
            }
            
            #vehicleSelect .select-items div::before {
                content: '';
                display: inline-block;
                width: 18px;
                height: 18px;
                border: 2px solid #adb5bd73;
                border-radius: 50%;
                margin-right: 15px;
                flex-shrink: 0;
                transition: all 0.2s;
            }
            
            #vehicleSelect .select-items div.same-as-selected {
                border-color: #2196f3 !important;
                background-color: #fff; 
            }
            #vehicleSelect .select-items div.same-as-selected::before {
                border-color: #2196f3;
                background-color: #2196f3;
                box-shadow: inset 0 0 0 3px #fff; 
            }

            #vehicleSelect .select-items div span.v-text {
                order: 2;
                flex-grow: 1;
                font-size: 13px;
                color: #495057;
            }
            #vehicleSelect .select-items div.same-as-selected span.v-text {
                color: #212529;
            }
            #vehicleSelect .select-items div i {
                order: 3;
                margin-right: 0;
                margin-left: auto;
                font-size: 20px;
                color: #00aaffc2;
            }

            #wojewodztwoSelect .select-selected {
                background-color: #fff;
                border: 1px solid #ced4da8f;
                padding: 10px 15px;
                border-radius: 4px;
                text-align: left;
                font-size: 13px;
                color: #495057;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                transition: all 0.2s;
                user-select: none;
            }
            #wojewodztwoSelect .select-selected.select-arrow-active {
                border-color: #2196f3;
                box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
            }
        }
        .my-01 {
            margin: 100px;
        }
        #vin-input::placeholder {
            color: #b1b9c1; 
            opacity: 0.9;  
        }
