:root {
    --bg: #ffffff;
    --ink: #0c1730;
    --muted: #637088;
    --line: #dfe7f2;
    --soft: #f5f8fd;
    --soft-2: #edf4fb;
    --navy: #082766;
    --navy-dark: #061f4f;
    --green: #35a936;
    --green-dark: #1f842f;
    --teal: var(--navy);
    --teal-dark: var(--navy-dark);
    --amber: var(--green);
    --shadow: 0 18px 45px rgba(8, 39, 102, .12);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", "Noto Sans Thai", "Tahoma", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

i[data-lucide],
.lucide {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
    flex: 0 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--teal-dark);
    color: #e9fffa;
    font-size: 13px;
}

.topbar__inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__service {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar__service span,
.ghost-button,
.cart-button,
.hero-search button,
.primary-link,
.secondary-link,
.add-button,
.quick-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(8, 39, 102, .12);
}

.header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: 96px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 300px;
}

.brand__logo {
    width: 300px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--navy-dark);
    font-size: 15px;
    font-weight: 700;
}

.nav a,
.nav-dropdown__trigger {
    position: relative;
    padding: 35px 0;
}

.nav a::after,
.nav-dropdown__trigger::after {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    height: 2px;
    background: var(--green);
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: .2s ease;
}

.nav a:hover::after,
.nav-dropdown:hover .nav-dropdown__trigger::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown__trigger .lucide {
    width: 15px;
    height: 15px;
}

.mega-menu {
    position: absolute;
    top: calc(100% - 14px);
    left: 50%;
    z-index: 35;
    display: grid;
    width: min(760px, calc(100vw - 40px));
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu__column {
    display: grid;
    align-content: start;
    gap: 6px;
}

.mega-menu__column strong {
    margin-bottom: 7px;
    color: var(--navy-dark);
    font-size: 14px;
}

.mega-menu__column a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.mega-menu__column a::after {
    display: none;
}

.mega-menu__column a:hover {
    color: var(--green-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-select {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 800;
}

.language-select select {
    min-width: 92px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    outline: 0;
}

.ghost-button,
.cart-button,
.menu-button {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--teal-dark);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.ghost-button {
    padding: 10px 14px;
}

.cart-button {
    padding: 8px 10px 8px 14px;
}

.cart-button strong {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-size: 13px;
}

.menu-button {
    display: none;
    padding: 10px 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 42%, rgba(255, 255, 255, .18) 74%),
        url("../img/hero-bg.png") center right / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 650px);
    min-height: 620px;
    align-items: center;
    padding: 76px 0 70px;
}

.hero__copy h1 {
    max-width: 640px;
    margin: 0 0 20px;
    color: var(--navy-dark);
    font-size: clamp(40px, 4.7vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero__copy h1 span {
    display: inline;
}

.hero__copy p {
    max-width: 585px;
    margin: 0 0 30px;
    color: #526176;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.82;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-search {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    max-width: 620px;
    padding: 6px;
    background: #fff;
    border: 1px solid #cfe0dd;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hero-search input {
    width: 100%;
    min-width: 0;
    padding: 15px 16px;
    border: 0;
    color: var(--ink);
    outline: 0;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 12;
    display: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.search-suggestions.is-open {
    display: block;
}

.search-suggestions button {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--navy-dark);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
}

.search-suggestions button:last-child {
    border-bottom: 0;
}

.search-suggestions button:hover {
    background: var(--soft);
}

.search-suggestions small {
    color: var(--muted);
    font-weight: 700;
}

.hero-search button,
.primary-link,
.secondary-link,
.add-button,
.quick-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hero-search button,
.primary-link {
    padding: 0 22px;
    background: var(--teal);
    color: #fff;
}

.primary-link:hover,
.hero-search button:hover,
.add-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(8, 39, 102, .18);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.secondary-link {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--teal-dark);
}

.slide-show {
    padding: 0;
    background: #fff;
}

.slide-card {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.slide-card__content {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    padding: 32px 0;
}

.supplier-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    white-space: nowrap;
}

.supplier-logos img {
    width: 108px;
    height: 34px;
    background: transparent;
    object-fit: contain;
}

.section {
    padding: 76px 0;
}

.section--tight {
    padding: 56px 0 38px;
}

.section-heading h2 {
    margin: 0 0 8px;
    color: var(--navy-dark);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: 0;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.category-tile {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition: .2s ease;
}

.category-tile:hover,
.category-tile.is-selected {
    border-color: rgba(53, 169, 54, .55);
    box-shadow: 0 14px 28px rgba(8, 39, 102, .09);
    transform: translateY(-2px);
}

.category-tile strong {
    font-size: 15px;
    line-height: 1.35;
}

.category-tile small {
    color: var(--muted);
    font-size: 12px;
}

.category-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(8, 39, 102, .12), rgba(53, 169, 54, .22));
    color: var(--teal);
}

.toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tab {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--navy-dark);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.filter-tab.is-active {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    min-height: 320px;
}

.product-grid.is-loading,
.compact-list.is-loading {
    opacity: .48;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 39, 102, .06);
    transition: .2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-card__media {
    position: relative;
    padding: 0;
    background: linear-gradient(180deg, var(--soft), #fff);
}

.product-card__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 8px;
    border-radius: 6px;
    background: #fff;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(8, 39, 102, .08);
}

.product-card__body {
    padding: 18px;
}

.product-card__sku {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.product-card h3 {
    margin: 5px 0 5px;
    color: var(--navy-dark);
    font-size: 19px;
    line-height: 1.25;
}

.product-card p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.product-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.product-card__meta strong,
.compact-item small,
.quick-view__body strong {
    color: var(--amber);
}

.product-card__meta span {
    color: var(--muted);
    font-size: 12px;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.quick-button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--teal-dark);
}

.add-button {
    padding: 0 12px;
    background: var(--green);
    color: #fff;
}

.add-button.is-added {
    background: var(--teal);
}

.product-visual {
    position: relative;
    display: grid;
    height: 214px;
    place-items: center;
    overflow: hidden;
    background: #f7fbfa;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.product-card:hover .product-visual img {
    transform: scale(1.035);
}

.product-visual span {
    position: absolute;
    bottom: 10px;
    display: block;
    border-radius: 6px 6px 3px 3px;
    box-shadow: 0 14px 28px rgba(8, 39, 102, .13);
}

.product-visual span:nth-child(1) {
    left: 50%;
    width: 58px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), currentColor);
    color: #8bd6c0;
    transform: translateX(-84px);
}

.product-visual span:nth-child(2) {
    left: 50%;
    width: 86px;
    height: 76px;
    background: linear-gradient(180deg, #fff, currentColor);
    color: #e4eef0;
    transform: translateX(-35px);
}

.product-visual span:nth-child(3) {
    left: 50%;
    width: 48px;
    height: 118px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), currentColor);
    color: #87c5f2;
    transform: translateX(48px);
}

.product-visual--amber span:nth-child(1),
.product-visual--amber span:nth-child(3) {
    color: #efc66f;
}

.product-visual--green span:nth-child(1),
.product-visual--green span:nth-child(3),
.product-visual--mint span:nth-child(1),
.product-visual--mint span:nth-child(3) {
    color: #7dddb7;
}

.product-visual--pink span:nth-child(1),
.product-visual--pink span:nth-child(3) {
    color: #ef9fbc;
}

.product-visual--slate span:nth-child(1),
.product-visual--slate span:nth-child(3) {
    color: #9fb0b4;
}

.formula-band {
    margin: 20px 0;
    background: linear-gradient(135deg, #061f4f, #082766 62%, #35a936);
    color: #fff;
}

.formula-band__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 48px 0;
}

.formula-band h2 {
    margin: 0 0 8px;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.25;
}

.formula-band p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.primary-link--dark {
    background: #fff;
    color: var(--teal-dark);
}

.split-products {
    background: var(--soft);
}

.split-products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.compact-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.compact-item {
    display: grid;
    grid-template-columns: 98px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.compact-item .product-visual {
    height: 78px;
    overflow: hidden;
    border-radius: 7px;
    background: var(--soft-2);
}

.compact-item .product-visual img {
    object-fit: cover;
}

.compact-item span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.compact-item strong,
.compact-item small {
    display: block;
}

.info-band {
    padding: 58px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.info-band__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 40px;
}

.info-band h2 {
    margin: 0 0 8px;
    color: var(--teal-dark);
    font-size: 34px;
}

.info-band p {
    margin: 0;
    color: var(--muted);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.info-cards article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.info-cards article > .lucide {
    width: 26px;
    height: 26px;
    margin-bottom: 12px;
    color: var(--teal);
}

.info-cards strong,
.info-cards span {
    display: block;
}

.info-cards strong {
    color: var(--teal-dark);
}

.info-cards span {
    color: var(--muted);
    font-size: 14px;
}

.footer {
    padding: 42px 0;
    background: var(--soft);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(550px, 3.4fr) repeat(3, minmax(130px, 1fr));
    gap: 34px;
}

.footer__brand {
    min-width: 0;
}

.footer h3 {
    color: var(--navy-dark);
}

.footer h3 {
    margin: 0 0 12px;
    font-size: 15px;
}

.footer p {
    max-width: 430px;
    margin: 18px 0 0;
    color: var(--muted);
}

.payment-methods {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(5px, 1.4vw, 10px);
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.payment-methods::-webkit-scrollbar {
    display: none;
}

.payment-methods img {
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: clamp(20px, 6vw, 34px);
    object-fit: contain;
}

.footer a,
.footer span {
    display: block;
    margin: 8px 0;
    color: var(--muted);
    font-size: 14px;
}

.quick-view {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(6, 24, 23, .48);
}

.quick-view.is-open {
    display: grid;
}

.quick-view__panel {
    position: relative;
    width: min(620px, 100%);
    padding: 28px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(6, 24, 23, .28);
}

.quick-view__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--teal-dark);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.quick-view h2 {
    margin: 8px 0;
    color: var(--teal-dark);
    line-height: 1.2;
}

.quick-view p {
    color: var(--muted);
}

.quick-view__body {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 24px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 32px;
    border: 1px dashed #bfd4d1;
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1040px) {
    .header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-button {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 97px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .nav-dropdown__trigger,
    .nav a {
        padding: 12px;
    }

    .mega-menu {
        position: static;
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 8px 12px 12px;
        border: 0;
        border-radius: 0;
        background: var(--soft);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mega-menu__column {
        gap: 2px;
    }

    .mega-menu__column a {
        padding: 6px 0;
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 12px;
    }

    .header-actions {
        grid-column: 1 / -1;
        display: flex;
        justify-self: start;
    }

    .header-actions .ghost-button,
    .header-actions .cart-button {
        display: none;
    }

    .hero {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .86) 58%, rgba(255, 255, 255, .32) 100%),
            url("../img/hero-bg.png") center right / cover no-repeat;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .toolbar,
    .formula-band__grid,
    .info-band__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .toolbar {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
    }

    .topbar__service {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        width: 100%;
    }

    .topbar__service span {
        width: 100%;
        white-space: normal;
    }

    .language-select--topbar {
        align-self: flex-start;
    }

    .brand {
        min-width: 0;
    }

    .brand__logo {
        width: min(230px, 62vw);
    }

    .header__inner {
        display: flex;
        min-height: 96px;
        gap: 14px;
    }

    .menu-button {
        position: absolute;
        top: 50%;
        right: 0;
        z-index: 4;
        margin-left: auto;
        padding: 9px 12px;
        transform: translateY(-50%);
    }

    .brand strong {
        font-size: 18px;
    }

    .hero__grid {
        min-height: auto;
        padding: 50px 0 54px;
        gap: 30px;
    }

    .hero__copy h1 {
        font-size: 33px;
        line-height: 1.12;
    }

    .hero__copy p {
        font-size: 15px;
        line-height: 1.75;
    }

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

    .hero-search button {
        min-height: 46px;
    }

    .slide-card {
        min-height: 104px;
    }

    .slide-card__content {
        width: min(100% - 28px, var(--container));
        padding: 28px 0;
    }

    .supplier-logos {
        gap: 30px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .supplier-logos::-webkit-scrollbar {
        display: none;
    }

    .supplier-logos img {
        flex: 0 0 auto;
        width: 104px;
        height: 33px;
    }

    .category-tile {
        min-height: 150px;
    }

    .category-grid,
    .product-grid,
    .split-products__grid,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .compact-item {
        grid-template-columns: 78px 1fr;
    }

    .compact-item .add-button {
        grid-column: 1 / -1;
    }

    .quick-view__body {
        grid-template-columns: 1fr;
    }
}
