:root {
--hdr-height: 72px;
--hdr-top-height: 36px;
--hdr-total: calc(var(--hdr-top-height) + var(--hdr-height));
--hdr-bg: #ffffff;
--hdr-bg-glass: rgba(255, 255, 255, 0.92);
--hdr-ink: #0c1a2e;
--hdr-ink-2: #1e293b;
--hdr-ink-3: #475569;
--hdr-muted: #64748b;
--hdr-brand: #0b57d0;
--hdr-brand-hover: #1a66e0;
--hdr-brand-ghost: rgba(11, 87, 208, 0.07);
--hdr-cyan: #06b6d4;
--hdr-border: #e8ecf2;
--hdr-border-soft: rgba(0, 0, 0, 0.06);
--hdr-radius: 12px;
--hdr-ease: cubic-bezier(0.22, 1, 0.36, 1);
--hdr-dur: 0.28s;
--hdr-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
--hdr-font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
--hdr-shadow: 0 4px 24px -4px rgba(12, 26, 46, 0.08);
--hdr-shadow-mega: 0 20px 48px -8px rgba(12, 26, 46, 0.13);
--hdr-container: 1340px;
} .nw-topbar {
position: relative;
z-index: 1001;
height: var(--hdr-top-height);
background: var(--hdr-ink);
color: rgba(255, 255, 255, 0.78);
font-family: var(--hdr-font);
font-size: 0.74rem;
font-weight: 500;
letter-spacing: 0.01em;
overflow: hidden;
transition: height var(--hdr-dur) var(--hdr-ease),
opacity var(--hdr-dur) var(--hdr-ease);
}
.nw-topbar__inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
max-width: var(--hdr-container);
margin: 0 auto;
padding: 0 clamp(16px, 2.5vw, 28px);
gap: 16px;
}
.nw-topbar__left,
.nw-topbar__right {
display: flex;
align-items: center;
gap: 18px;
}
.nw-topbar__item {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.72);
text-decoration: none;
transition: color var(--hdr-dur) var(--hdr-ease);
white-space: nowrap;
}
.nw-topbar__item:hover {
color: #fff;
}
.nw-topbar__item svg {
width: 13px;
height: 13px;
opacity: 0.6;
flex-shrink: 0;
}
.nw-topbar__sep {
width: 1px;
height: 12px;
background: rgba(255, 255, 255, 0.15);
} body.header-scrolled .nw-topbar {
height: 0;
opacity: 0;
pointer-events: none;
} #masthead.site-header {
position: sticky;
top: 0;
z-index: 999;
background: var(--hdr-bg);
border-bottom: 1px solid var(--hdr-border);
box-shadow: none;
transition: background-color 0.4s var(--hdr-ease),
box-shadow 0.4s var(--hdr-ease),
border-color 0.4s var(--hdr-ease);
font-family: var(--hdr-font);
}
body.header-scrolled #masthead.site-header {
background: var(--hdr-bg-glass);
backdrop-filter: saturate(180%) blur(16px);
-webkit-backdrop-filter: saturate(180%) blur(16px);
box-shadow: var(--hdr-shadow);
border-color: transparent;
} #masthead .nw-header {
width: 100%;
max-width: var(--hdr-container);
margin: 0 auto;
padding: 0 clamp(16px, 2.5vw, 28px);
}
#masthead .nw-header__inner {
min-height: var(--hdr-height);
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
} #masthead .nw-header__brand {
display: flex;
align-items: center;
flex: 0 0 auto;
gap: 14px;
text-decoration: none;
}
#masthead .nw-header__brand .custom-logo-link {
display: inline-flex;
align-items: center;
}
#masthead .nw-header__brand img {
width: auto;
max-height: 38px;
transition: opacity var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-header__brand:hover img {
opacity: 0.85;
}
#masthead .nw-header__title {
color: var(--hdr-ink);
text-decoration: none;
font-family: var(--hdr-font-display);
font-weight: 800;
font-size: 1.1rem;
letter-spacing: -0.02em;
} #masthead .nw-header__nav {
flex: 1 1 auto;
min-width: 0;
display: flex;
align-items: center;
justify-content: flex-end;
}
#masthead .nw-menu,
#masthead .nw-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
#masthead .nw-menu {
display: flex;
align-items: center;
gap: 2px;
justify-content: center; } #masthead .nw-menu > li {
position: relative;
} #masthead .nw-menu > li.menu-item-has-children {
padding-bottom: 18px;
margin-bottom: -18px;
}
#masthead .nw-menu > li > a {
display: inline-flex;
align-items: center;
gap: 5px;
color: var(--hdr-ink-2);
text-decoration: none;
font-family: var(--hdr-font);
font-size: 0.88rem;
line-height: 1;
font-weight: 600;
padding: 10px 14px;
border-radius: 10px;
white-space: nowrap;
position: relative;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > a::after {
content: '';
position: absolute;
bottom: 2px;
left: 14px;
right: 14px;
height: 2px;
background: var(--hdr-brand);
border-radius: 2px;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.35s var(--hdr-ease);
}
#masthead .nw-menu > li > a:hover::after,
#masthead .nw-menu > li.current-menu-item > a::after,
#masthead .nw-menu > li.current-menu-ancestor > a::after {
transform: scaleX(1);
} html.translated-ltr #masthead .nw-header__inner {
gap: 12px;
}
html.translated-ltr #masthead .nw-menu > li > a {
padding: 10px 8px;
font-size: 0.83rem;
letter-spacing: -0.01em;
}
html.translated-ltr #masthead .nw-menu > li > a::after {
left: 8px;
right: 8px;
} @media (min-width: 1081px) and (max-width: 1280px) {
#masthead .nw-header__inner {
gap: 12px;
}
#masthead .nw-menu > li > a {
padding: 10px 10px;
font-size: 0.84rem;
letter-spacing: -0.01em;
}
#masthead .nw-menu > li > a::after {
left: 10px;
right: 10px;
}
}
#masthead .nw-menu > li > a:hover {
color: var(--hdr-brand);
background: transparent;
}
#masthead .nw-menu > li.current-menu-item > a,
#masthead .nw-menu > li.current-menu-ancestor > a {
color: var(--hdr-brand);
} #masthead .sf-with-ul::after,
#masthead .nw-menu .sf-with-ul::after,
#masthead .nw-menu a.sf-with-ul::after,
#masthead .sf-arrows .sf-with-ul::after,
#masthead .sf-arrows ul .sf-with-ul::after,
#masthead .nw-menu .caret,
#masthead .nw-menu .sf-sub-indicator,
#masthead .nw-menu > li > a > .caret,
#masthead .nw-menu > li > a > .sub-arrow,
#masthead .nw-menu > li > a > i,
#masthead .nw-menu > li > a > svg,
#masthead .nw-menu > li > button,
#masthead .nw-menu .dropdown-toggle,
#masthead .nw-menu > li.menu-item-has-children > a > span.caret {
display: none !important;
width: 0 !important;
height: 0 !important;
border: none !important;
content: none !important;
visibility: hidden !important;
font-size: 0 !important;
line-height: 0 !important;
overflow: hidden !important;
} #masthead .nw-menu > li.menu-item-has-children > a {
padding-right: 20px;
}
#masthead .nw-menu > li.menu-item-has-children > a::before {
content: '' !important;
display: block !important;
position: absolute;
right: 6px;
top: 50%;
width: 7px;
height: 7px;
transform: translateY(-50%);
background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
opacity: 0.5;
transition: transform 0.25s var(--hdr-ease), opacity 0.25s;
}
#masthead .nw-menu > li.menu-item-has-children:hover > a::before {
transform: translateY(-50%) rotate(180deg);
opacity: 0.8;
} @media (min-width: 1081px) { #masthead .nw-menu > li.menu-item-has-children {
position: static;
}
#masthead .nw-menu > li > .sub-menu {
position: absolute;
left: 0;
right: 0;
top: 100%;
transform: none;
width: 100%;
display: none;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 0;
padding: 0;
border-radius: 0 0 14px 14px;
background: var(--hdr-bg);
border: none;
border-top: 1px solid var(--hdr-border);
box-shadow: var(--hdr-shadow-mega);
opacity: 0;
overflow: hidden;
transition: opacity 0.15s ease;
pointer-events: none;
}
#masthead .nw-menu > li:hover > .sub-menu,
#masthead .nw-menu > li:focus-within > .sub-menu {
display: grid;
opacity: 1;
pointer-events: auto;
} #masthead .nw-menu > li > .sub-menu > li {
padding: 24px 24px 20px;
border-right: 1px solid var(--hdr-border);
transition: background-color var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-menu > li > .sub-menu > li:last-child {
border-right: none;
}
#masthead .nw-menu > li > .sub-menu > li:hover {
background: #f8fafc;
} #masthead .nw-mega-preview-pane {
position: absolute;
right: 0;
left: auto;
top: 0;
bottom: 0;
width: 360px; background: var(--hdr-bg);
box-shadow: -15px 0 40px rgba(0,0,0,0.08); border-left: 1px solid var(--hdr-border);
border-right: none;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
z-index: 10; opacity: 0;
visibility: hidden;
transform: translateX(20px);
transition: opacity 0.3s var(--hdr-ease), transform 0.3s var(--hdr-ease), visibility 0.3s;
pointer-events: none;
will-change: transform, opacity; } #masthead .nw-mega-preview-pane.is-left {
right: auto;
left: 0;
border-left: none;
border-right: 1px solid var(--hdr-border);
box-shadow: 15px 0 40px rgba(0,0,0,0.08); transform: translateX(-20px); }
#masthead .nw-mega-preview-pane.is-visible {
opacity: 1;
visibility: visible;
transform: translateX(0);
pointer-events: auto;
}
.nw-mega-preview-img-wrapper {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
background: #f1f5f9; overflow: hidden;
} @keyframes nwShimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.nw-mega-preview-img-wrapper::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
animation: nwShimmer 1.5s infinite linear;
z-index: 0;
}
.nw-mega-preview-img-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transform: scale(1.05);
transition: opacity 0.4s var(--hdr-ease), transform 0.4s var(--hdr-ease);
will-change: transform, opacity; z-index: 1;
}
.nw-mega-preview-img-wrapper img.active {
opacity: 1;
transform: scale(1);
} .nw-mega-preview-img-wrapper::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
pointer-events: none;
}
.nw-mega-preview-title {
position: absolute;
bottom: 24px;
left: 24px;
right: 24px;
color: #fff;
font-family: var(--hdr-font-display);
font-size: 1.1rem;
font-weight: 700;
letter-spacing: -0.01em;
z-index: 2;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
opacity: 0;
transform: translateY(10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.nw-mega-preview-title.active {
opacity: 1;
transform: translateY(0);
} #masthead .nw-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 2px solid var(--hdr-border);
color: var(--hdr-ink);
text-decoration: none;
font-family: var(--hdr-font-display);
font-size: 0.78rem;
line-height: 1.3;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > .sub-menu > li > a::before,
#masthead .nw-menu > li > .sub-menu > li > a::after {
display: none !important;
content: none !important;
}
#masthead .nw-menu > li > .sub-menu > li:hover > a {
color: var(--hdr-brand);
border-bottom-color: var(--hdr-brand);
} #masthead .nw-menu > li > .sub-menu > li > .sub-menu {
display: flex !important;
flex-direction: column;
gap: 2px;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
gap: 6px;
color: var(--hdr-ink-3);
text-decoration: none;
font-size: 0.86rem;
line-height: 1.4;
font-weight: 500;
padding: 7px 8px;
border-radius: 8px;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a::before,
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a::after {
display: none !important;
content: none !important;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
color: var(--hdr-brand);
background: var(--hdr-brand-ghost);
}
} .nw-header__actions {
display: flex;
align-items: center;
gap: 10px;
flex: 0 0 auto;
margin-left: 6px;
} .nw-header__search-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 1px solid var(--hdr-border);
border-radius: 10px;
background: transparent;
color: var(--hdr-ink-3);
cursor: pointer;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
padding: 0;
}
.nw-header__search-toggle svg {
width: 18px;
height: 18px;
}
.nw-header__search-toggle:hover {
color: var(--hdr-brand);
background: var(--hdr-brand-ghost);
border-color: rgba(11, 87, 208, 0.2);
} .nw-header__cta {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 8px 16px;
background: var(--hdr-ink);
color: #fff;
font-family: var(--hdr-font);
font-size: 0.84rem;
font-weight: 600;
text-decoration: none;
border-radius: 20px;
border: none;
cursor: pointer;
white-space: normal;
max-width: 130px;
text-align: left;
line-height: 1.2;
transition: background-color var(--hdr-dur) var(--hdr-ease),
transform var(--hdr-dur) var(--hdr-ease),
box-shadow var(--hdr-dur) var(--hdr-ease);
}
.nw-cta-text {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} @media (min-width: 1081px) and (max-width: 1240px) {
.nw-header__cta {
padding: 10px;
border-radius: 50%;
max-width: 40px;
}
.nw-cta-text {
display: none;
}
}
.nw-header__cta:hover {
background: var(--hdr-brand);
transform: translateY(-1px);
box-shadow: 0 8px 20px -6px rgba(11, 87, 208, 0.45);
color: #fff;
}
.nw-header__cta svg {
width: 14px;
height: 14px;
flex-shrink: 0;
transition: transform 0.3s var(--hdr-ease);
}
.nw-header__cta:hover svg {
transform: translateX(2px);
} .nw-search-overlay {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(10, 22, 40, 0.88);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 18vh;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s var(--hdr-ease),
visibility 0.35s;
}
.nw-search-overlay.is-open {
opacity: 1;
visibility: visible;
}
.nw-search-overlay__inner {
width: min(640px, calc(100% - 48px));
transform: translateY(16px);
transition: transform 0.4s var(--hdr-ease);
}
.nw-search-overlay.is-open .nw-search-overlay__inner {
transform: none;
}
.nw-search-overlay__field {
position: relative;
}
.nw-search-overlay__field input {
width: 100%;
height: 64px;
padding: 0 60px 0 28px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 16px;
color: #fff;
font-family: var(--hdr-font-display);
font-size: 1.3rem;
font-weight: 500;
outline: none;
transition: border-color 0.3s var(--hdr-ease),
background-color 0.3s var(--hdr-ease);
}
.nw-search-overlay__field input::placeholder {
color: rgba(255, 255, 255, 0.45);
}
.nw-search-overlay__field input:focus {
border-color: var(--hdr-cyan);
background: rgba(255, 255, 255, 0.14);
}
.nw-search-overlay__close {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
border: none;
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
display: grid;
place-items: center;
transition: background-color 0.2s, color 0.2s;
padding: 0;
}
.nw-search-overlay__close:hover {
background: rgba(255, 255, 255, 0.16);
color: #fff;
}
.nw-search-overlay__close svg {
width: 18px;
height: 18px;
}
.nw-search-overlay__hint {
margin-top: 16px;
text-align: center;
color: rgba(255, 255, 255, 0.4);
font-size: 0.82rem;
font-weight: 500;
}
.nw-search-overlay__hint kbd {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 24px;
padding: 2px 7px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.6);
font-family: inherit;
font-size: 0.72rem;
margin: 0 2px;
} #masthead .nw-header__toggle {
display: none;
width: 44px;
height: 44px;
border: 2px solid var(--hdr-ink);
background: transparent;
border-radius: 10px;
cursor: pointer;
padding: 0;
position: relative;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
transition: background-color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-header__toggle:hover {
background: var(--hdr-ink);
}
#masthead .nw-header__toggle:hover span[aria-hidden="true"] {
background: #fff;
} #masthead .nw-header__toggle span[aria-hidden="true"] {
display: block;
width: 20px;
height: 2.5px;
background: var(--hdr-ink);
border-radius: 2px;
transition: transform 0.3s var(--hdr-ease),
opacity 0.3s var(--hdr-ease),
background-color 0.2s;
} #masthead .nw-header__toggle.is-active {
background: var(--hdr-ink);
}
#masthead .nw-header__toggle.is-active span[aria-hidden="true"] {
background: #fff;
}
#masthead .nw-header__toggle.is-active span:nth-child(1) {
transform: translateY(7.5px) rotate(45deg);
}
#masthead .nw-header__toggle.is-active span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}
#masthead .nw-header__toggle.is-active span:nth-child(3) {
transform: translateY(-7.5px) rotate(-45deg);
} @media (max-width: 1080px) {
.nw-topbar { height: auto; min-height: 32px; }
.nw-topbar__inner { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 6px 12px; }
.nw-topbar__left { display: none; }
.nw-topbar__right { justify-content: center; }
#masthead .nw-header__inner {
min-height: 60px;
gap: 10px;
}
#masthead .nw-header__toggle {
display: flex;
order: 99;
}
.nw-header__cta { display: none; }
.nw-header__search-toggle {
width: 38px;
height: 38px;
}
#masthead .nw-header__nav {
display: none;
position: fixed;
top: 0;
right: 0;
width: min(380px, 85vw);
height: 100vh;
height: 100dvh;
background: var(--hdr-bg);
border-left: 1px solid var(--hdr-border);
box-shadow: -16px 0 48px rgba(12, 26, 46, 0.12);
padding: 20px;
padding-top: 80px;
overflow-y: auto;
overscroll-behavior: contain;
z-index: 1000;
transform: translateX(100%);
transition: transform 0.4s var(--hdr-ease);
}
#masthead .nw-header__nav.is-open {
display: block;
transform: translateX(0);
} .nw-mobile-backdrop {
position: fixed;
inset: 0;
background: rgba(10, 22, 40, 0.4);
z-index: 998;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s, visibility 0.35s;
}
.nw-mobile-backdrop.is-visible {
opacity: 1;
visibility: visible;
}
#masthead .nw-menu {
flex-direction: column;
align-items: stretch;
gap: 2px;
}
#masthead .nw-menu > li > a {
padding: 14px 12px;
font-size: 0.95rem;
border-radius: 10px;
}
#masthead .nw-menu > li > a::after {
display: none;
}
#masthead .nw-menu > li > a::before {
display: none;
} #masthead .nw-menu .sub-menu {
margin-top: 4px;
margin-left: 8px;
padding-left: 14px;
border-left: 2px solid var(--hdr-border);
}
#masthead .nw-menu .sub-menu li a {
display: block;
padding: 11px 10px;
color: var(--hdr-ink-3);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
border-radius: 8px;
transition: background-color var(--hdr-dur) var(--hdr-ease),
color var(--hdr-dur) var(--hdr-ease),
padding-left var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-menu .sub-menu li a:hover {
background: var(--hdr-brand-ghost);
color: var(--hdr-brand);
padding-left: 16px;
} .nw-mobile-cta {
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--hdr-border);
}
.nw-mobile-cta a {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 14px 20px;
background: var(--hdr-ink);
color: #fff;
font-family: var(--hdr-font);
font-size: 0.92rem;
font-weight: 600;
text-decoration: none;
border-radius: 12px;
transition: background-color 0.3s var(--hdr-ease);
}
.nw-mobile-cta a:hover {
background: var(--hdr-brand);
}
} #masthead .container,
#masthead .navbar,
#masthead .header-inner,
#masthead .site-header-inner,
#masthead .header-content,
#masthead .site-branding {
all: unset !important;
display: contents !important;
}
#masthead .navbar-toggle,
#masthead .menu-toggle,
#masthead .hamburger,
#masthead #primary-menu-toggle {
display: none !important;
} #masthead .sf-arrows .sf-with-ul::after,
#masthead .sf-arrows ul .sf-with-ul::after,
#masthead .nw-menu a.sf-with-ul::after {
display: none !important;
content: none !important;
} #masthead .nw-header__nav .nw-menu {
display: flex !important;
}
@media (max-width: 1080px) {
#masthead .nw-header__nav .nw-menu {
display: flex !important;
flex-direction: column !important;
}
}  #masthead .nw-menu .gt_switcher,
#masthead .nw-menu .gt_switcher-popup,
#masthead .nw-menu .gtranslate_wrapper,
#masthead .nw-menu [class*="gt_"],
#masthead .nw-menu li:has(.gt_switcher),
#masthead .nw-menu li:has(.gtranslate_wrapper),
#masthead .nw-menu li:has(.gt_switcher-popup) {
display: none !important;
} body > .gt_switcher_wrapper,
body > .gtranslate_wrapper:not(.nw-topbar__gt),
#gt-nvframe {
display: none !important;
} .nw-topbar__gt {
display: inline-flex;
align-items: center;
gap: 8px;
}
.nw-topbar__gt .gt_switcher {
position: relative;
}
.nw-topbar__gt a.gt_switcher-popup,
.nw-topbar__gt .glink {
display: inline-flex !important;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.8) !important;
text-decoration: none !important;
font-size: 0.74rem !important;
font-weight: 500 !important;
padding: 3px 8px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(255, 255, 255, 0.06);
transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.nw-topbar__gt a.gt_switcher-popup:hover,
.nw-topbar__gt .glink:hover {
background: rgba(255, 255, 255, 0.12) !important;
border-color: rgba(255, 255, 255, 0.22);
color: #fff !important;
}
.nw-topbar__gt img {
width: 18px !important;
height: 14px !important;
border-radius: 2px;
object-fit: cover;
vertical-align: middle;
} .nw-topbar__gt .gt_switcher .gt_option {
background: var(--hdr-ink) !important;
border: 1px solid rgba(255, 255, 255, 0.12) !important;
border-radius: 8px !important;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
padding: 6px !important;
min-width: 140px;
}
.nw-topbar__gt .gt_switcher .gt_option a {
display: flex !important;
align-items: center;
gap: 8px;
padding: 7px 10px !important;
color: rgba(255, 255, 255, 0.8) !important;
font-size: 0.78rem !important;
border-radius: 6px;
transition: background-color 0.15s;
}
.nw-topbar__gt .gt_switcher .gt_option a:hover {
background: rgba(255, 255, 255, 0.1) !important;
color: #fff !important;
}
.nw-topbar__gt .gt_switcher .gt_option a img {
width: 20px !important;
height: 15px !important;
border-radius: 2px;
}  #masthead .nw-menu > li {
flex-shrink: 1;
min-width: 0; }
#masthead .nw-menu > li > a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
}  .nw-topbar__item {
max-width: 220px;
overflow: hidden;
text-overflow: ellipsis;
} @media (min-width: 1081px) {
#masthead .nw-menu > li > .sub-menu > li > a {
word-break: break-word;
hyphens: auto;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a {
word-break: break-word;
hyphens: auto;
}
} #masthead .nw-header__inner {
flex-wrap: nowrap;
overflow: visible;
} @media print {
.nw-topbar,
#masthead.site-header { display: none !important; }
}.nawis-mini-finder {
margin: clamp(24px, 4vw, 42px) 0;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
.nawis-mini-finder__head {
margin-bottom: 14px;
}
.nawis-mini-finder__head h2 {
margin: 0 0 6px;
font-family: "Sora", system-ui, sans-serif;
font-size: clamp(1.25rem, 2.3vw, 1.6rem);
letter-spacing: -0.02em;
color: var(--nw-slate-900, #0f172a);
}
.nawis-mini-finder__head p {
margin: 0;
color: var(--nw-slate-700, #334155);
} .nawis-mini-finder .urun-bulucu-seo-header {
display: none !important;
} .nawis-mini-finder .modern-form {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 0 !important;
border-radius: 14px !important;
box-shadow: none !important;
border: 0 !important;
background: transparent !important;
}
.nawis-mini-finder .form-row {
gap: 12px !important;
margin-bottom: 10px !important;
}
.nawis-mini-finder .form-group {
flex: 1 1 220px !important;
}
.nawis-mini-finder .form-group label {
font-size: 0.85rem !important;
color: var(--nw-slate-700, #334155) !important;
}
.nawis-mini-finder .form-group input,
.nawis-mini-finder .form-group select {
min-height: 44px !important;
border-radius: 10px !important;
font-size: 0.94rem !important;
background: #ffffff !important;
border: 1px solid rgba(148, 163, 184, 0.45) !important;
}
.nawis-mini-finder .form-button-container {
margin-top: 10px !important;
}
.nawis-mini-finder .form-button-container button {
min-height: 46px !important;
border-radius: 10px !important;
font-size: 0.95rem !important;
}
.nawis-mini-finder .loading-screen {
border-radius: 12px !important;
} .nawis-mini-finder .result-container {
margin: 18px 0 0 !important;
padding: 0 !important;
}
.nawis-mini-finder .user-input {
margin-bottom: 12px !important;
padding: 14px !important;
border-radius: 12px !important;
box-shadow: none !important;
border: 1px solid rgba(148, 163, 184, 0.32) !important;
background: #ffffff !important;
}
.nawis-mini-finder .user-input h4 {
margin-bottom: 10px !important;
padding-bottom: 8px !important;
font-size: 1rem !important;
}
.nawis-mini-finder .user-input p {
flex: 1 1 180px !important;
margin: 0 !important;
padding: 9px 11px !important;
font-size: 0.9rem !important;
}
.nawis-mini-finder .result-card {
display: grid !important;
grid-template-columns: minmax(84px, 110px) minmax(0, 1fr) auto;
align-items: center !important;
gap: 12px !important;
margin: 0 0 12px !important;
padding: 18px 16px 16px !important;
min-height: 0 !important;
border-radius: 14px !important;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
}
.nawis-mini-finder .result-card img {
width: 100% !important;
max-width: 100px !important;
margin: 0 !important;
}
.nawis-mini-finder .result-info {
text-align: left !important;
}
.nawis-mini-finder .result-info h3 {
margin: 0 0 6px !important;
font-size: 1.02rem !important;
}
.nawis-mini-finder .result-info p {
font-size: 0.88rem !important;
}
.nawis-mini-finder .button-container {
align-items: flex-end !important;
gap: 6px !important;
margin-top: 4px !important;
}
.nawis-mini-finder .button {
margin-top: 0 !important;
padding: 10px 14px !important;
font-size: 0.82rem !important;
border-radius: 10px !important;
color: #ffffff !important;
text-decoration: none !important;
line-height: 1.2 !important;
}
.nawis-mini-finder .button.secondary {
color: var(--nw-blue, #0066ff) !important;
background: #ffffff !important;
}
.nawis-mini-finder .button.back-button {
color: var(--nw-slate-900, #0f172a) !important;
background: #f8fafc !important;
border: 1px solid rgba(148, 163, 184, 0.5) !important;
}
.nawis-mini-finder .result-number {
top: 8px !important;
left: 8px !important;
}
.nawis-mini-finder .recommended-badge {
top: 8px !important;
right: 8px !important;
z-index: 6 !important;
}
.nawis-mini-finder .result-card.recommended-motor {
padding-top: 52px !important;
}
@media (max-width: 640px) {
.nawis-mini-finder {
padding: 0;
border-radius: 0;
}
.nawis-mini-finder .modern-form {
padding: 0 !important;
}
.nawis-mini-finder .result-card {
grid-template-columns: 1fr !important;
padding-top: 34px !important;
}
.nawis-mini-finder .result-card img {
max-width: 92px !important;
margin-bottom: 4px !important;
}
.nawis-mini-finder .button-container {
align-items: stretch !important;
width: 100%;
}
.nawis-mini-finder .button {
width: 100%;
text-align: center;
}
} .nawis-energy-calc {
margin: clamp(28px, 4.5vw, 48px) 0;
}
.nawis-energy-calc__head {
margin-bottom: 14px;
}
.nawis-energy-calc__head h2 {
margin: 0 0 6px;
font-family: "Sora", system-ui, sans-serif;
font-size: clamp(1.2rem, 2.2vw, 1.55rem);
letter-spacing: -0.02em;
color: var(--nw-slate-900, #0f172a);
}
.nawis-energy-calc__head p {
margin: 0;
color: var(--nw-slate-700, #334155);
}
.nawis-energy-calc__panel {
border: 1px solid rgba(148, 163, 184, 0.35);
background: #ffffff;
border-radius: 14px;
padding: clamp(14px, 2.6vw, 22px);
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.nawis-energy-calc__top {
display: grid;
grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
gap: 14px;
align-items: end;
}
.nawis-energy-calc__field {
display: grid;
gap: 6px;
}
.nawis-energy-calc__field span {
font-size: 0.82rem;
font-weight: 600;
color: var(--nw-slate-700, #334155);
}
.nawis-energy-calc__field select {
min-height: 44px;
border-radius: 10px;
border: 1px solid rgba(148, 163, 184, 0.45);
background: #fff;
padding: 0 12px;
font-size: 0.94rem;
color: #0f172a;
}
.nawis-energy-calc__meta {
display: grid;
gap: 6px;
font-size: 0.92rem;
color: #1e293b;
}
.nawis-energy-calc__slider-wrap {
margin-top: 14px;
}
.nawis-energy-calc__slider-wrap input[type="range"] {
width: 100%;
accent-color: var(--nw-blue, #0066ff);
cursor: pointer;
}
.nawis-energy-calc__zones {
margin-top: 12px;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
}
.nawis-energy-calc__zones span {
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 999px;
min-height: 34px;
display: grid;
place-items: center;
text-align: center;
font-size: 0.78rem;
color: #475569;
background: #f8fafc;
transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.nawis-energy-calc__zones .is-active {
color: #fff;
border-color: transparent;
background: linear-gradient(135deg, #0066ff, #06b6d4);
}
.nawis-energy-calc__batteries {
margin-top: 12px;
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 8px;
}
.nawis-energy-calc__battery {
border: 1px solid rgba(148, 163, 184, 0.45);
background: #fff;
color: #0f172a;
border-radius: 10px;
min-height: 40px;
font-size: 0.84rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.nawis-energy-calc__battery:hover {
transform: translateY(-1px);
border-color: rgba(0, 102, 255, 0.45);
}
.nawis-energy-calc__battery.is-active {
background: linear-gradient(135deg, #0066ff, #06b6d4);
color: #fff;
border-color: transparent;
}
.nawis-energy-calc__result {
margin-top: 14px;
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 12px;
padding: 12px;
background: #f8fafc;
}
.nawis-energy-calc__result-label {
font-size: 0.8rem;
color: #475569;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.nawis-energy-calc__result-value {
margin-top: 4px;
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-weight: 800;
color: #0f172a;
letter-spacing: -0.02em;
}
.nawis-energy-calc__result-detail {
margin-top: 4px;
font-size: 0.88rem;
color: #475569;
}
@media (max-width: 900px) {
.nawis-energy-calc__top {
grid-template-columns: 1fr;
align-items: stretch;
}
.nawis-energy-calc__batteries {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 560px) {
.nawis-energy-calc__zones {
grid-template-columns: 1fr;
}
.nawis-energy-calc__batteries {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}:root {
--primary-blue: #0f4da8;
--primary-blue-light: #2a62c4;
--primary-blue-dark: #0c3d86;
--accent-blue: #7c94bd;
--text-primary: #101c2e;
--text-secondary: #46505e;
--text-muted: #67707e;
--background-primary: #ffffff;
--background-secondary: #f7f5f0;
--background-tertiary: #f0ece4;
--border-light: #e7e2d8;
--border-medium: #dcd6c9;
--success-green: #047857;
--surface-white: #ffffff;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--radius-sm: 6px;
--radius-md: 8px;
--radius-lg: 12px;
--radius-xl: 16px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.6;
color: var(--text-primary);
background: var(--background-primary);
font-feature-settings: 'cv11', 'ss01';
font-variant-numeric: tabular-nums;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 32px;
}
.section {
padding: 80px 0;
scroll-margin-top: 120px;
} .hero {
background: linear-gradient(135deg, #101c2e 0%, #1e293b 100%);
padding: 52px 0 64px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
min-height: 380px;
}
.hero > .container {
width: 100%;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 0.5;
}
.hero-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 1;
width: 100%;
}
.hero-badge {
display: inline-block;
background: var(--primary-blue);
color: white;
padding: 10px 20px;
border-radius: var(--radius-md);
font-size: 0.8125rem;
font-weight: 600;
margin-bottom: 24px;
text-transform: uppercase;
letter-spacing: 1px;
}
.hero-title {
font-size: 3.5rem;
font-weight: 550;
color: white;
margin-bottom: 20px;
letter-spacing: -0.02em;
line-height: 1.1;
}
.hero-description {
font-size: 1.25rem;
color: #98a0ac;
line-height: 1.7;
font-weight: 400;
max-width: 650px;
margin: 0 auto;
} .products-section {
background: var(--background-secondary);
position: relative;
}
.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-label {
display: inline-block;
font-size: 0.8125rem;
font-weight: 600;
color: var(--primary-blue);
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 16px;
}
.section-title {
font-size: 2.5rem;
font-weight: 550;
color: var(--text-primary);
margin-bottom: 16px;
letter-spacing: -0.02em;
line-height: 1.2;
}
.section-subtitle {
font-size: 1.125rem;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
} .products-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-bottom: 0;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.product-card {
background: var(--surface-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.product-card:hover {
border-color: var(--primary-blue);
box-shadow: var(--shadow-xl);
transform: translateY(-4px);
}
.product-card.active {
border-color: var(--primary-blue);
box-shadow: 0 0 0 3px rgba(15, 77, 168, 0.1), var(--shadow-lg);
}
.product-image-wrapper {
width: 100%;
aspect-ratio: 1 / 1;
background: linear-gradient(180deg, #f7f5f0 0%, #f0ece4 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.product-image {
width: 85%;
height: 85%;
object-fit: contain;
transition: transform 0.4s ease;
}
.product-card:hover .product-image {
transform: scale(1.05);
}
.product-card-content {
padding: 24px;
text-align: center;
border-top: 1px solid var(--border-light);
}
.product-type {
font-size: 2rem;
font-weight: 550;
color: var(--text-primary);
line-height: 1;
margin-bottom: 8px;
letter-spacing: -0.02em;
}
.product-description {
font-size: 1rem;
color: var(--text-secondary);
font-weight: 600;
margin-bottom: 16px;
}
.product-name {
font-size: 0.875rem;
color: var(--text-muted);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.select-btn {
display: block;
width: 100%;
padding: 14px;
background: var(--background-tertiary);
color: var(--text-secondary);
font-size: 0.875rem;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.2s ease;
}
.product-card:hover .select-btn {
background: var(--primary-blue);
color: white;
}
.product-card.active .select-btn {
background: var(--primary-blue);
color: white;
} .product-details {
background: var(--surface-white);
border-top: 1px solid var(--border-light);
}
.product-details-content {
max-width: 900px;
margin: 0 auto;
display: none;
}
.product-details-content.active {
display: block;
animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.details-header {
margin-bottom: 40px;
padding-bottom: 24px;
border-bottom: 1px solid var(--border-light);
}
.details-model {
font-size: 0.8125rem;
font-weight: 600;
color: var(--primary-blue);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.details-title {
font-size: 2.25rem;
font-weight: 600;
color: var(--text-primary);
letter-spacing: -0.02em;
line-height: 1.2;
}
.details-content p {
font-size: 1rem;
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 20px;
}
.details-content ul {
margin: 28px 0;
padding-left: 0;
list-style: none;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.details-content ul li {
font-size: 0.9375rem;
color: var(--text-secondary);
line-height: 1.6;
padding: 12px 16px;
padding-left: 40px;
position: relative;
background: var(--background-secondary);
border-radius: var(--radius-sm);
}
.details-content ul li::before {
content: '✓';
position: absolute;
left: 16px;
color: var(--primary-blue);
font-weight: 600;
}
.details-content strong {
color: var(--text-primary);
font-weight: 600;
} .other-products {
background: var(--background-tertiary);
border-top: 1px solid var(--border-light);
padding: 60px 0;
}
.slider-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 32px;
}
.slider-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
}
.slider-nav {
display: flex;
gap: 8px;
}
.slider-btn {
width: 44px;
height: 44px;
border: 1px solid var(--border-medium);
background: var(--surface-white);
border-radius: var(--radius-md);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
color: var(--text-secondary);
font-size: 1.25rem;
font-weight: 600;
}
.slider-btn:hover {
border-color: var(--primary-blue);
color: var(--primary-blue);
background: var(--background-secondary);
}
.products-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
padding-bottom: 16px;
scrollbar-width: none;
-ms-overflow-style: none;
}
.products-slider::-webkit-scrollbar {
display: none;
}
.slider-card {
flex: 0 0 280px;
background: var(--surface-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden;
text-decoration: none !important;
color: inherit;
transition: all 0.3s ease;
}
.slider-card:hover {
border-color: var(--primary-blue);
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}
.slider-card-image {
width: 100%;
aspect-ratio: 4 / 3;
background: var(--background-secondary);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.slider-card-image img {
width: 70%;
height: 70%;
object-fit: contain;
}
.slider-card-content {
padding: 20px;
}
.slider-card-category {
font-size: 0.75rem;
font-weight: 600;
color: var(--primary-blue);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
}
.slider-card-title {
font-size: 1.125rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 8px;
line-height: 1.3;
}
.slider-card-desc {
font-size: 0.875rem;
color: var(--text-secondary);
line-height: 1.5;
} .cta-section {
background: linear-gradient(135deg, #101c2e 0%, #1e293b 100%);
position: relative;
}
.cta-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.cta-title {
font-size: 2.25rem;
font-weight: 550;
margin-bottom: 16px;
color: white;
letter-spacing: -0.02em;
}
.cta-description {
font-size: 1.125rem;
margin-bottom: 32px;
color: #98a0ac;
line-height: 1.7;
}
.cta-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.cta-btn {
padding: 14px 32px;
border-radius: var(--radius-md);
font-weight: 600;
font-size: 0.9375rem;
text-decoration: none !important;
transition: all 0.3s ease;
display: inline-block;
}
.cta-btn.primary {
background: var(--primary-blue);
color: white;
}
.cta-btn.primary:hover {
background: var(--primary-blue-dark);
transform: translateY(-2px);
}
.cta-btn.secondary {
background: transparent;
color: white;
border: 1px solid rgba(255,255,255,0.3);
}
.cta-btn.secondary:hover {
border-color: white;
background: rgba(255,255,255,0.1);
} a { text-decoration: none !important; }
a:hover, a:focus, a:active { text-decoration: none !important; } @media (max-width: 1024px) {
.products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
.details-content ul {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.container { padding: 0 20px; }
.section { padding: 60px 0; }
.hero { padding: 40px 0 48px; min-height: auto; }
.hero-title { font-size: 2.5rem; }
.hero-description { font-size: 1.125rem; }
.products-grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
.product-type { font-size: 1.75rem; }
.section-title { font-size: 2rem; }
.details-title { font-size: 1.75rem; }
.cta-title { font-size: 1.75rem; }
.cta-buttons { flex-direction: column; align-items: stretch; }
.cta-btn { width: 100%; text-align: center; }
.slider-card { flex: 0 0 260px; }
}
@media (max-width: 480px) {
.hero-title { font-size: 2rem; }
.product-type { font-size: 1.5rem; }
}