
    /* ========== CONTAINER ========== */
    .vehicle-search-widget-container {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        color: #333;
    }

    /* ========== SHOP NOW BUTTON ========== */
    .shop-now-container {
        display: flex;
        justify-content: center;
        padding: 40px 20px;
        background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .btn-shop-now {
        padding: 16px 40px;
        font-size: 16px;
        font-weight: 600;
        background: #2094c1;
        color: #fff !important;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(32, 148, 193, 0.3);
    }

    .btn-shop-now:hover {
        background: #1a7aa3;
        box-shadow: 0 6px 16px rgba(32, 148, 193, 0.4);
        transform: translateY(-2px);
    }

    .btn-shop-now:active {
        transform: translateY(0);
    }

    /* ========== MODALS ========== */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .modal-overlay.modal-visible {
        display: flex;
        animation: slideUp 0.3s ease-out;
    }

    .modal-overlay.hidden {
        display: none;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.veh-model {
	background: #EEEEEE;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	max-width: 700px;
	width: 100%;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;padding-top: 30px;
}
.vehicle-search-flow .veh-model{max-width:980px}

    .modal-back-btn {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #f0f0f0;
        border: 1px solid #ddd;
        color: #666;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        padding: 0;
        transition: all 0.3s;
    }

    .modal-back-btn:hover {
        background: #e0e0e0;
        color: #333;
    }

.modal-title {
	font-style: normal;
	font-weight: 600 !important;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	color: #111111;
	letter-spacing:0px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	padding: 0px 20px 20px 20px;
	margin-bottom: 20px;
	margin-left: -20px;
	margin-right: -20px;
	color: #1C75AE;
}
.breadcrumb-nav {
	float: right;font-size: 15px;
  color: #111;
}
.breadcrumb-nav .breadcrumb-item{cursor:pointer; font-family: Poppins !important;}
.breadcrumb-arrow {
	padding: 0px 2px;
}
#search-method-modal .method-item .method-label{color: #111;
 box-shadow: inherit !important;
  border: solid 2px hsl(0deg 0% 100% / 85%);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f6f6f6;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;}
    /* ========== CATEGORY OPTIONS ========== */
    .category-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap:20px;padding: 10px 15px;
    }

    .category-item {
        position: relative;
    }

    .category-radio {
        display: none;
    }

    .category-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;padding: 15px 5px;
    height: 100%;
    font-weight: normal;
    background: hsl(0deg 0% 100% / 46%);
    border: solid 2px hsl(0deg 0% 100% / 85%);
    border-radius: 16px;
    cursor: pointer;
    backdrop-filter: blur(32.5px);
    font-size: 15px;
    font-weight: 600;
    }
.category-label img {
    margin-bottom: 10px;
    max-height: 45px;
    width: auto;
}

    .category-radio:checked + .category-label {
        border-color: #2094c1;
        background: #f0f8fc;
        color: #2094c1;
        box-shadow: 0 4px 12px rgba(32, 148, 193, 0.15);
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
        color: currentColor;
    }

    .category-text {
 font-weight: 700;
  line-height: 1;
    }
.modal-title .vehicle-info-filter {
    color: #111;
}
    /* ========== METHOD OPTIONS ========== */
    .method-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        padding:20px;
    }

    .method-item {
        position: relative;
    }

    .method-radio {
        display: none;
    }

.method-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	border: solid 2px hsl(0deg 0% 100% / 85%);
	cursor: pointer;
	transition: all 0.3s ease;
	background: #f6f6f6;
	text-align: center;border-radius: 25px 0px 0px 25px;
}
#method-size-container .method-label {
	border-radius: 0px 20px 20px 0px;
	border-left: 0px;
}
	.close-icon.close-search-modal {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 18px;
	color: #1C75AE;
	padding: 10px 22px !important;
	line-height: 1 !important;
	font-weight: bolder;cursor: pointer;
}

    .method-radio:checked + .method-label {
        border-color: #2094c1;
        background: #f0f8fc;
        color: #2094c1;
        box-shadow: 0 4px 12px rgba(32, 148, 193, 0.15);
    }

    .method-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
        color: currentColor;
    }

    .method-text {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
    }

    /* ========== VEHICLE SEARCH FLOW ========== */
    .vehicle-search-flow {

    }

    .vehicle-search-flow.hidden {
        display: none;
    }

.search-header {

position: absolute;
  right: 15px;
}
		 #breadcrumb-container {
	display: flex;
	justify-content: space-between;

}
    .btn-back-header {
  border: 1px solid rgba(17, 17, 17, 0.25);
    backdrop-filter: blur(32.5px);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 500 !important;
    font-size: 15px;
    line-height: 18px;
    color: #111111;
    }

.btn-back-header:disabled{
	cursor: pointer;
	pointer-events: none;
	border: 1px solid #eaeaea;
	color: #111;
	background: #fff;
}
.btn-back-header:disabled{cursor: not-allowed;
  opacity: 0.6;color: #eaeaea;}
    .btn-back-header:hover {
        background: #f9f9f9;
        border-color: #2094c1;
    }

    .search-title {
        font-size: 20px;
        margin: 0;
        color: #333;
        font-weight: 600;
    }

    .search-step {
        color: #999;
        font-size: 12px;
        font-weight: 500;
    }

    .current-step {
        font-weight: 700;
        color: #2094c1;
    }

    /* ========== STEP CONTENT ========== */
    .search-step-content {
        display: block;
    }

    .search-step-content.hidden {
        display: none;
    }

    .step-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 25px 0;
        color: #333;
    }

    /* ========== OPTIONS LIST ========== */
	.search_widget_footer {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
margin-left: -20px;padding: 20px 30px;
  margin-right: -20px;
}
.option-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;max-height: 45vh;
    max-height: 40vh;
    overflow-y: scroll;
 
}

.option-list li {
	margin: 0;
	padding: 5px;
	width: 33%;
}

    .option-list li.loading {
        grid-column: 1 / -1;
        text-align: center;
        color: #999;
        padding: 20px;
    }

    .option-radio {
        display: none;
    }
#vehicle-search-flow .veh-model{background: #fff;}
    .option-label {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px;
        border-radius: 6px;
        cursor: pointer;
        text-align: center;
        transition: all 0.2s ease;
        background: hsl(0deg 0% 91% / 35%);
        font-size: 16px;
        font-weight: 600;
        min-height: 45px;
    }

    .option-radio:checked + .option-label {
color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(32, 148, 193, 0.2);
  background: linear-gradient(77.81deg, #0094FE 17.97%, #0070BF 83.17%) !important;
    }

/* Tire size items: each on its own full-width row */
.tiresize-option-item {
    width: 100% !important;
}

/* Tire size option: 18" | 225/45R18 91Y layout */
.option-label.oem-verify-align {
    justify-content: flex-start;
    gap: 0;
    text-align: left;
    padding: 10px 12px;
}
.tire-inch-label {
    font-size: 20px;
    font-weight: 800;
    min-width: 38px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}
.tire-inch-divider {
    font-size: 18px;
    font-weight: 300;
    color: #aaa;
    padding: 0 10px;
    flex-shrink: 0;
    line-height: 1;
}
.option-radio:checked + .option-label.oem-verify-align .tire-inch-divider {
    color: rgba(255,255,255,0.6);
}
.tire-size-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}
.tire-rear-size {
    font-size: 13px;
    opacity: 0.85;
}
.button-group button.btn{transition: all 0.3s ease;
  backdrop-filter: blur(32.5px);
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  background: linear-gradient(77.81deg, #0094FE 17.97%, #0070BF 83.17%) !important;}
  
.button-group button.btn.btn-secondary {
	border: 1px solid rgba(17, 17, 17, 0.25) !important;
	backdrop-filter: blur(32.5px);
	border-radius: 10px;
	padding: 10px 15px;
	font-weight: 600 !important;
	font-size: 15px;
	line-height: 18px;
	color: #111111;
	background: #fff !important;
}  
  
    /* ========== CONFIRMATION ========== */
    .confirmation-box {
        background: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        border-left: 4px solid #2094c1;
        margin-bottom: 30px;
    }

    .confirmation-details p {
        margin: 12px 0;
        display: flex;
        justify-content: space-between;
        font-size: 15px;
    }

    .confirmation-details strong {
        color: #666;
        font-weight: 600;
    }

    .confirmation-details span {
        color: #2094c1;
        font-weight: 600;
    }

    /* ========== BUTTONS ========== */
    .btn {
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-next {
        background: #2094c1;
        color: white;
    }

    .btn-next:hover {
        background: #1a7aa3;
        box-shadow: 0 4px 12px rgba(32, 148, 193, 0.3);
    }

    .btn-next:disabled {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .btn-secondary {
        background: #f0f0f0;
        color: #333;
        border: 1px solid #ddd;
    }

    .btn-secondary:hover {
        background: #e0e0e0;
    }

    .button-group {
     display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    }
	.tiresize-col-wrapper {
	display: flex;
}
.tiresize-col-wrapper h2 {
	font-weight: 600 !important;
	font-size: 21px;
	line-height: 27px;
	color: #111111 !important;
	text-align: left !important;
}
.tire-size-information-left, .tire-size-information-right {
    background: hsl(0deg 0% 91% / 35%);
    border-radius: 8px;
    padding: 20px 0px;text-align: center;
    padding-bottom: 0!important; width:100%;
}
.tire-size-information {
    display: flex;
    gap: 10px;
    align-items: stretch;flex-wrap: wrap;
}
.tiresize-col-wrapper .tiresize-col-6 {
    width: 50%;
    padding: 0 5px;
}
.tire-size-information h6 {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    margin-top: 10px;
    padding: 0 5px;
    min-height: 40px;
}
.tire-size-information-link-wrap {
    background: hsl(0deg 0% 91% / 35%);
    margin: 15px 0;
    padding: 30px 20px;
    border-radius: 8px;width: 100%;
}
.tire-size-information-link {
    display: flex;
    align-items: center;
}
.tire-size-information-link h3 {
    font-weight: 600 !important;
    font-size: 21px;
    line-height: 27px;
    color: #111111;
    margin: 0;padding: 0px 20px 0px 0px;
}
.tire-size-information-link .button-wrapper {
    width: auto;
}
#zipcode-selection .zipcode-wrapper{text-align: center;
  padding: 20px;
  text-align: center;
  color: #111;
  font-weight: 600;
  max-width: 480px;
  margin: auto;}
#zipcode-selection .zipcode-wrapper p{font-size: 21px;
  line-height: 1.2; margin:0px; font-weight:600}
#zipcode-selection .zipcode-wrapper input{width:100%; height:40px}
    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
        .veh-model {
            padding: 30px 20px;
        }

        .modal-title {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .category-options,
        .method-options {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .category-label,
        .method-label {
            padding: 20px 10px;
            min-height: 140px;
        }

        .option-list {
            grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
        }

        .button-group {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }

        .vehicle-search-flow {
            padding: 20px;
        }
    }

/* ── Stagger grouping: badges, dividers, banner ── */
.stagger-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.stagger-badge-front {
    background: #1a73e8;
    color: #fff;
}
.stagger-badge-rear {
    background: #e8711a;
    color: #fff;
}
.stagger-section-divider {
    width: 100%;
    list-style: none;
    padding: 10px 0 6px;
    margin: 12px 0 4px;
    border-top: 2px solid #d0d0d0;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.stagger-notice-banner {
    background: #f0f6ff;
    border: 1px solid #b3d0f5;
    border-radius: 5px;
    padding: 10px 16px;
    margin: 8px 0 14px;
    font-size: 14px;
    color: #1a3c6e;
}
.stagger-notice-banner .stagger-icon {
    font-size: 20px;
    margin-right: 6px;
    vertical-align: middle;
}
