@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap");

:root {
    --nora-navy: #1a1a2e;
    --nora-orange: #ff6600;
    --nora-orange-dark: #e55c00;
    --nora-green: #22c55e;
    --nora-red: #ef3340;
    --nora-cyan: #06b6d4;
    --nora-text: #374151;
    --nora-muted: #6b7280;
    --nora-line: #e5e7eb;
    --nora-soft: #f8fafc;
}

body {
    font-family: "Open Sans", sans-serif !important;
    color: var(--nora-text);
    background: #fff;
}

h1, h2, h3, h4, h5, h6,
.font-nunito {
    font-family: "Nunito", sans-serif !important;
}

.nora-container {
    width: min(100% - 32px, 1248px);
    margin-inline: auto;
}

.nora-site-header a,
.nora-footer a,
.nora-home a {
    text-decoration: none;
}

.nora-topbar {
    background: var(--nora-navy);
    color: #d1d5db;
    font-size: 12px;
}

.nora-topbar-inner {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nora-topbar-left,
.nora-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.nora-topbar a {
    color: #d1d5db;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nora-topbar a:hover,
.nora-topbar i {
    color: var(--nora-orange);
}

.nora-topbar-separator {
    color: #4b5563;
}

.nora-dealer-badge {
    background: var(--nora-orange);
    color: #fff !important;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
}

.nora-mainbar {
    background: #fff;
    border-bottom: 1px solid var(--nora-line);
    box-shadow: 0 1px 5px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nora-mainbar-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nora-logo,
.nora-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--nora-navy);
    flex-shrink: 0;
}

.nora-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--nora-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nora-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nora-logo-text strong {
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.nora-logo-text small {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 800;
    margin-top: 3px;
}

.nora-search {
    flex: 1;
    max-width: 675px;
    display: flex;
    margin-inline: auto;
}

.nora-search input {
    width: 100%;
    height: 44px;
    border: 2px solid #e5e7eb;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    padding: 0 18px;
    color: var(--nora-text);
    font-size: 14px;
    outline: 0;
}

.nora-search input:focus {
    border-color: var(--nora-orange);
}

.nora-search button {
    width: 58px;
    border: 0;
    border-radius: 0 8px 8px 0;
    background: var(--nora-orange);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.nora-search button:hover {
    background: var(--nora-orange-dark);
}

.nora-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nora-actions a {
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
}

.nora-actions i {
    font-size: 21px;
}

.nora-actions a:hover {
    color: var(--nora-orange);
}

.nora-cart-items {
    position: relative;
}

.nora-cart-items .navbar-tool {
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
}

.nora-cart-items .navbar-tool-icon-box {
    width: auto;
    height: auto;
    min-width: 0;
    background: transparent !important;
    border: 0;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nora-cart-items .navbar-tool-icon {
    font-family: "FontAwesome" !important;
    font-size: 21px;
    line-height: 1;
}

.nora-cart-items .navbar-tool-icon::before {
    content: "\f07a";
}

.nora-cart-items .navbar-tool-label {
    top: -10px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--nora-orange);
    color: #fff;
    font-size: 10px;
    line-height: 18px;
}

.nora-cart-items .navbar-tool-text {
    display: none !important;
}

.nora-cart-items .navbar-tool-text small {
    font-size: 10px;
}

.nora-cart-items .cart-total-price {
    display: none;
}

.nora-cart-items .cart-dropdown {
    top: calc(100% + 12px) !important;
    right: 0 !important;
    left: auto !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.nora-cart-items:hover .cart-dropdown,
.nora-cart-items .navbar-tool:hover .cart-dropdown {
    display: block;
}

.nora-cart-icon {
    position: relative;
}

.nora-checkout-choice-card {
    border: 1px solid #e5edf8;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.nora-checkout-choice-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    color: var(--nora-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.nora-cart-icon b {
    position: absolute;
    top: -10px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--nora-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.nora-mobile-toggle,
.nora-mobile-search-wrap {
    display: none;
}

.nora-nav {
    background: var(--nora-navy);
    color: #fff;
    position: relative;
    z-index: 40;
}

.nora-nav-inner {
    display: flex;
    align-items: stretch;
}

.nora-all-products {
    width: 220px;
    position: relative;
    flex-shrink: 0;
}

.nora-all-products > button {
    width: 100%;
    height: 44px;
    border: 0;
    background: var(--nora-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.nora-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    border: 1px solid var(--nora-line);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    z-index: 80;
}

.nora-all-products:hover .nora-mega-menu {
    display: block;
}

.nora-mega-row {
    position: relative;
}

.nora-mega-row > a,
.nora-sub-menu a {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: var(--nora-text);
    font-size: 13px;
    border-bottom: 1px solid #f3f4f6;
}

.nora-category-dot {
    color: var(--nora-orange);
}

.nora-row-arrow {
    margin-left: auto;
    color: #cbd5e1;
}

.nora-mega-row > a:hover,
.nora-sub-menu a:hover,
.nora-view-all:hover {
    background: var(--nora-orange);
    color: #fff;
}

.nora-mega-row:hover .nora-sub-menu {
    display: block;
}

.nora-sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 230px;
    background: #fff;
    border: 1px solid var(--nora-line);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.nora-view-all {
    display: block;
    color: var(--nora-orange);
    font-weight: 800;
    padding: 12px 14px;
    text-align: center;
}

.nora-nav-links,
.nora-nav-side {
    display: flex;
    align-items: center;
    min-width: 0;
}

.nora-nav-links a,
.nora-nav-side a {
    height: 44px;
    color: #d1d5db;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.nora-nav-links a:hover,
.nora-nav-side a:hover {
    color: #fff;
}

.nora-nav-side {
    margin-left: auto;
}

.nora-yellow {
    color: #facc15 !important;
    font-weight: 800 !important;
}

.nora-green {
    color: #4ade80 !important;
    font-weight: 800 !important;
}

.nora-cyan {
    color: #22d3ee !important;
    font-weight: 800 !important;
}

.nora-mobile-panel {
    display: none;
}

.nora-home {
    background: #fff;
    padding: 18px 0 0;
}

.nora-home-shell {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.nora-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.nora-sidebar-card {
    border: 1px solid var(--nora-line);
    border-radius: 8px;
    overflow: visible;
    background: #fff;
    margin-bottom: 16px;
}

.nora-sidebar-card h2 {
    margin: 0;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--nora-orange);
    color: #fff;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.nora-sidebar-row {
    position: relative;
}

.nora-sidebar-row > a {
    min-height: 41px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    color: var(--nora-text);
    font-size: 13px;
    border-bottom: 1px solid #f3f4f6;
}

.nora-sidebar-row > a i:first-child {
    color: var(--nora-orange);
    width: 18px;
    text-align: center;
}

.nora-sidebar-row > a i:last-child {
    margin-left: auto;
    color: #cbd5e1;
}

.nora-sidebar-row > a:hover {
    background: var(--nora-orange);
    color: #fff;
    padding-left: 18px;
}

.nora-sidebar-row > a:hover i {
    color: #fff !important;
}

.nora-sidebar-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 240px;
    background: #fff;
    border: 1px solid var(--nora-line);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    z-index: 20;
}

.nora-sidebar-row:hover .nora-sidebar-sub {
    display: block;
}

.nora-sidebar-sub a {
    display: block;
    color: var(--nora-text);
    padding: 10px 14px;
    font-size: 13px;
    border-bottom: 1px solid #f3f4f6;
}

.nora-sidebar-sub a:hover {
    background: var(--nora-orange);
    color: #fff;
}

.nora-side-promo {
    min-height: 120px;
    border-radius: 8px;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 18px;
    margin-bottom: 14px;
}

.nora-side-promo i {
    font-size: 36px;
}

.nora-side-promo strong {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.nora-side-promo span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.nora-side-promo-red {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.nora-side-promo-green {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.nora-home-main {
    flex: 1;
    min-width: 0;
}

.nora-hero-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.nora-slider {
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
    background: #eef2f7;
}

.nora-slides {
    width: 400%;
    height: 100%;
    display: flex;
    animation: nora-slide 18s infinite;
}

.nora-slides a {
    width: 25%;
    height: 100%;
    display: block;
}

.nora-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes nora-slide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

.nora-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--nora-orange);
    font-size: 25px;
}

.nora-slider-prev {
    left: 14px;
}

.nora-slider-next {
    right: 14px;
}

.nora-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.nora-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
}

.nora-slider-dots span:first-child {
    background: var(--nora-orange);
}

.nora-deal-box {
    width: 240px;
    flex-shrink: 0;
    border: 1px solid var(--nora-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.nora-deal-box h2 {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0 12px;
    background: var(--nora-red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.nora-deal-box h2 a {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
}

.nora-deal-box > a {
    display: flex;
    gap: 10px;
    padding: 12px;
    color: var(--nora-text);
    border-bottom: 1px solid #f3f4f6;
}

.nora-deal-box > a:hover {
    background: #fff7ed;
}

.nora-deal-box img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 5px;
    flex-shrink: 0;
}

.nora-deal-box strong {
    display: block;
    color: #1f2937;
    font-size: 11px;
    line-height: 1.25;
}

.nora-deal-box b {
    display: block;
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
}

.nora-section {
    margin-bottom: 34px;
}

.nora-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.nora-section-title h2 {
    margin: 0;
    border-left: 4px solid var(--nora-orange);
    padding-left: 12px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 900;
}

.nora-section-title a {
    color: var(--nora-orange);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.nora-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.nora-product-card {
    min-height: 306px;
    border: 1px solid var(--nora-line);
    background: #fff;
    color: var(--nora-text);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nora-product-card:hover {
    border-color: var(--nora-orange);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.15);
    transform: translateY(-3px);
}

.nora-product-image {
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.nora-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nora-product-info {
    border-top: 1px solid #f3f4f6;
    padding: 10px 10px 2px;
    min-height: 58px;
}

.nora-product-info strong {
    color: #374151;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nora-product-price {
    color: var(--nora-orange);
    padding: 5px 10px 8px;
    font-size: 15px;
    font-weight: 900;
    margin-top: auto;
}

.nora-card-cart-form {
    padding: 0 10px 12px;
}

.nora-card-cart-button {
    width: 100%;
    min-height: 36px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--nora-orange), #ff8c00);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.nora-card-cart-button:hover {
    background: linear-gradient(135deg, var(--nora-orange-dark), var(--nora-orange));
}

.nora-card-cart-button:active {
    transform: scale(0.98);
}

.nora-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.nora-brand-grid a {
    min-height: 58px;
    border: 1px solid var(--nora-line);
    border-radius: 8px;
    color: var(--nora-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    background: #fff;
}

.nora-brand-grid a:hover {
    border-color: var(--nora-orange);
    color: var(--nora-orange);
}

.nora-dealer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--nora-navy), #252545);
    border-radius: 10px;
    padding: 26px;
    margin-bottom: 34px;
}

.nora-dealer-cta h2 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 900;
}

.nora-dealer-cta p {
    margin: 0;
    color: #d1d5db;
}

.nora-dealer-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nora-dealer-stats span {
    display: grid;
    gap: 2px;
    color: #cbd5e1;
    font-size: 12px;
}

.nora-dealer-stats strong {
    color: var(--nora-orange);
    font-size: 22px;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
}

.nora-dealer-cta div:last-child {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nora-dealer-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    padding: 11px 16px;
    color: #fff;
    background: var(--nora-orange);
    font-weight: 900;
}

.nora-dealer-cta a:last-child {
    background: #fff;
    color: var(--nora-navy);
}

.nora-why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.nora-why-grid div {
    border: 1px solid #eef2f7;
    border-radius: 8px;
    background: #fff;
    padding: 18px 14px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nora-why-grid div:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.nora-why-grid i {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #fff0e6;
    color: var(--nora-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.nora-why-grid strong {
    display: block;
    color: #1f2937;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 6px;
}

.nora-why-grid span {
    display: block;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.45;
}

.nora-brand-band {
    background: #f9fafb;
    border-top: 1px solid var(--nora-line);
    border-bottom: 1px solid var(--nora-line);
    padding: 24px 0;
}

.nora-brand-band .nora-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.nora-brand-band .nora-container:hover {
    filter: grayscale(0);
    opacity: 1;
}

.nora-brand-band a {
    color: #6b7280;
    font-family: "Nunito", sans-serif;
    font-size: 23px;
    font-weight: 900;
}

.nora-brand-band a:hover {
    color: var(--nora-orange);
}

.nora-service-band {
    background: #f9fafb;
    border-top: 1px solid var(--nora-line);
    border-bottom: 1px solid var(--nora-line);
    padding: 22px 0;
}

.nora-service-band .nora-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nora-service-band div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1f2937;
    font-weight: 900;
}

.nora-service-band i {
    color: var(--nora-orange);
    font-size: 22px;
}

.nora-footer-main {
    background: var(--nora-navy);
    color: #9ca3af;
    padding: 42px 0 34px;
}

.nora-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 36px;
}

.nora-footer-logo {
    color: #fff;
    margin-bottom: 16px;
}

.nora-footer-about p {
    margin: 0 0 18px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.nora-footer-contact {
    display: grid;
    gap: 9px;
}

.nora-footer-contact a,
.nora-footer-contact span {
    color: #cbd5e1;
    font-size: 13px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.nora-footer-contact i {
    color: var(--nora-orange);
    margin-top: 2px;
}

.nora-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.nora-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #374151;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nora-socials a:hover {
    background: var(--nora-orange);
    color: #fff;
}

.nora-footer h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 0 0 14px;
    border-bottom: 1px solid #374151;
}

.nora-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.nora-footer li a {
    color: #cbd5e1;
    font-size: 13px;
}

.nora-footer li a:hover {
    color: var(--nora-orange);
    padding-left: 4px;
}

.nora-best-ticker {
    background: var(--nora-orange);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
}

.nora-best-ticker .nora-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nora-best-ticker strong {
    background: var(--nora-orange-dark);
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
}

.nora-ticker-viewport {
    flex: 1;
    overflow: hidden;
}

.nora-ticker-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: nora-ticker 38s linear infinite;
}

.nora-ticker-track:hover {
    animation-play-state: paused;
}

.nora-ticker-track a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.nora-ticker-track i {
    font-size: 5px;
}

.nora-ticker-track b {
    color: #fff7ed;
}

@keyframes nora-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.nora-footer-bottom {
    background: #111122;
    color: #9ca3af;
    font-size: 12px;
}

.nora-footer-bottom .nora-container {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.btn--primary,
.btn-primary,
.search_button,
.badge-primary,
.for-discount-value,
.for-discoutn-value {
    background-color: var(--nora-orange) !important;
    border-color: var(--nora-orange) !important;
}

.text-primary,
.web-text-primary,
.product-price,
.text-accent {
    color: var(--nora-orange) !important;
}

@media (max-width: 1199px) {
    .nora-deal-box {
        display: none;
    }

    .nora-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .nora-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .nora-why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nora-nav-side {
        display: none;
    }
}

@media (max-width: 991px) {
    .nora-topbar-right a:not(.nora-dealer-badge),
    .nora-nav,
    .nora-sidebar,
    .nora-actions a:nth-child(1),
    .nora-actions a:nth-child(2),
    .nora-mainbar-inner > .nora-search {
        display: none;
    }

    .nora-mainbar-inner {
        min-height: 68px;
        gap: 14px;
    }

    .nora-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--nora-text);
        font-size: 22px;
        margin-left: auto;
    }

    .nora-mobile-search-wrap {
        display: block;
        padding-bottom: 12px;
    }

    .nora-search-mobile {
        display: flex;
        max-width: none;
        margin: 0;
    }

    .nora-home-shell {
        display: block;
    }

    .nora-slider {
        height: 260px;
    }

    .nora-mobile-panel {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1000;
    }

    .nora-mobile-panel.is-open {
        display: block;
    }

    .nora-mobile-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.48);
    }

    .nora-mobile-drawer {
        position: absolute;
        inset: 0 auto 0 0;
        width: min(82vw, 330px);
        background: #fff;
        box-shadow: 14px 0 40px rgba(15, 23, 42, 0.25);
    }

    .nora-mobile-title {
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        background: var(--nora-navy);
        color: #fff;
        font-family: "Nunito", sans-serif;
        font-weight: 900;
    }

    .nora-mobile-title button {
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 20px;
    }

    .nora-mobile-scroll {
        height: calc(100vh - 58px);
        overflow-y: auto;
        padding: 10px;
    }

    .nora-mobile-scroll p {
        color: #9ca3af;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        margin: 8px 10px;
    }

    .nora-mobile-scroll a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--nora-text);
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 14px;
    }

    .nora-mobile-scroll a:hover {
        background: #fff7ed;
        color: var(--nora-orange);
    }

    body.nora-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .nora-container {
        width: min(100% - 20px, 1248px);
    }

    .nora-topbar-left {
        gap: 8px;
    }

    .nora-topbar-separator,
    .nora-dealer-badge {
        display: none !important;
    }

    .nora-logo-text strong {
        font-size: 20px;
    }

    .nora-actions {
        gap: 8px;
    }

    .nora-slider {
        height: 170px;
    }

    .nora-slides img {
        object-fit: contain;
        background: #f8fafc;
    }

    .nora-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nora-brand-grid,
    .nora-service-band .nora-container,
    .nora-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nora-footer-grid {
        grid-template-columns: 1fr;
    }

    .nora-dealer-cta {
        display: block;
        padding: 20px;
    }

    .nora-dealer-cta h2 {
        font-size: 22px;
    }

    .nora-dealer-cta div:last-child {
        margin-top: 16px;
    }

    .nora-dealer-stats {
        margin-top: 16px;
    }

    .nora-best-ticker .nora-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .nora-footer-bottom .nora-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 12px 0;
    }
}
