:root {
    --yellow: #ffd200;
    --yellow-soft: #fff4b8;
    --ink: #172126;
    --muted: #69777f;
    --line: #e8ecef;
    --bg: #f5f6f7;
    --price: #d71920;
    --card: #ffffff;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 18px 45px rgb(23 33 38 / 9%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

input:focus::placeholder {
    color: transparent;
    transition: color 0.15s ease;
}

.shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--card);
    box-shadow: 0 1px 0 var(--line);
}

.site-header__top {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto auto minmax(220px, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand__mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--yellow);
}

.catalog-toggle,
.search button,
.btn {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.catalog-toggle {
    padding: 0 18px;
    background: var(--yellow);
    color: var(--ink);
}

.search {
    display: grid;
    grid-template-columns: 1fr auto;
    background: var(--bg);
    border-radius: 999px;
    padding: 4px;
}

.search input,
.catalog-search input {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 18px;
    min-height: 44px;
}

.search button {
    padding: 0 20px;
    background: var(--ink);
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 14px;
    white-space: nowrap;
}

.cart-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--ink);
}

.cart-link strong {
    color: var(--price);
}

.site-nav {
    border-top: 1px solid var(--line);
}

.site-nav__inner {
    height: 44px;
    display: flex;
    gap: 26px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    overflow-x: auto;
}

.main-content {
    padding: 28px 0 56px;
}

.hero {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
    padding: 44px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--yellow), #ffe97a 55%, #fff7cb);
    overflow: hidden;
}

.hero h1,
.page-head h1,
.product-detail h1,
.ar-shell h1,
.error-card h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 580px;
    font-size: 18px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.hero__visual {
    position: relative;
    min-height: 260px;
}

.hero__cube {
    position: absolute;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.hero__cube--one {
    width: 190px;
    height: 190px;
    right: 78px;
    top: 8px;
    background: #ffffff;
    transform: rotate(8deg);
}

.hero__cube--two {
    width: 135px;
    height: 135px;
    right: 20px;
    bottom: 20px;
    background: #27343a;
    transform: rotate(-14deg);
}

.hero__cube--three {
    width: 96px;
    height: 96px;
    left: 28px;
    bottom: 48px;
    background: #f4a261;
    transform: rotate(18deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 0 22px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--dark {
    background: var(--ink);
    color: white;
}

.btn--yellow {
    background: var(--yellow);
    color: var(--ink);
}

.btn--wide {
    width: 100%;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.promo-card {
    min-height: 118px;
    display: flex;
    align-items: center;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--card);
    box-shadow: 0 1px 0 var(--line);
    font-weight: 800;
}

.promo-card--yellow {
    background: var(--yellow-soft);
}

.section-block,
.page-head,
.product-detail,
.tabs-placeholder,
.ar-shell,
.error-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 1px 0 var(--line);
}

.section-heading,
.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2,
.page-head h1 {
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
}

.product-card__media {
    position: relative;
    display: block;
    min-height: 220px;
    background: #f7f8f9;
}

.product-card__media img,
.product-detail__gallery img,
.cart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__badge,
.gallery-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--yellow);
    font-size: 12px;
    font-weight: 800;
}

.product-card__favorite {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 20px rgb(23 33 38 / 10%);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.product-card__sku,
.buy-panel__sku,
.ar-shell__meta,
.breadcrumbs,
.search-summary {
    color: var(--muted);
    font-size: 13px;
}

.ar-shell__meta {
    margin-top: 12px;
    margin-bottom: 8px;
}

.product-card__title {
    min-height: 48px;
    font-weight: 700;
    line-height: 1.25;
}

.product-card__rating,
.buy-panel__rating {
    color: #f2a900;
    font-size: 13px;
}

.product-card__rating span,
.buy-panel__rating span {
    color: var(--muted);
}

.product-card__price,
.buy-panel__price,
.ar-shell__price {
    color: var(--price);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.product-card__price span,
.buy-panel__price span,
.ar-shell__price span {
    color: var(--muted);
    font-size: 14px;
    margin-left: 4px;
}

.product-card__actions {
    margin-top: auto;
}

.catalog-search {
    min-width: min(420px, 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
}

.product-detail__gallery {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #f7f8f9;
}

.buy-panel {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.stacked-actions {
    margin: 0;
}

.delivery-note {
    padding: 14px;
    border-radius: 16px;
    background: var(--bg);
    color: var(--muted);
    font-size: 14px;
}

.tabs-placeholder {
    margin-top: 22px;
}

.tabs-placeholder__tab {
    min-height: 44px;
    margin-right: 10px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    cursor: pointer;
}

.tabs-placeholder__tab--active {
    background: var(--ink);
    color: white;
}

.tabs-placeholder__content {
    margin-top: 18px;
    color: var(--muted);
}

.product-description {
    /* Описание хранится как plain text с переносами строк (TechSpec §7.1 п.7) */
    white-space: pre-line;
    max-width: 860px;
    line-height: 1.55;
}

.ar-shell__intro {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 28px;
    align-items: start;
}

.ar-shell__purchase {
    padding: 20px;
    border-radius: 22px;
    background: var(--bg);
}

.viewer-card {
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid #d4c5a9;
    border-radius: 24px;
    background: #f5f0e6;
}

.viewer-frame {
    display: block;
    width: 100%;
    min-height: 620px;
    border: 0;
    background: #f5f0e6;
}

.viewer-fallback {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    color: var(--ink);
    background: #ede8df;
}

/* Технический <img> внутри ссылки rel="ar": нужен AR Quick Look для колбэка кнопки «В корзину», визуально скрыт. */
.ar-quicklook-trigger-img {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.viewer-fallback span {
    color: var(--muted);
}

.viewer-fallback a {
    color: var(--yellow);
    font-weight: 800;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    margin-top: 22px;
}

.cart-items,
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item,
.cart-summary {
    padding: 18px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 18px;
    align-items: center;
}

.cart-item img {
    height: 110px;
    border-radius: 16px;
    background: var(--bg);
}

.cart-item h2,
.cart-summary h2 {
    margin: 0;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.cart-summary__continue {
    color: var(--muted);
    text-align: center;
    font-weight: 700;
}

.empty-state,
.error-card {
    padding: 36px;
    border: 1px dashed #cfd7dc;
    border-radius: var(--radius-lg);
    background: white;
    text-align: center;
}

.error-card {
    max-width: 720px;
    margin: 48px auto;
}

.error-card code {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--bg);
}

.error-card__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}

.footer {
    color: var(--muted);
    background: white;
    border-top: 1px solid var(--line);
}

.footer__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

@media (max-width: 980px) {

    .site-header__top,
    .hero,
    .product-detail,
    .ar-shell__intro,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .header-actions {
        flex-wrap: wrap;
    }

    .product-grid,
    .promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 20px, 1240px);
    }

    .site-header__top {
        gap: 10px;
    }

    .search,
    .catalog-search,
    .section-heading,
    .page-head,
    .cart-item {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .page-head,
    .footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .section-block,
    .page-head,
    .product-detail,
    .tabs-placeholder,
    .ar-shell {
        padding: 20px;
        border-radius: 22px;
    }

    .hero__visual {
        display: none;
    }

    .product-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .product-detail__gallery,
    .viewer-frame {
        min-height: 420px;
    }

    .cart-item {
        grid-template-columns: 96px 1fr;
    }
}

/* ==========================================================================
   PREMIUM MOBILE PWA STYLES (App-like UI)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --app-bar-height: 56px;
    }

    body {
        background: #f8fafc;
    }

    .catalog-toggle,
    .site-header__top .search,
    .header-actions__city,
    .header-actions__item,
    .site-nav,
    .breadcrumbs,
    .footer {
        display: none !important;
    }

    /* Container adjustments */
    .shell {
        width: min(100% - 24px, 1240px) !important;
    }

    .main-content {
        padding: 16px 0 32px !important;
    }

    /* Fixed Premium Glass Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) saturate(190%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) !important;
    }

    .site-header__top {
        min-height: var(--app-bar-height) !important;
        height: var(--app-bar-height) !important;
        grid-template-columns: 1fr auto !important;
        gap: 0 !important;
        padding: 0 16px !important;
    }

    .brand {
        gap: 8px !important;
    }

    .brand__mark {
        width: 32px !important;
        height: 32px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
    }

    .brand__text {
        font-size: 16px !important;
    }

    .cart-link {
        padding: 8px 14px !important;
        border-radius: 999px !important;
        background: var(--yellow-soft) !important;
        color: var(--ink) !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        box-shadow: 0 2px 8px rgba(255, 210, 0, 0.15);
    }

    /* Hero Banner Redesign */
    .hero {
        padding: 24px !important;
        border-radius: 24px !important;
        min-height: 200px !important;
        background: linear-gradient(135deg, var(--yellow), #ffe14d) !important;
        margin-bottom: 16px;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero h1 {
        font-size: 24px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.03em !important;
        margin-bottom: 8px !important;
    }

    .hero p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
        line-height: 1.3;
    }

    .hero__visual {
        display: none !important;
    }

    /* Horizontal scroll for promo cards */
    .promo-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 12px !important;
        padding: 4px 4px 16px !important;
        margin: 16px 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .promo-grid::-webkit-scrollbar {
        display: none;
    }

    .promo-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
        min-height: 96px !important;
        display: flex !important;
        align-items: center !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        padding: 16px !important;
        font-size: 14px !important;
    }

    /* Grid Sections */
    .section-block {
        padding: 18px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.01) !important;
        margin-bottom: 16px;
    }

    .section-heading {
        margin-bottom: 8px;
    }

    .section-heading h2 {
        font-size: 18px !important;
        letter-spacing: -0.02em !important;
    }

    /* 2-Column Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 14px !important;
    }

    /* App-like Product Cards */
    .product-card {
        border-radius: 18px !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
    }

    .product-card__media {
        min-height: 190px !important;
        height: 190px !important;
        background: #f8fafc !important;
    }

    .product-card__badge {
        font-size: 9px !important;
        padding: 4px 8px !important;
        left: 10px !important;
        top: 10px !important;
    }

    .product-card__favorite {
        width: 28px !important;
        height: 28px !important;
        right: 10px !important;
        top: 10px !important;
        font-size: 12px;
    }

    .product-card__body {
        padding: 12px !important;
        gap: 4px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .product-card__sku {
        font-size: 11px !important;
    }

    .product-card__title {
        font-size: 13px !important;
        min-height: 32px !important;
        max-height: 32px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
        margin-bottom: 2px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-card__rating {
        font-size: 11px !important;
    }

    .product-card__price {
        font-size: 16px !important;
        font-weight: 800 !important;
        margin-top: auto !important;
        padding-right: 32px;
        /* space for absolute button */
    }

    .product-card__price span {
        font-size: 11px !important;
    }

    /* Transform "Add to Cart" button into a compact "+" icon */
    .product-card__actions {
        position: absolute;
        bottom: 10px;
        right: 10px;
        margin: 0 !important;
        z-index: 5;
    }

    .product-card__actions .btn {
        min-height: 32px !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        background: var(--ink) !important;
        color: white !important;
        font-size: 0 !important;
        /* hide "В корзину" text */
        position: relative !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border: none !important;
        transition: transform 0.1s ease;
    }

    .product-card__actions .btn:active {
        transform: scale(0.9) !important;
    }

    .product-card__actions .btn::before,
    .product-card__actions .btn::after {
        content: '' !important;
        position: absolute !important;
        background: white !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 1px !important;
    }

    .product-card__actions .btn::before {
        width: 12px !important;
        height: 2px !important;
    }

    .product-card__actions .btn::after {
        width: 2px !important;
        height: 12px !important;
    }

    /* Catalog Page adjustments */
    .page-head {
        padding: 16px !important;
        border-radius: 24px !important;
        margin-bottom: 16px;
    }

    .page-head h1 {
        font-size: 20px !important;
        letter-spacing: -0.02em !important;
    }

    .page-head p {
        font-size: 12px !important;
    }

    .catalog-search {
        position: relative;
        background: #f1f5f9 !important;
        border: none !important;
        border-radius: 16px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
    }

    .catalog-search::before {
        content: 'search';
        font-family: 'Material Symbols Rounded';
        position: absolute;
        left: 14px;
        color: var(--muted);
        font-size: 20px;
        pointer-events: none;
    }

    .catalog-search input {
        min-height: 44px !important;
        font-size: 14px !important;
        padding: 0 12px 0 44px !important;
        width: 100% !important;
        background: transparent !important;
    }

    .catalog-search input:focus::placeholder {
        color: transparent !important;
    }

    .catalog-search .btn {
        display: none !important;
    }


    /* Product Detail page */
    .product-detail {
        padding: 16px !important;
        border-radius: 24px !important;
        gap: 16px !important;
    }

    .product-detail__gallery {
        min-height: 280px !important;
        border-radius: 18px !important;
    }

    .buy-panel {
        padding: 0 !important;
        border: none !important;
        gap: 12px !important;
    }

    .buy-panel h1 {
        font-size: 20px !important;
        letter-spacing: -0.02em !important;
        margin: 0 !important;
    }

    .buy-panel__price {
        font-size: 22px !important;
    }

    .stacked-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .btn--wide {
        min-height: 48px !important;
        border-radius: 16px !important;
        font-size: 15px !important;
    }

    .tabs-placeholder {
        padding: 16px !important;
        border-radius: 24px !important;
    }

    .tabs-placeholder__tab {
        padding: 0 14px !important;
        min-height: 36px !important;
        font-size: 13px !important;
    }

    /* AR View details */
    .ar-shell {
        padding: 16px !important;
        border-radius: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .ar-shell h1 {
        font-size: 20px !important;
    }

    .ar-shell__intro {
        display: contents !important;
    }

    .ar-shell__intro>div:first-child {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .ar-shell__purchase {
        padding: 16px !important;
        border-radius: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        order: 3 !important;
    }

    .ar-shell__purchase form {
        flex-grow: 1;
        max-width: 120px;
        flex-shrink: 0;
    }

    .ar-shell__purchase .btn {
        min-height: 40px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
        padding: 0 12px !important;
    }

    .ar-shell__price {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        font-size: 22px !important;
    }

    .viewer-card {
        border-radius: 18px !important;
        order: 2 !important;
        margin-top: 0 !important;
    }

    .viewer-frame {
        min-height: 460px !important;
    }

    .ar-shell__meta {
        order: 4 !important;
        margin: 0 !important;
        text-align: center !important;
        font-size: 12px !important;
        color: var(--muted) !important;
    }

    .ar-shell--mobile-quick-open .viewer-card {
        order: 1 !important;
    }

    .ar-shell--mobile-quick-open .ar-shell__intro>div:first-child {
        order: 2 !important;
    }

    .ar-shell--mobile-quick-open .ar-shell__purchase {
        order: 3 !important;
    }

    .ar-shell--mobile-quick-open .ar-shell__meta {
        order: 4 !important;
    }

    /* Cart view adjustments */
    .cart-layout {
        gap: 16px !important;
    }

    .cart-item {
        padding: 12px !important;
        border-radius: 18px !important;
        grid-template-columns: 80px 1fr !important;
        position: relative;
    }

    .cart-item img {
        height: 80px !important;
        width: 80px !important;
        border-radius: 12px !important;
    }

    .cart-item h2 {
        font-size: 14px !important;
        line-height: 1.2;
    }

    .cart-item .product-card__price {
        font-size: 16px !important;
    }

    .cart-summary {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .cart-summary h2 {
        font-size: 18px !important;
    }
}