/* ===== SECTION WRAPPER ===== */
.decodeVinAnyVehicle-info {
    background: linear-gradient(135deg, #f8fafc, #eef2f7) !important;
    padding: 50px 30px !important;
    border-radius: 16px;
    /* position: relative; */
    overflow: hidden;
}

/* ===== IMAGE ===== */
.img-canada-number img {
    /* width: 100%; */
    border-radius: 14px;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
    transition: transform 0.4s ease;
}

/* ===== INFO CARD BASE ===== */
.info-card {
    padding: 20px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* ===== HOVER EFFECT ===== */
.info-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

/* ===== COLOR STRIP (LEFT BORDER EFFECT) ===== */
.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    border-radius: 10px 0 0 10px;
}

/* COLOR VARIANTS */
.info-card.greens::before {
    background: linear-gradient(180deg, #22c55e, #16a34a) !important;
}

.info-card.blue::before {
    background: linear-gradient(180deg, #3b82f6, #2563eb) !important;
}

.info-card.teal::before {
    background: linear-gradient(180deg, #14b8a6, #0d9488) !important;
}

/* ===== CARD TITLE ===== */
.info-card .title {
    color: #111827;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .decodeVinAnyVehicle-info {
        padding: 30px 15px !important;
    }

    .decodeVinAnyVehicle-info h5 {
        font-size: 20px;
    }

    .vin-right {
        margin-top: 20px;
    }
}

/* ===== SECTION WRAPPER ===== */
.vinDecoderWork {
    background: #ffffff;
    padding: 60px 60px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* ===== TOP SMALL TITLE ===== */
.vinDecoderWork p:first-child {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #22c55e !important;
    font-weight: 500;
    margin-bottom: 8px;
}

/* ===== MAIN HEADING ===== */
.vinDecoderWork h5 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

/* ===== PARAGRAPH TEXT ===== */
.vinDecoderWork p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== LIST DESIGN ===== */
.vinDecoderWork ul {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

/* CUSTOM BULLETS */
.vinDecoderWork ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 17.5px;
    color: #374151;
}

/* GREEN ICON BULLET */
.vinDecoderWork ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-size: 14px;
    font-weight: bold;
}

/* ===== IMAGE DESIGN ===== */
.vinDecoderWork img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

/* ===== LAYOUT SPACING ===== */
.vinDecoderWork .row {
    align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .vinDecoderWork {
        padding: 25px 15px !important;
    }

    .vinDecoderWork h5 {
        font-size: 20px;
    }

    .vinDecoderWork img {
        margin-top: 20px;
    }
}

.decodeVinAnyVehicle img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

/* ===== SECTION BACKGROUND ===== */
.CountryStates {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 60px 20px;
}

/* ===== CONTAINER BOX ===== */
.statescontainer {
    background: #ffffff;
    padding: 60px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* ===== HEADING ===== */
.statescontainer h5 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

/* ===== SUBTEXT ===== */
.statescontainer p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* ===== GRID LAYOUT ===== */
.statescontainer .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

/* ===== STATE BUTTON ===== */
.state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 14px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* ===== HOVER EFFECT ===== */
.state:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

/* ===== ACTIVE CLICK EFFECT ===== */
.state:active {
    transform: scale(0.95);
}

/* ===== OPTIONAL: FIRST LETTER STYLE ===== */
.state::first-letter {
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .statescontainer {
        padding: 25px 15px;
    }

    .statescontainer h5 {
        font-size: 20px;
    }

    .statescontainer .grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }

    .state {
        font-size: 13px;
        padding: 8px;
    }
}

/* ===== PAGE BACKGROUND ===== */
.privacyPolicyBody {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

/* ===== LOGO HEADER ===== */
.logovinauto {
    background: #ffffff;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 15px !important;
    gap: 15px;
}

.logovinauto img {
    width: 60px;
    height: auto;
}

/* BRAND TEXT */
.header-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== DIVIDER ===== */
.border-containe {
    border-top: 1px solid #e5e7eb;
    margin: 10px auto;
    max-width: 900px;
}

/* ===== MAIN WRAPPER ===== */
.whole-web-container {
    display: flex;
    justify-content: center;
}

/* ===== CONTENT CARD ===== */
.whole-web-container .container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ===== PAGE TITLE ===== */
.whole-web-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #052633 !important;
    margin-bottom: 20px;
    border-left: 5px solid #22c55e;
    padding-left: 10px;
}

/* ===== PRIVACY CONTENT ===== */
.whole-web-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 15px;
}

/* ===== HEADINGS INSIDE CONTENT ===== */
.whole-web-container h2,
.whole-web-container h3,
.whole-web-container h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111827;
}

/* ===== LIST STYLE ===== */
.whole-web-container ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 15px;
}

.whole-web-container ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 14.5px;
}

/* BULLET ICON */
.whole-web-container ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== LINKS ===== */
.whole-web-container a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.whole-web-container a:hover {
    text-decoration: underline;
}

/* ===== ALERT MESSAGES ===== */
.alert {
    max-width: 900px;
    margin: 15px auto;
    border-radius: 10px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logovinauto {
        flex-direction: column;
        text-align: center;
    }

    .whole-web-container .container {
        padding: 25px 20px;
    }

    .whole-web-container h1 {
        font-size: 22px;
    }

    .whole-web-container p {
        font-size: 14px;
    }
}

.privacyPolicyBody {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

/* ===== GLOBAL RESET (SCOPED) ===== */
.termsConditionsMaindiv {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f4f7fb, #e9f5ec);
    color: #2c3e50;
    padding-bottom: 30px;
}

/* ===== LOGO HEADER ===== */
.termsConditionsMaindiv .logo-container-image {
    background: white;
    border-radius: 12px;
    margin: 15px auto;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.termsConditionsMaindiv .logo-container-image:hover {
    transform: translateY(-2px);
}

/* LOGO IMAGE */
.termsConditionsMaindiv .logo-container-image img {
    max-width: 80px;
    height: auto;
}

/* BRAND TEXT */
.termsConditionsMaindiv .header-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* SUB TEXT */
.termsConditionsMaindiv .nav-logo-container a:last-child {
    opacity: 0.7;
}

/* ===== DIVIDER ===== */
.termsConditionsMaindiv .border-containe {
    border-top: 1px solid #e0e0e0;
}

/* ===== MAIN CONTAINER ===== */
.termsConditionsMaindiv .whole-web-container {
    display: flex;
    justify-content: center;
}

.termsConditionsMaindiv .container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

/* Hover effect */
.termsConditionsMaindiv .container:hover {
    transform: translateY(-3px);
}

/* ===== PAGE TITLE ===== */
.termsConditionsMaindiv h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #052633 !important;
    border-left: 5px solid #2bb44a;
    padding-left: 12px;
    margin-bottom: 20px;
}

/* ===== TEXT CONTENT ===== */
.termsConditionsMaindiv .container p {
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 18px;
    color: #555;
}

/* Links */
.termsConditionsMaindiv .container a {
    color: #2bb44a;
    text-decoration: none;
    font-weight: 500;
}

.termsConditionsMaindiv .container a:hover {
    text-decoration: underline;
}

/* ===== ALERTS ===== */
.termsConditionsMaindiv .alert {
    max-width: 600px;
    margin: 15px auto;
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Close button fix */
.termsConditionsMaindiv .alert .close {
    font-size: 18px;
    opacity: 0.7;
}

.termsConditionsMaindiv .alert .close:hover {
    opacity: 1;
}

/* ===== GLASS CARD IMPROVE ===== */
.termsConditionsMaindiv .glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .termsConditionsMaindiv .container {
        padding: 20px;
    }

    .termsConditionsMaindiv h1 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .termsConditionsMaindiv .logo-container-image {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .termsConditionsMaindiv .logo-container-image img {
        max-width: 60px;
        margin-bottom: 5px;
    }

    .termsConditionsMaindiv .header-brand {
        font-size: 22px !important;
    }

    .termsConditionsMaindiv .container {
        padding: 18px;
    }

    .termsConditionsMaindiv h1 {
        font-size: 22px;
    }

    .termsConditionsMaindiv .container p {
        font-size: 14px;
    }
}

/* Extra small */
@media (max-width: 400px) {
    .termsConditionsMaindiv .header-brand {
        font-size: 20px !important;
    }
}

/* ===== MAIN WRAPPER ===== */

.cancelRefundBody {
    background: linear-gradient(135deg, #f4f7fb, #e9f5ec);
}
.cancel-refund-div {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f4f7fb, #e9f5ec);
    padding-bottom: 40px;
}

/* ===== HEADER LOGO ===== */
.cancel-refund-div ~ .logo-container-image,
.cancel-refund-div .logo-container-image {
    background: #ffffff;
    border-radius: 14px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.cancel-refund-div ~ .logo-container-image:hover {
    transform: translateY(-3px);
}

/* LOGO */
.cancel-refund-div .logo-container-image img {
    max-width: 80px;
}

/* BRAND */
.cancel-refund-div .header-brand {
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* SUB TEXT */
.cancel-refund-div .nav-logo-container a:last-child {
    opacity: 0.7;
}

/* ===== DIVIDER ===== */
.cancel-refund-div ~ .border-containe {
    border-top: 1px solid #e5e5e5;
}

/* ===== MAIN CONTENT ===== */
.cancel-refund-div {
    display: flex;
    justify-content: center;
}

/* CARD */
.cancel-refund-div .container {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cancel-refund-div .container:hover {
    transform: translateY(-4px);
}

/* ===== TITLE ===== */
.cancel-refund-div h1 {
    font-size: 2rem !important;
    font-weight: 600;
    color: #052633 !important;
    border-left: 5px solid #2bb44a;
    padding-left: 14px;
    margin-bottom: 20px;
}

/* ===== CONTENT ===== */
.cancel-refund-div .container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

/* HEADINGS INSIDE CONTENT */
.cancel-refund-div .container h2,
.cancel-refund-div .container h3,
.cancel-refund-div .container h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

/* LIST STYLE */
.cancel-refund-div .container ul {
    padding-left: 18px;
}

.cancel-refund-div .container ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* LINKS */
.cancel-refund-div .container a {
    color: #2bb44a;
    font-weight: 500;
    text-decoration: none;
}

.cancel-refund-div .container a:hover {
    text-decoration: underline;
}

/* ===== ALERT ===== */
.cancel-refund-div ~ .alert {
    max-width: 600px;
    margin: 15px auto;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cancel-refund-div ~ .alert .close {
    font-size: 18px;
    opacity: 0.7;
}

.cancel-refund-div ~ .alert .close:hover {
    opacity: 1;
}

/* ===== GLASS CARD ===== */
.cancel-refund-div .glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .cancel-refund-div .container {
        padding: 25px;
    }

    .cancel-refund-div h1 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logo-container-image {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .logo-container-image img {
        max-width: 60px;
        margin-bottom: 6px;
    }

    .header-brand {
        font-size: 22px !important;
    }

    .cancel-refund-div .container {
        padding: 20px;
    }

    .cancel-refund-div h1 {
        font-size: 22px;
    }

    .cancel-refund-div .container p {
        font-size: 14px;
    }
}

/* Extra small */
@media (max-width: 400px) {
    .header-brand {
        font-size: 20px !important;
    }
}

/* =============================================================================
   VIN Decoder hero — .StatevinCheck (vindecoder.blade.php)
   Scoped under parent; loads after page inline styles.
   ============================================================================= */

.StatevinCheck {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #f0f4f8 0%, #f8fafc 42%, #eef2f7 100%);
    padding: clamp(1.25rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.StatevinCheck::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 80% 55% at 100% 0%,
            rgba(34, 197, 94, 0.09),
            transparent 55%
        ),
        radial-gradient(
            ellipse 60% 45% at 0% 100%,
            rgba(5, 38, 51, 0.05),
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

.StatevinCheck > .container {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.StatevinCheck .breadcrumb-wrapper {
    padding: 0.5rem 0 1rem !important;
    margin-bottom: 0.25rem;
}

.StatevinCheck .arrow-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.StatevinCheck .arrow-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.StatevinCheck .arrow-breadcrumb a:hover {
    color: #052633;
}

.StatevinCheck .arrow-breadcrumb a.active {
    color: #052633;
    font-weight: 600;
    pointer-events: none;
}

.StatevinCheck .arrow-breadcrumb a:not(.active)::after {
    content: "/";
    display: inline-block;
    margin-left: 0.65rem;
    color: #cbd5e1;
    font-weight: 400;
    pointer-events: none;
}

/* Main row */
.StatevinCheck .rowResponsive {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: clamp(1rem, 3vw, 2rem) 0 !important;
    align-items: center !important;
    row-gap: clamp(1.5rem, 4vw, 2.5rem);
    --bs-gutter-x: 1.75rem;
}

.StatevinCheck .rowResponsive > [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* Copy column */
.StatevinCheck .usaStateVinCheck-info {
    margin-top: 0 !important;
    padding-right: clamp(0px, 2vw, 1rem);
}

.StatevinCheck .usaStateVinCheck-info h1 {
    font-size: clamp(1.75rem, 4.2vw, 2.75rem) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em;
    color: #052633 !important;
    margin-bottom: 0.65rem !important;
    max-width: 22ch;
}

.StatevinCheck .usaStateVinCheck-info > p {
    font-size: clamp(1rem, 2.1vw, 1.2rem) !important;
    line-height: 1.55 !important;
    color: #475569 !important;
    font-weight: 400;
    margin-bottom: 1.35rem !important;
    max-width: 36rem;
}

.StatevinCheck .LookupForm {
    margin-top: 0.25rem;
}

.StatevinCheck .foremClass {
    width: 100%;
}

.StatevinCheck .input-container-decode {
    width: 100%;
    max-width: 100%;
}

.StatevinCheck .input-wrapper-decode {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.65rem 0.75rem;
    padding: 0.55rem 0.65rem 0.55rem 0.85rem !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 1px solid rgba(5, 38, 51, 0.1) !important;
    box-shadow:
        0 1px 2px rgba(5, 38, 51, 0.04),
        0 12px 32px rgba(5, 38, 51, 0.07);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.StatevinCheck .input-wrapper-decode:focus-within {
    border-color: rgba(34, 197, 94, 0.45) !important;
    box-shadow:
        0 1px 2px rgba(34, 197, 94, 0.08),
        0 12px 36px rgba(5, 38, 51, 0.1),
        0 0 0 3px rgba(34, 197, 94, 0.15);
}

.StatevinCheck .input-wrapper-decode svg {
    flex-shrink: 0;
    align-self: center;
    opacity: 0.88;
}

.StatevinCheck .vin-input {
    flex: 1 1 160px !important;
    min-height: 46px;
    padding: 0.35rem 0.25rem !important;
    font-size: clamp(0.95rem, 2vw, 1.05rem) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a !important;
}

.StatevinCheck .vin-input::placeholder {
    color: #94a3b8 !important;
    text-transform: none;
    letter-spacing: normal;
}

.StatevinCheck .decode-button {
    flex: 1 1 auto;
    min-width: min(100%, 140px);
    min-height: 46px;
    padding: 0.65rem 1.35rem !important;
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    border-radius: 10px !important;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.StatevinCheck .decode-button:hover {
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%) !important;
    filter: brightness(1.02);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
}

.StatevinCheck .decode-button:active {
    transform: translateY(1px);
}

/* Image column */
.StatevinCheck .rowResponsive > .col-lg-6:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.StatevinCheck .rowResponsive > .col-lg-6:last-child img {
    width: 100%;
    max-width: min(520px, 100%);
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(5, 38, 51, 0.12);
    transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .StatevinCheck .rowResponsive > .col-lg-6:last-child img:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .StatevinCheck .usaStateVinCheck-info {
        padding-right: 0;
        text-align: center;
    }

    .StatevinCheck .usaStateVinCheck-info h1,
    .StatevinCheck .usaStateVinCheck-info > p {
        margin-left: auto;
        margin-right: auto;
    }

    .StatevinCheck .usaStateVinCheck-info h1 {
        max-width: 20ch;
    }

    .StatevinCheck .breadcrumb-wrapper {
        text-align: center;
    }

    .StatevinCheck .arrow-breadcrumb {
        justify-content: center;
    }

    .StatevinCheck .input-wrapper-decode {
        justify-content: center;
    }

    .StatevinCheck .vin-input {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .StatevinCheck {
        padding-top: 0.75rem;
    }

    .StatevinCheck .usaStateVinCheck-info {
        margin-top: 0 !important;
    }

    .StatevinCheck .breadcrumb-wrapper {
        padding-bottom: 0.5rem !important;
    }

    .StatevinCheck .input-wrapper-decode {
        flex-direction: column;
        align-items: stretch;
        padding: 0.65rem !important;
        gap: 0.75rem;
    }

    .StatevinCheck .input-wrapper-decode svg {
        display: none;
    }

    .StatevinCheck .vin-input {
        flex: 1 1 auto !important;
        text-align: center;
        min-height: 48px;
    }

    .StatevinCheck .decode-button {
        width: 100%;
        min-height: 48px;
        font-size: 0.9375rem !important;
    }

    .StatevinCheck .rowResponsive > .col-lg-6:last-child img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Legacy layout overrides: rowResponsive column-reverse + large margin on small viewports */
@media (min-width: 280px) and (max-width: 1000px) {
    .StatevinCheck .usaStateVinCheck-info {
        margin-top: 1.25rem !important;
    }
}
