:root {
    --nova-bg: #f5f7fb;
    --nova-panel: #ffffff;
    --nova-ink: #10192f;
    --nova-muted: #647084;
    --nova-line: #dce5f2;
    --nova-line-strong: #c8d5e8;
    --nova-red: #d71920;
    --nova-blue: #145dff;
    --nova-green: #07965f;
    --nova-amber: #f6a400;
    --nova-soft-blue: #eef5ff;
    --nova-soft-red: #fff0f1;
    --nova-shadow: 0 10px 28px rgba(16, 31, 61, .07);
    --nova-shadow-strong: 0 22px 60px rgba(16, 31, 61, .13);
}

body.template-alippe-nova {
    margin: 0;
    background: var(--nova-bg);
    color: var(--nova-ink);
    font-family: Inter, Arial, "Segoe UI", system-ui, sans-serif;
    letter-spacing: 0;
}

.template-alippe-nova * {
    box-sizing: border-box;
}

.template-alippe-nova a {
    color: inherit;
    text-decoration: none;
}

.template-alippe-nova button,
.template-alippe-nova input,
.template-alippe-nova select {
    font: inherit;
}

.nova-page {
    width: min(1880px, calc(100vw - 28px));
    margin: 0 auto;
    padding: 18px 0 32px;
}

.nova-header {
    min-height: 60px;
    display: grid;
    grid-template-columns: 202px minmax(360px, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 0 6px 14px;
    border-bottom: 1px solid rgba(200, 213, 232, .75);
}

.nova-brand {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.nova-brand span,
.nova-brand img {
    height: 48px;
    min-width: 156px;
    max-width: 178px;
    object-fit: contain;
}

.nova-brand span {
    padding: 0 16px;
    border-radius: 7px;
    background: var(--nova-red);
    color: #fff;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: .02em;
    box-shadow: 0 12px 24px rgba(215, 25, 32, .18);
}

.nova-search {
    height: 52px;
    display: grid;
    grid-template-columns: 146px minmax(0, 1fr) 54px;
    align-items: center;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 31, 61, .04);
    overflow: hidden;
}

.nova-catalog-trigger {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid var(--nova-line);
    color: var(--nova-ink);
    font-weight: 850;
}

.nova-catalog-trigger:hover {
    color: var(--nova-blue);
    background: var(--nova-soft-blue);
}

.nova-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 20px;
    color: var(--nova-ink);
    font-weight: 650;
    background: transparent;
}

.nova-search input::placeholder {
    color: #909caf;
}

.nova-search button {
    width: 54px;
    height: 52px;
    border: 0;
    background: var(--nova-blue);
    color: #fff;
    cursor: pointer;
}

.nova-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nova-phone,
.nova-account,
.nova-icon,
.nova-cart,
.template-alippe-nova .currency-switcher {
    height: 46px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    color: var(--nova-ink);
    box-shadow: 0 6px 18px rgba(16, 31, 61, .045);
}

.nova-phone,
.nova-account {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    font-weight: 850;
}

.nova-phone small,
.nova-account small {
    display: block;
    margin-top: 2px;
    color: var(--nova-muted);
    font-size: 11px;
    font-weight: 650;
}

.nova-icon,
.nova-cart {
    width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nova-cart {
    border-color: rgba(215, 25, 32, .25);
    color: var(--nova-red);
    cursor: pointer;
}

.nova-icon b,
.nova-cart span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--nova-red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.template-alippe-nova .currency-switcher {
    display: inline-grid;
    grid-auto-flow: column;
    overflow: hidden;
}

.template-alippe-nova .currency-switcher__item {
    min-width: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-muted);
    font-size: 12px;
    font-weight: 850;
}

.template-alippe-nova .currency-switcher__item.is-active {
    background: var(--nova-soft-blue);
    color: var(--nova-blue);
}

.nova-subnav {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 6px;
}

.nova-subnav a {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 8px;
    color: #29344d;
    font-size: 13px;
    font-weight: 760;
}

.nova-subnav a:hover {
    background: #fff;
    color: var(--nova-blue);
}

.nova-layout {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr) 304px;
    gap: 16px;
    align-items: start;
}

.nova-sidebar,
.nova-right {
    display: grid;
    gap: 12px;
}

.nova-category-wrap {
    position: relative;
}

.nova-category-title {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid #c8ddff;
    border-radius: 8px;
    background: #eaf3ff;
    color: var(--nova-blue);
    font-weight: 900;
    cursor: pointer;
}

.nova-category-list {
    margin-top: 10px;
    padding: 8px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--nova-shadow);
}

.nova-category-list a,
.nova-category-list button {
    width: 100%;
    min-height: 38px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #15213d;
    text-align: left;
    font-size: 13px;
    font-weight: 820;
    line-height: 1.15;
    cursor: pointer;
}

.nova-category-list a:hover,
.nova-category-list button:hover,
.nova-category-list .active {
    background: var(--nova-blue);
    color: #fff;
}

.nova-mega {
    position: absolute;
    left: calc(100% + 12px);
    top: 0;
    z-index: 30;
    width: 760px;
    min-height: 430px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    border: 1px solid #bdd3f2;
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--nova-shadow-strong);
    overflow: hidden;
}

.nova-category-wrap:hover .nova-mega,
.nova-category-wrap:focus-within .nova-mega,
.nova-category-wrap.open .nova-mega {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.nova-mega-panel {
    display: none;
    grid-template-columns: 230px minmax(0, 1fr) 240px;
    min-height: 430px;
}

.nova-mega-panel.active {
    display: grid;
}

.nova-mega-panel > div {
    padding: 22px;
    border-right: 1px solid var(--nova-line);
}

.nova-mega-panel > div:last-child {
    border-right: 0;
}

.nova-mega p {
    margin: 0 0 8px;
    color: var(--nova-blue);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.nova-mega h3 {
    margin: 0 0 18px;
    color: var(--nova-ink);
    font-size: 23px;
    line-height: 1.08;
}

.nova-mega > .active > div:first-child a {
    display: inline-flex;
    height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 7px;
    background: var(--nova-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.nova-mega-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.nova-mega-links a {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--nova-line);
    border-radius: 7px;
    background: #f8fbff;
    color: #1f2b46;
    font-size: 13px;
    font-weight: 800;
}

.nova-mega-links a:hover {
    border-color: #b7cef5;
    color: var(--nova-blue);
}

.nova-mega-brands b {
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
}

.nova-mega-brands div,
.nova-brand-cloud div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.nova-mega-brands a,
.nova-brand-cloud a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--nova-line);
    border-radius: 7px;
    background: #fff;
    color: #0d2a72;
    font-size: 13px;
    font-weight: 900;
}

.nova-rfq-mini,
.nova-service-card,
.nova-brand-cloud {
    padding: 18px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--nova-shadow);
}

.nova-rfq-mini {
    display: grid;
    gap: 8px;
    background: linear-gradient(135deg, #fff, #eef5ff);
}

.nova-rfq-mini i,
.nova-service-card i {
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 8px;
    background: var(--nova-soft-blue);
    color: var(--nova-blue);
}

.nova-rfq-mini b,
.nova-service-card b,
.nova-brand-cloud b {
    color: var(--nova-ink);
    font-size: 15px;
}

.nova-rfq-mini span,
.nova-service-card span {
    color: var(--nova-muted);
    font-size: 13px;
    line-height: 1.38;
}

.nova-rfq-mini a,
.nova-service-card a {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    border-radius: 7px;
    background: var(--nova-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.nova-main {
    display: grid;
    gap: 14px;
}

.nova-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    min-height: 342px;
    padding: 34px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(20, 93, 255, .08), transparent 40%),
        linear-gradient(180deg, #fff, #f7fbff);
    box-shadow: var(--nova-shadow);
    overflow: hidden;
}

.nova-hero-copy {
    align-self: center;
}

.nova-hero-copy > span,
.nova-section-head span,
.nova-finder span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--nova-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.nova-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #0d1830;
    font-size: clamp(38px, 3.2vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}

.nova-hero p {
    max-width: 640px;
    margin: 18px 0 0;
    color: #4b5870;
    font-size: 17px;
    line-height: 1.55;
}

.nova-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.nova-primary,
.nova-secondary {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-weight: 900;
}

.nova-primary {
    background: var(--nova-red);
    color: #fff;
    box-shadow: 0 12px 24px rgba(215, 25, 32, .18);
}

.nova-secondary {
    border: 1px solid var(--nova-line-strong);
    background: #fff;
    color: var(--nova-ink);
}

.nova-hero-products {
    display: grid;
    gap: 10px;
    align-content: center;
}

.nova-hero-product {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 96px;
    padding: 12px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 31, 61, .06);
}

.nova-hero-product img,
.nova-hero-product > i {
    width: 82px;
    height: 68px;
    object-fit: contain;
    border-radius: 7px;
    background: #f7f9fc;
}

.nova-hero-product span {
    display: block;
    color: var(--nova-ink);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
}

.nova-hero-product b {
    display: block;
    margin-top: 6px;
    color: var(--nova-red);
    font-size: 14px;
}

.nova-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.nova-stats article {
    min-height: 82px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--nova-shadow);
}

.nova-stats i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 8px;
    background: var(--nova-soft-red);
    color: var(--nova-red);
}

.nova-stats b {
    font-size: 22px;
    line-height: 1;
}

.nova-stats span {
    color: var(--nova-muted);
    font-size: 12px;
    font-weight: 700;
}

.nova-finder {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid #cfe0fb;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--nova-shadow);
}

.nova-finder b {
    display: block;
    font-size: 18px;
}

.nova-finder form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 10px;
}

.nova-finder input,
.nova-finder button,
.nova-section-head select {
    height: 42px;
    border-radius: 7px;
}

.nova-finder input,
.nova-section-head select {
    border: 1px solid var(--nova-line);
    background: #f9fbff;
    padding: 0 12px;
    color: var(--nova-ink);
    outline: 0;
}

.nova-finder button {
    border: 0;
    background: var(--nova-blue);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.nova-catalog-band {
    padding: 18px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--nova-shadow);
}

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

.nova-section-head h2 {
    margin: 0;
    color: var(--nova-ink);
    font-size: 26px;
    letter-spacing: 0;
}

.nova-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.nova-tabs button {
    height: 34px;
    padding: 0 14px;
    border: 1px solid var(--nova-line);
    border-radius: 7px;
    background: #f8fbff;
    color: #30405d;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.nova-tabs button.active {
    border-color: var(--nova-blue);
    background: var(--nova-blue);
    color: #fff;
}

.template-alippe-nova .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.template-alippe-nova .product-card {
    min-height: 318px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16, 31, 61, .045);
    overflow: hidden;
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}

.template-alippe-nova .product-card:hover {
    transform: translateY(-2px);
    border-color: #b8d0f6;
    box-shadow: 0 18px 36px rgba(16, 31, 61, .09);
}

.template-alippe-nova .product-image {
    min-height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px;
    background: #f8fbff;
}

.template-alippe-nova .product-image img {
    width: 100%;
    height: 112px;
    object-fit: contain;
}

.template-alippe-nova .card-image-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 1;
}

.template-alippe-nova .card-image-badges b {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.template-alippe-nova .badge-hit,
.template-alippe-nova .badge-new {
    background: var(--nova-green);
}

.template-alippe-nova .badge-sale {
    background: var(--nova-red);
}

.template-alippe-nova .product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 13px;
}

.template-alippe-nova .product-meta {
    display: grid;
    gap: 6px;
    margin-bottom: 8px;
}

.template-alippe-nova .product-meta small {
    color: var(--nova-muted);
    font-size: 11px;
    font-weight: 700;
}

.template-alippe-nova .stock-pill {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: var(--nova-green);
    font-size: 11px;
    font-weight: 850;
}

.template-alippe-nova .stock-pill.out {
    background: #fff1f2;
    color: var(--nova-red);
}

.template-alippe-nova .stock-pill.order {
    background: #fff8e7;
    color: #a76600;
}

.template-alippe-nova .stock-note {
    color: var(--nova-muted);
    font-size: 11px;
}

.template-alippe-nova .product-card h3 {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0;
}

.template-alippe-nova .product-card h3 a {
    color: var(--nova-ink);
}

.template-alippe-nova .product-foot {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin-top: auto;
}

.template-alippe-nova .old-price {
    display: block;
    color: #9aa5b8;
    font-size: 12px;
    text-decoration: line-through;
}

.template-alippe-nova .price {
    display: block;
    color: var(--nova-ink);
    font-size: 18px;
    line-height: 1.1;
}

.template-alippe-nova .icon-btn.add-to-cart {
    width: 100%;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 7px;
    background: var(--nova-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.template-alippe-nova .icon-btn.add-to-cart:disabled {
    background: #e7edf6;
    color: #7a879c;
    cursor: not-allowed;
}

.template-alippe-nova .product-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}

.template-alippe-nova .link-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--nova-muted);
    font-size: 11px;
    font-weight: 760;
    cursor: pointer;
}

.nova-service-card {
    display: grid;
    gap: 8px;
}

.nova-service-card.accent {
    border-color: #ffd2d5;
    background: var(--nova-soft-red);
}

.nova-service-card.accent i {
    background: #fff;
    color: var(--nova-red);
}

.nova-brand-cloud {
    display: grid;
    gap: 12px;
}

.template-alippe-nova .store-footer {
    margin-top: 16px;
    border: 1px solid var(--nova-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--nova-shadow);
    overflow: hidden;
}

.template-alippe-nova .footer-benefits {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--nova-line);
}

.template-alippe-nova .footer-benefits article {
    min-height: 92px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    padding: 18px;
    background: #f8fbff;
}

.template-alippe-nova .footer-benefits i {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 8px;
    background: #fff;
    color: var(--nova-blue);
}

.template-alippe-nova .footer-benefits b,
.template-alippe-nova .footer-main b {
    color: var(--nova-ink);
}

.template-alippe-nova .footer-benefits span,
.template-alippe-nova .footer-main p,
.template-alippe-nova .footer-main a,
.template-alippe-nova .footer-pay-safe {
    color: var(--nova-muted);
}

.template-alippe-nova .footer-main {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 1fr) 1.15fr;
    gap: 26px;
    padding: 28px;
}

.template-alippe-nova .footer-brand h2 {
    width: max-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 0 12px;
    border-radius: 7px;
    background: var(--nova-red);
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: .02em;
}

.template-alippe-nova .footer-brand h2 a,
.template-alippe-nova .footer-wordmark {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 12px;
    border-radius: 7px;
    background: var(--nova-red);
    color: #fff !important;
    font-weight: 950;
}

.template-alippe-nova .footer-main nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.template-alippe-nova .footer-pay {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.template-alippe-nova .footer-pay span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--nova-line);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
}

.template-alippe-nova .footer-bottom {
    padding: 14px 28px;
    border-top: 1px solid var(--nova-line);
    color: var(--nova-muted);
    font-size: 12px;
}

.template-alippe-nova .footer-bottom {
    font-size: 0;
}

.template-alippe-nova .footer-bottom::before {
    content: "© 2013-2026 ALIPPE — Все права защищены";
    font-size: 12px;
}

@media (max-width: 1500px) {
    .nova-layout {
        grid-template-columns: 270px minmax(0, 1fr);
    }

    .nova-right {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .nova-brand-cloud {
        grid-column: span 2;
    }
}

@media (max-width: 1180px) {
    .nova-header {
        grid-template-columns: 180px 1fr;
    }

    .nova-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .nova-layout,
    .nova-hero,
    .nova-finder {
        grid-template-columns: 1fr;
    }

    .nova-sidebar {
        order: -1;
    }

    .nova-mega {
        display: none;
    }

    .template-alippe-nova .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .nova-page {
        width: min(100vw - 16px, 760px);
        padding-top: 10px;
    }

    .nova-header,
    .nova-search,
    .nova-layout,
    .nova-stats,
    .template-alippe-nova .product-grid,
    .nova-right,
    .template-alippe-nova .footer-benefits,
    .template-alippe-nova .footer-main {
        grid-template-columns: 1fr;
    }

    .nova-actions {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nova-search {
        height: auto;
    }

    .nova-catalog-trigger,
    .nova-search input,
    .nova-search button {
        height: 46px;
    }

    .nova-subnav {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .nova-hero,
    .nova-catalog-band,
    .nova-finder {
        padding: 16px;
    }

    .nova-hero h1 {
        font-size: 34px;
    }

    .nova-hero-products {
        grid-template-columns: 1fr;
    }
}
