:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #6b6b6b;
    --line: #e9e9e9;
    --soft: #f6f6f4;
    --accent: #18a18f;
    --container: 1440px;
    --header-h: 72px;
    --utility-h: 34px;
    --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

.custom-container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}


/* Utility */

.nomad-utility {
    height: var(--utility-h);
    border-bottom: 1px solid var(--line);
    background: #fafafa;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 60;
}

.nomad-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #222;
    white-space: nowrap;
}

.nova-menu-bar__left,
.nova-menu-bar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nomad-utility__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #888;
}

.nova-menu-bar__icon,
.nova-menu-bar__link {
    display: inline-flex;
    align-items: center;
}

.nova-menu-bar__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
}

.nova-menu-bar__icon--cart {
    position: relative;
}

.nova-menu-bar__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #18a18f;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Header */

.nomad-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .04);
}

.nomad-header__row {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nomad-header__left,
.nomad-header__right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.nomad-header__right {
    justify-content: flex-end;
    gap: 8px;
}

.nomad-header__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nomad-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .06em;
    white-space: nowrap;
}

.nomad-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nomad-nav__link {
    height: 72px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
    transition: .2s ease;
}

.nomad-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: #18a18f;
    transition: width .25s ease;
}

.nomad-nav__link:hover {
    color: #18a18f;
}

.nomad-nav__link:hover::after {
    width: 100%;
}

.nomad-icon-btn,
.nomad-menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    cursor: pointer;
}

.nomad-icon-btn:hover,
.nomad-menu-btn:hover {
    background: rgba(0, 0, 0, .05);
}

.nomad-icon {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nomad-cart-count {
    position: absolute;
    top: 6px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #18a18f;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nomad-menu-btn {
    display: none;
}


/* Hero */

.nomad-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
}

.nomad-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
}

.nomad-hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.nomad-hero__video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    /* 16:9 */
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    /* 9:16 */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.nomad-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .18) 28%, rgba(0, 0, 0, .04) 54%, rgba(0, 0, 0, 0) 75%), linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .04) 35%, rgba(0, 0, 0, .08) 100%);
    z-index: 2;
}

.nomad-hero .custom-container,
.nomad-hero__inner,
.nomad-hero__content {
    position: relative;
    z-index: 3;
}

.nomad-hero__video-wrap--mobile {
    display: none;
}

.nomad-hero__video-wrap--desktop {
    display: block;
}

@media (max-width: 767px) {
    .nomad-hero__video-wrap--desktop {
        display: none;
    }
    .nomad-hero__video-wrap--mobile {
        display: block;
    }
}

.nomad-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .18) 28%, rgba(0, 0, 0, .04) 54%, rgba(0, 0, 0, 0) 75%), linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .04) 35%, rgba(0, 0, 0, .08) 100%);
}

.nomad-hero__inner {
    position: relative;
    min-height: calc(100vh - var(--header-h) - var(--utility-h));
    display: flex;
    align-items: flex-end;
}

.nomad-hero__content {
    width: min(100%, 540px);
    padding: 0 0 64px;
    color: #fff;
}

.nomad-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
}

.nomad-hero__title {
    margin: 0;
    font-size: clamp(36px, 6vw, 74px);
    line-height: .96;
    letter-spacing: -.035em;
    font-weight: 700;
    max-width: 10ch;
}

.nomad-hero__subtitle {
    margin: 14px 0 0;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.2;
    font-weight: 500;
}

.nomad-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.nomad-btn {
    min-width: 132px;
    height: 46px;
    padding: 0 22px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    transition: .22s ease;
}

.nomad-btn:hover {
    background: transparent;
    color: #fff;
}

.nomad-btn--ghost {
    background: transparent;
    color: #fff;
}

.nomad-btn--ghost:hover {
    background: #fff;
    color: #111;
}


/* Drawer */

.nomad-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.nomad-drawer.active {
    display: block;
}

.nomad-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .38);
}

.nomad-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(92vw, 420px);
    height: 100%;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateX(-100%);
    transition: transform .28s ease;
}

.nomad-drawer.active .nomad-drawer__panel {
    transform: translateX(0);
}

.nomad-drawer__body {
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nomad-drawer__body a {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    color: #333;
}


/* Responsive */

@media (max-width: 991px) {
    .nomad-utility {
        display: none;
    }
    .nomad-menu-btn {
        display: inline-flex;
    }
    .nomad-nav {
        display: none;
    }
    .nomad-header__center {
        position: static;
        transform: none;
    }
    .nomad-header__row {
        min-height: 64px;
    }
    .nomad-logo {
        font-size: 22px;
    }
    .nomad-hero__inner {
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    .custom-container {
        width: min(calc(100% - 20px), var(--container));
    }
    .nomad-header__right .nomad-icon-btn:first-child {
        display: none;
    }
    .nomad-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 0 0 30px;
    }
    .nomad-hero__title {
        font-size: clamp(30px, 11vw, 50px);
    }
    .nomad-btn {
        min-width: 118px;
        height: 42px;
        padding: 0 18px;
        font-size: 11px;
    }
}

.nova-products--catalog {
    background: #fff;
    padding: 32px 0 80px;
}

.nova-products__container {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
}

.nova-products__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.nova-products__title {
    margin: 0;
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    color: #111;
}

.nova-products__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 44px;
    padding: 0 18px;
    background: #18a18f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.nova-row {
    padding: 20px 18px 18px;
    margin: 0 0 14px 0;
}

.nova-row__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.nova-row--iphone {
    background: #F7F7F5;
}

.nova-row--case {
    background: #F1F1F1;
}

.nova-row--airpods {
    background: #EEF4F8;
}

.nova-row--watch {
    background: #F3E9D8;
}

.nova-row--power {
    background: #F0F8EF;
}

.nova-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: transparent;
}

.nova-product-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 14px;
    overflow: hidden;
    background: transparent;
}

.nova-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .3s ease;
}

.nova-product-card:hover .nova-product-card__image-wrap img {
    transform: scale(1.03);
}

.nova-product-card__name {
    min-height: 40px;
    margin: 10px 0 8px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
}

.nova-product-card__price {
    min-height: 24px;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

.nova-product-card__btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: #18a18f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.nova-product-card__btn:hover,
.nova-products__link:hover {
    opacity: .92;
}

@media (max-width: 991px) {
    .nova-products__title {
        font-size: 38px;
    }
    .nova-row__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nova-products--catalog {
        padding: 24px 0 48px;
    }
    .nova-products__container {
        width: min(calc(100% - 20px), 1440px);
    }
    .nova-products__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .nova-products__title {
        font-size: 30px;
    }
    .nova-row {
        padding: 14px;
    }
    .nova-row__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.nova-collection-showcase {
    padding: 48px 0 80px;
    background: #fff;
}

.nova-collection-showcase__container {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
}

.nova-showcase-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    min-height: 240px;
    margin-bottom: 18px;
}

.nova-showcase-banner__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.nova-showcase-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .18) 50%, rgba(0, 0, 0, .08) 100%);
}

.nova-showcase-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 2;
}

.nova-showcase-banner__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nova-showcase-banner__title {
    margin: 0;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 800;
}

.nova-showcase-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
}

.nova-showcase-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.nova-showcase-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
}

.nova-showcase-feature__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #666;
}

.nova-showcase-feature__title {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
    max-width: 12ch;
}

.nova-showcase-feature__desc {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 46ch;
}

.nova-showcase-feature__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #18a18f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nova-topbar {
    position: relative;
    z-index: 20;
    width: 100%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    margin-bottom: 24px;
}

.nova-topbar__inner {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.nova-topbar__link {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .25s ease;
}

.nova-topbar__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #18a18f;
    transition: width .25s ease;
}

.nova-topbar__link:hover {
    color: #18a18f;
    transform: translateY(-1px);
}

.nova-topbar__link:hover::after {
    width: 100%;
}

.nova-mosaic-section {
    padding: 0 0 32px;
}

.nova-mosaic-container {
    width: 100%;
}

.nova-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.nova-store-banner {
    width: 100%;
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
}

.nova-store-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.nova-store-banner__content {
    padding: 24px 28px 30px;
    background: #fff;
}

.nova-store-banner__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #666;
}

.nova-store-banner__content h3 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #111;
}

.nova-store-banner__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 80ch;
}

.nova-mosaic-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
    border-radius: 18px;
}

.nova-mosaic-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.nova-mosaic-card:hover img {
    transform: scale(1.04);
}

.nova-mosaic-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .55) 100%);
}

.nova-mosaic-card__overlay h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
}

.nova-mosaic-card__overlay p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.nova-contact-block {
    padding: 56px 0 72px;
    background: #f8f8f8;
}

.nova-contact-block__inner {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
}

.nova-contact-block h2 {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 800;
    color: #111;
}

.nova-contact-block>.nova-contact-block__inner>p {
    margin: 0 0 28px;
    max-width: 70ch;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.nova-contact-block__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nova-contact-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 22px 20px;
}

.nova-contact-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.nova-contact-card p,
.nova-contact-card a {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    word-break: break-word;
}

.novatech-footer {
    background: #111;
    color: #f5f5f5;
}

.novatech-footer__inner {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
    padding: 68px 0 26px;
}

.novatech-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 1.2fr;
    gap: 28px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.novatech-footer__col h3,
.novatech-footer__newsletter h3 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.novatech-footer__col a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.6;
}

.novatech-footer__col a:hover {
    color: #fff;
}

.novatech-footer__newsletter p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.7;
}

.novatech-footer__form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.novatech-footer__form input {
    flex: 1;
    min-height: 44px;
    border: none;
    outline: none;
    border-radius: 999px;
    padding: 0 16px;
}

.novatech-footer__form button {
    min-width: 110px;
    min-height: 44px;
    border: none;
    border-radius: 999px;
    background: #18a18f;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.novatech-footer__contactline {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.7;
}

.novatech-footer__middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0 18px;
}

.novatech-footer__brand {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: .04em;
}

.novatech-footer__socials {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.novatech-footer__socials a {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.novatech-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.novatech-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.novatech-footer__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.novatech-footer__links a {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

@media (max-width: 991px) {
    .nova-showcase-feature {
        grid-template-columns: 1fr;
    }
    .nova-mosaic-grid {
        grid-template-columns: 1fr;
    }
    .nova-contact-block__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .novatech-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .novatech-footer__newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .nova-collection-showcase {
        padding: 28px 0 48px;
    }
    .nova-collection-showcase__container,
    .nova-contact-block__inner,
    .novatech-footer__inner {
        width: min(calc(100% - 20px), 1440px);
    }
    .nova-showcase-banner__title {
        font-size: 30px;
    }
    .nova-showcase-feature__title {
        font-size: 28px;
        max-width: none;
    }
    .nova-store-banner__content {
        padding: 18px 16px 22px;
    }
    .nova-store-banner__content h3 {
        font-size: 26px;
    }
    .nova-store-banner__content p {
        font-size: 14px;
    }
    .nova-contact-block__grid {
        grid-template-columns: 1fr;
    }
    .nova-contact-block h2 {
        font-size: 28px;
    }
    .novatech-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .novatech-footer__middle,
    .novatech-footer__bottom,
    .novatech-footer__form {
        flex-direction: column;
        align-items: flex-start;
    }
    .novatech-footer__brand {
        font-size: 36px;
    }
    .novatech-footer__form button,
    .novatech-footer__form input {
        width: 100%;
    }
}


/* =========================
   PRODUCT FORMAT V2
========================= */

.nova-products-v2 {
    padding: 36px 0 70px;
    background: #f4f4f2;
}

.nova-products-v2__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.sale-product-card {
    position: relative;
    background: linear-gradient(180deg, #f6f6f4 0%, #eceae6 100%);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.sale-product-card--orange {
    background: linear-gradient(180deg, #f7f4ef 0%, #ece7e0 100%);
}

.sale-product-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    background: linear-gradient(90deg, #c94d22, #f08a3e);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 18px;
}

.sale-product-card__media {
    padding: 34px 34px 12px;
    background: linear-gradient(180deg, #f2f2f0 0%, #efefed 100%);
}

.sale-product-card__media img {
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.sale-product-card__body {
    padding: 0 28px 24px;
}

.sale-product-card__top {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: end;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    padding: 10px 0 20px;
}

.sale-product-card__title {
    margin: 0 0 10px;
    font-size: 60px;
    line-height: 1.02;
    font-weight: 900;
    color: #050505;
    letter-spacing: -.03em;
}

.sale-product-card__subtitle {
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
    color: #2a2a2a;
    font-weight: 600;
}

.sale-product-card__pricebox {
    text-align: left;
}

.sale-product-card__old-price {
    font-size: 34px;
    line-height: 1.2;
    color: #8a8a8a;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.sale-product-card__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    background: linear-gradient(90deg, #d05727, #ef8c42);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sale-product-card__new-price {
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
    color: #050505;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}

.sale-product-card__saving {
    font-size: 20px;
    line-height: 1.5;
    color: #333;
}

.sale-product-card__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.sale-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 22px;
    line-height: 1.4;
    color: #2a2a2a;
    font-weight: 600;
}

.sale-feature-item__icon {
    flex: 0 0 auto;
    font-size: 26px;
    line-height: 1;
}

.sale-product-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 78px;
    margin: 26px 0 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #2ec7bb 0%, #1aa89c 100%);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 10px 24px rgba(25, 168, 156, .25);
    transition: transform .2s ease, opacity .2s ease;
}

.sale-product-card__btn:hover {
    transform: translateY(-2px);
    opacity: .96;
    color: #fff;
}

.sale-product-card__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    font-size: 20px;
    line-height: 1.5;
    color: #3a3a3a;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .sale-product-card__title {
        font-size: 46px;
    }
    .sale-product-card__new-price {
        font-size: 56px;
    }
    .sale-feature-item {
        font-size: 18px;
    }
    .sale-product-card__bottom {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .sale-product-card__top {
        grid-template-columns: 1fr;
    }
    .sale-product-card__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sale-product-card__title {
        font-size: 38px;
    }
    .sale-product-card__subtitle {
        font-size: 18px;
    }
    .sale-product-card__new-price {
        font-size: 48px;
    }
    .sale-product-card__old-price {
        font-size: 26px;
    }
    .sale-product-card__saving {
        font-size: 17px;
    }
    .sale-product-card__btn {
        min-height: 62px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .nova-products-v2 {
        padding: 22px 0 42px;
    }
    .sale-product-card {
        border-radius: 20px;
    }
    .sale-product-card__badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 10px 14px;
    }
    .sale-product-card__media {
        padding: 18px 14px 8px;
    }
    .sale-product-card__body {
        padding: 0 14px 18px;
    }
    .sale-product-card__title {
        font-size: 24px;
    }
    .sale-product-card__subtitle {
        font-size: 14px;
    }
    .sale-product-card__old-price {
        font-size: 18px;
    }
    .sale-product-card__discount {
        min-height: 34px;
        font-size: 12px;
        padding: 0 12px;
    }
    .sale-product-card__new-price {
        font-size: 34px;
    }
    .sale-product-card__saving {
        font-size: 14px;
    }
    .sale-product-card__features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 16px 0;
    }
    .sale-feature-item {
        font-size: 14px;
    }
    .sale-feature-item__icon {
        font-size: 18px;
    }
    .sale-product-card__btn {
        min-height: 52px;
        font-size: 18px;
        margin: 18px 0 14px;
    }
    .sale-product-card__bottom {
        font-size: 13px;
        gap: 8px;
        justify-content: flex-start;
    }
}


/* =========================
   PRODUCT CARD FORMAT GRID 4
========================= */

.nova-products-v3 {
    padding: 32px 0 72px;
    background: #fff;
}

.product-info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #fcfcfb 0%, #f2f2ef 100%);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.product-info-card--hot {
    box-shadow: 0 16px 32px rgba(227, 126, 56, .18);
}

.product-info-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: linear-gradient(90deg, #d85a2a, #f19045);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 12px;
    border-radius: 999px;
}

.product-info-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 16px;
    background: linear-gradient(180deg, #f7f7f5 0%, #efefed 100%);
    overflow: hidden;
}

.product-info-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .3s ease;
}

.product-info-card:hover .product-info-card__image-wrap img {
    transform: scale(1.03);
}

.product-info-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.product-info-card__title {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 800;
    color: #111;
}

.product-info-card__subtitle {
    margin: 0 0 12px;
    min-height: 38px;
    font-size: 13px;
    line-height: 1.45;
    color: #666;
    font-weight: 600;
}

.product-info-card__price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.product-info-card__old-price {
    font-size: 14px;
    color: #8b8b8b;
    text-decoration: line-through;
    line-height: 1.3;
}

.product-info-card__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ffe2d2;
    color: #d85a2a;
    font-size: 11px;
    font-weight: 800;
}

.product-info-card__new-price {
    margin-bottom: 6px;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    color: #111;
    letter-spacing: -.03em;
}

.product-info-card__saving {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #444;
    font-weight: 600;
}

.product-info-card__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.product-info-card__features span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    text-align: center;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.35;
    color: #333;
    font-weight: 700;
}

.product-info-card__btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2ec7bb 0%, #1aa89c 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 8px 18px rgba(26, 168, 156, .2);
}

.product-info-card__btn:hover {
    color: #fff;
    opacity: .96;
    transform: translateY(-1px);
}

.product-info-card__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.product-info-card__bottom span {
    font-size: 11px;
    line-height: 1.4;
    color: #555;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .product-info-card__title {
        font-size: 19px;
    }
    .product-info-card__new-price {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .nova-row__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nova-row__grid {
        grid-template-columns: 1fr;
    }
    .product-info-card__title {
        font-size: 20px;
    }
    .product-info-card__new-price {
        font-size: 30px;
    }
}

.product-info-card__title {
    min-height: 52px;
}

.product-info-card__saving {
    min-height: 38px;
}

.product-info-card__features {
    min-height: 84px;
}

.nova-contact-map {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    background: #fff;
}

.nova-contact-map iframe {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .nova-contact-map {
        margin-top: 20px;
        border-radius: 14px;
    }
    .nova-contact-map iframe {
        height: 320px;
    }
}

.product-contact-block {
    padding-top: 56px;
}

.nova-contact-map {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    background: #fff;
}

.nova-contact-map iframe {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .product-contact-block {
        padding-top: 36px;
    }
    .nova-contact-map {
        margin-top: 20px;
        border-radius: 14px;
    }
    .nova-contact-map iframe {
        height: 320px;
    }
}

.nomad-utility,
.nova-menu-bar {
    display: none !important;
}

.nomad-header {
    top: 0 !important;
}

.nomad-hero__inner {
    min-height: calc(100vh - var(--header-h)) !important;
}

.product-info-card__image-wrap,
.nova-product-card__image-wrap,
.nova-detail-gallery__main,
.nova-thumb,
.nova-detail-gallery__thumbs img {
    background: transparent !important;
}

.product-info-card__image-wrap img,
.nova-product-card__image-wrap img,
.nova-detail-gallery__main img,
.nova-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    background: transparent !important;
}

.nova-detail-page {
    background: #f7f7f8;
    padding: 32px 0 48px;
}

.nova-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.nova-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.nova-breadcrumb a {
    color: #111;
    text-decoration: none;
}

.nova-breadcrumb strong {
    color: #111;
    font-weight: 700;
}

.nova-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nova-detail-gallery__main {
    background: #f3f3f3;
    border-radius: 18px;
    overflow: hidden;
    padding: 18px;
}

.nova-detail-gallery__main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.nova-detail-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.nova-thumb {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    width: 84px;
    height: 84px;
}

.nova-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nova-thumb.is-active {
    border-color: #111;
}

.nova-detail-info__tag {
    font-size: 13px;
    color: #b26b00;
    font-weight: 600;
    margin-bottom: 10px;
}

.nova-detail-info__title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #111;
}

.nova-detail-info__price {
    font-size: 30px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 18px;
}

.nova-detail-info__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.nova-detail-info__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.nova-detail-btn {
    border: none;
    border-radius: 14px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.nova-detail-btn--primary {
    background: #111;
    color: #fff;
}

.nova-detail-btn--secondary {
    background: #f1f1f1;
    color: #111;
}

.nova-detail-btn:hover {
    transform: translateY(-2px);
}

.nova-detail-highlight,
.nova-detail-mini-meta,
.nova-detail-block {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.nova-detail-highlight {
    margin-bottom: 18px;
}

.nova-detail-highlight h3,
.nova-detail-block h2 {
    margin-bottom: 14px;
    font-size: 22px;
    color: #111;
}

.nova-detail-highlight ul,
.nova-detail-block ul {
    padding-left: 18px;
    margin: 0;
}

.nova-detail-highlight li,
.nova-detail-block li,
.nova-detail-block p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.nova-detail-mini-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.nova-detail-sections {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.nova-spec-table {
    display: grid;
    gap: 10px;
}

.nova-spec-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.nova-spec-label {
    font-weight: 700;
    color: #111;
}

.nova-spec-value {
    color: #444;
}

.nova-contact-block {
    margin-top: 28px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nova-contact-block__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.nova-contact-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 18px;
}

.nova-contact-card h3 {
    margin-bottom: 8px;
    color: #111;
}

.nova-contact-card p,
.nova-contact-card a {
    color: #444;
    text-decoration: none;
    word-break: break-word;
}

.nova-contact-map iframe {
    border-radius: 16px;
}

@media (max-width: 991px) {
    .nova-detail-main {
        grid-template-columns: 1fr;
    }
    .nova-detail-mini-meta,
    .nova-contact-block__grid {
        grid-template-columns: 1fr;
    }
    .nova-spec-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .nova-detail-info__title {
        font-size: 28px;
    }
    .nova-detail-info__price {
        font-size: 24px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.cart-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    background: #111;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .25s ease;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-page {
    padding: 48px 0 72px;
    background: #f7f7f7;
}

.cart-page__inner {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
}

.cart-page__head {
    margin-bottom: 24px;
}

.cart-page__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #18a18f;
}

.cart-page__title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    color: #111;
}

.cart-empty {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    border: 1px solid #e9e9e9;
}

.cart-empty h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 800;
}

.cart-empty p {
    margin: 0 0 20px;
    color: #666;
    line-height: 1.7;
}

.cart-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #18a18f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.cart-layout {
    display: none;
    grid-template-columns: 1.6fr .8fr;
    gap: 24px;
}

.cart-list,
.cart-summary {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e9e9e9;
    padding: 22px;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #efefef;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item__image {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item__name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.cart-item__price {
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-qty-btn,
.cart-remove-btn {
    border: none;
    cursor: pointer;
    font: inherit;
}

.cart-qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f1f1f1;
    font-size: 18px;
    font-weight: 700;
}

.cart-item__qty {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.cart-remove-btn {
    background: transparent;
    color: #d9534f;
    font-weight: 700;
}

.cart-item__total {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
}

.cart-summary h3 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 800;
}

.cart-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
    font-size: 15px;
}

.cart-summary__row--total {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    border-bottom: none;
}

.cart-summary__actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.cart-summary__actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.cart-summary__btn {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    box-sizing: border-box;
}

.cart-summary__btn--primary {
    background: linear-gradient(135deg, #18b7ad, #35cfc5);
    color: #fff;
}

.cart-summary__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(24, 183, 173, 0.25);
    color: #fff;
}

.cart-summary__btn--secondary {
    background: #111;
    color: #fff;
}

.cart-summary__btn--secondary:hover {
    background: #000;
}

@media (max-width: 991px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .cart-page {
        padding: 32px 0 48px;
    }
    .cart-page__inner {
        width: min(calc(100% - 20px), 1440px);
    }
    .cart-page__title {
        font-size: 30px;
    }
    .cart-item {
        grid-template-columns: 1fr;
    }
    .cart-item__image {
        width: 100%;
        height: 220px;
    }
    .cart-item__total {
        font-size: 18px;
    }
}


/* ===== FIX ICON GIỎ HÀNG BỊ PHÓNG TO ===== */

.nomad-icon-btn svg,
.nova-menu-bar__icon svg,
.cart-link svg {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
    min-height: 19px !important;
    display: block !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* ===== FIX LINK ICON GIỎ HÀNG ===== */

.nomad-icon-btn,
.nova-menu-bar__icon,
.cart-link {
    text-decoration: none !important;
    color: inherit !important;
}


/* ===== FIX CART PAGE HIỂN THỊ ỔN ĐỊNH ===== */

.cart-page {
    padding: 48px 0 72px;
    background: #f7f7f7;
    min-height: calc(100vh - 80px);
}

.cart-page__inner {
    width: min(calc(100% - 40px), 1440px);
    margin: 0 auto;
}

.cart-empty,
.cart-list,
.cart-summary {
    box-sizing: border-box;
}

.cart-list,
.cart-summary {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e9e9e9;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}


/* ===== KHI CHƯA CÓ JS, TRANG KHÔNG BỊ VỠ QUÁ XẤU ===== */

#cartWrapper {
    display: none;
}

#cartEmpty {
    display: block;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 18px 20px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cart-item__media {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    background: #f7f7f7;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cart-item__content {
    min-width: 0;
}

.cart-item__title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #111;
}

.cart-item__price {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    margin-bottom: 14px;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-qty button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: #f1f1f1;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.cart-qty span {
    min-width: 20px;
    text-align: center;
    font-weight: 700;
}

.cart-remove {
    border: none;
    background: transparent;
    color: #ef4444;
    font-weight: 700;
    cursor: pointer;
}

.cart-item__total {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    padding-top: 4px;
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
    }
    .cart-item__media {
        width: 96px;
        height: 96px;
    }
    .cart-item__total {
        padding-top: 0;
    }
}