/* ── GLOBAL RESETS & FORMS (From head.blade.php) ──────────────── */
html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #cc272a;
    outline-offset: 3px;
}

table,
tbody,
td,
tfoot,
th,
thead,
tr {
    border: none !important;
}

textarea,
textarea.form-control {
    min-height: auto !important;
}

.slick-slider {
    user-select: text !important;
}

.clamp-titlee a {
    color: #000;
}

.form-group input {
    height: 44px;
    line-height: 1.2;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    width: 100%;
    height: 44px !important;
    line-height: 1.2;
    transition: border-color .2s;
}

.form-group select:focus {
    border-color: #007bff;
    outline: 0;
    box-shadow: 0 0 5px rgba(0, 123, 255, .3);
}

.header-links a,
.header-links li,
.header-links p,
.header-links span {
    font-size: 15px !important;
}

.header-links {
    color: #fff !important;
}

.header-layout1 .menu-area .logo-bg {
    height: calc(100% + 10px) !important;
    top: 0 !important;
}

.preloader-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.form-label {
    color: #fff;
}

.single-select,
.form-select,
select {
    line-height: 40px !important;
}

select,
.single-select,
.form-control,
.form-select,
input {
    height: 40px !important;
}

/* ── NAVIGATION & HEADER (From header.blade.php) ──────────────── */
:root {
    --brand: #cc272a;
    --brand-hover: #c00724;
    --nav-text: #1a1a1a;
    --muted: #888;
    --top-bg: #0f0f0f;
    --nav-h: 72px;
}

.sh * {
    box-sizing: border-box;
}

.sh a {
    text-decoration: none;
}

.sh-top {
    background: var(--top-bg);
    padding: 8px 0;
    font-size: 12.5px;
    line-height: 1;
}

.sh-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sh-top__links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sh-top__links li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
}

.sh-top__links li i {
    color: var(--brand);
    font-size: 11px;
}

.sh-top__links a {
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.sh-top__links a:hover {
    color: #fff;
}

.sh-top__links .sh-div {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .12);
    display: block;
}

.sh-top__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sh-top__label {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.sh-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sh-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.sh-social a:hover {
    background: var(--brand);
    color: #fff;
}

.sh-nav-wrap {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 950;
    transition: box-shadow .3s, background .3s;
    border-bottom: 1px solid #f0f0f0;
}

.sh-nav-wrap.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
    animation: navSlideDown .3s ease-out both;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sh-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 12px;
}

.sh-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sh-logo a {
    display: block;
    line-height: 1;
}

.sh-logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: opacity .2s;
}

.sh-logo a:hover img {
    opacity: .85;
}

.sh-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.sh-menu>li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.sh-menu>li>a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    height: 100%;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--nav-text);
    transition: color .2s;
    white-space: nowrap;
    position: relative;
}

.sh-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.sh-menu>li:hover>a,
.sh-menu>li.active>a {
    color: var(--brand);
}

.sh-menu>li:hover>a::after,
.sh-menu>li.active>a::after {
    transform: scaleX(1);
}

.sh-chevron {
    font-size: 9px;
    transition: transform .25s;
}

.sh-menu>li:hover .sh-chevron {
    transform: rotate(180deg);
}

.sh-sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-top: 2px solid var(--brand);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .10);
    min-width: 210px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
}

.sh-menu>li:hover .sh-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sh-sub li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: color .2s, background .2s, padding-left .2s;
}

.sh-sub li a i {
    color: var(--brand);
    width: 16px;
    font-size: 12px;
}

.sh-sub li a:hover {
    color: var(--brand);
    background: #fff5f6;
    padding-left: 26px;
}

.sh-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-top: 2px solid var(--brand);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .11);
    width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
    overflow: hidden;
}

.sh-menu>li:hover .sh-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sh-mega__inner {
    display: flex;
}

.sh-mega__visual {
    flex: 0 0 240px;
    background: #f7f7f7;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-mega__visual img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

.sh-mega__tagline {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
    text-align: center;
    margin: 0;
}

.sh-mega__links {
    flex: 1;
    padding: 22px 24px 18px;
}

.sh-mega__heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sh-mega__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sh-mega__list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background .2s, transform .2s;
}

.sh-mega__list li a:hover {
    background: #fff5f6;
    transform: translateX(4px);
}

.sh-mega__dot {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-mega__list li a strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    transition: color .2s;
}

.sh-mega__list li a:hover strong {
    color: var(--brand);
}

.sh-mega__list li a small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.sh-mega__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand);
    border: 1.5px solid var(--brand);
    padding: 6px 16px;
    border-radius: 50px;
    transition: background .2s, color .2s;
}

.sh-mega__all:hover {
    background: var(--brand);
    color: #fff;
}

.sh-menu>li>a.sh-dealer {
    background: var(--brand);
    color: #fff;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    margin-left: 6px;
    border: 2px solid var(--brand);
    transition: background .2s, color .2s, transform .2s;
}

.sh-menu>li>a.sh-dealer::after {
    display: none;
}

.sh-menu>li>a.sh-dealer:hover {
    background: transparent;
    color: var(--brand);
    transform: translateY(-1px);
}

.sh-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sh-search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid #e8e8e8;
    background: none;
    color: #333;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    flex-shrink: 0;
}

.sh-search-toggle:hover,
.sh-search-toggle.active {
    border-color: var(--brand);
    color: var(--brand);
    background: #fff5f6;
}

.sh-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 18px 0 10px;
    height: 42px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .2s;
}

.sh-phone:hover {
    background: var(--brand-hover);
    color: #fff;
}

.sh-phone__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.sh-hamburger {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color .2s;
}

.sh-hamburger:hover {
    border-color: var(--brand);
}

.sh-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: background .2s, transform .3s, opacity .3s;
}

.sh-hamburger:hover .sh-bar {
    background: var(--brand);
}

.sh-search-panel {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 940;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .35s;
    border-top: 2px solid var(--brand);
}

.sh-search-panel.open {
    max-height: 380px;
    padding: 28px 0 24px;
}

.sh-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f7f7f7;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
    max-width: 680px;
    margin: 0 auto;
}

.sh-search-form:focus-within {
    border-color: var(--brand);
    background: #fff;
}

.sh-search-form label {
    padding: 0 16px;
    color: var(--muted);
    font-size: 16px;
    cursor: text;
    flex-shrink: 0;
}

.sh-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 0;
    font-size: 16px;
    color: #1a1a1a;
    outline: none;
    min-width: 0;
}

.sh-search-input::placeholder {
    color: #bbb;
}

.sh-search-btn {
    background: var(--brand);
    border: none;
    color: #fff;
    padding: 0 24px;
    height: 54px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.sh-search-btn:hover {
    background: var(--brand-hover);
}

.sh-search-hints {
    max-width: 680px;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sh-search-hint-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
}

.sh-search-hints a {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 50px;
    transition: background .2s, color .2s;
}

.sh-search-hints a:hover {
    background: var(--brand);
    color: #fff;
}

.sh-search-esc {
    max-width: 680px;
    margin: 10px auto 0;
    font-size: 11px;
    color: #bbb;
    text-align: right;
}

.sh-search-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 930;
    background: rgba(0, 0, 0, .35);
}

.sh-search-backdrop.open {
    display: block;
}

.sh-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 310px;
    height: 100dvh;
    background: #fff;
    z-index: 1050;
    box-shadow: -4px 0 30px rgba(0, 0, 0, .15);
    transition: right .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sh-mobile.active {
    right: 0;
}

.sh-mobile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.sh-mobile__close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.sh-mobile__close:hover {
    background: var(--brand);
    color: #fff;
}

.sh-mobile__search {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.sh-mobile__search form {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f5f5f5;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
}

.sh-mobile__search form:focus-within {
    border-color: var(--brand);
    background: #fff;
}

.sh-mobile__search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 14px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    min-width: 0;
}

.sh-mobile__search input::placeholder {
    color: #bbb;
}

.sh-mobile__search button {
    border: none;
    background: var(--brand);
    color: #fff;
    padding: 0 14px;
    height: 40px;
    cursor: pointer;
    font-size: 13px;
    transition: background .2s;
}

.sh-mobile__search button:hover {
    background: var(--brand-hover);
}

.sh-mobile__nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.sh-mobile__nav>li {
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.sh-mobile__nav>li>a {
    display: block;
    padding: 13px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: #222;
    transition: color .2s, background .2s;
}

.sh-mobile__nav>li>a:hover,
.sh-mobile__nav>li>a.active {
    color: var(--brand);
    background: #fff5f6;
}

.sh-mob-expand {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #666;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s, transform .25s;
}

.sh-mob-expand:hover {
    background: var(--brand);
    color: #fff;
}

.sh-mobile__nav>li.open .sh-mob-expand {
    background: var(--brand);
    color: #fff;
    transform: rotate(45deg);
}

.sh-mob-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    display: none;
}

.sh-mob-sub.open {
    display: block;
    animation: mobSubIn .2s ease;
}

@keyframes mobSubIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sh-mob-sub li a {
    display: block;
    padding: 10px 18px 10px 30px;
    font-size: 13.5px;
    color: #555;
    position: relative;
    transition: color .2s, background .2s;
}

.sh-mob-sub li a::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .45;
}

.sh-mob-sub li a:hover {
    color: var(--brand);
    background: #fff5f6;
}

.sh-mob-sub li a:hover::before {
    opacity: 1;
}

.sh-mobile__nav>li>a.sh-mob-dealer {
    margin: 12px 16px;
    padding: 12px 16px !important;
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: 8px;
    text-align: center;
    font-weight: 700 !important;
    display: block;
}

.sh-mobile__nav>li>a.sh-mob-dealer:hover {
    background: var(--brand-hover) !important;
}

.sh-mobile__social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.sh-mobile__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.sh-mobile__social a:hover {
    background: var(--brand);
    color: #fff;
}

.sh-mobile__contact {
    background: var(--brand);
    padding: 9px 18px;
    flex-shrink: 0;
}

.sh-mobile__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sh-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1040;
    backdrop-filter: blur(2px);
}

.sh-overlay.active {
    display: block;
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 1199px) {
    .sh-menu>li>a {
        padding: 0 10px;
        font-size: 13.5px;
    }

    .sh-phone {
        font-size: 13px;
        padding: 0 14px 0 8px;
    }
}

@media (max-width: 991px) {
    :root {
        --nav-h: 64px;
    }

    .sh-top {
        display: none;
    }
}
