/* style1.css - Main Page Modern Dark Theme */

@font-face {
    font-family: 'ArialNova';
    src: url('fonts/ArialNova.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cardo-Regular';
    src: url('fonts/Cardo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --mw-bg-color: #050505;
    --mw-bg-alt: #0a0a0a;
    --mw-text-main: #f5f5f5;
    --mw-text-muted: #a0a0a0;
    --mw-accent: #ffffff;
    --mw-glass-bg: rgba(25, 25, 25, 0.4);
    --mw-glass-border: rgba(255, 255, 255, 0.05);
    --mw-glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --mw-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: var(--mw-bg-color);
    color: var(--mw-text-main);
    font-family: 'ArialNova', sans-serif;
    overflow-x: hidden;
}

/* Scroll Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Welcome Screen */
body.no-scroll {
    overflow: hidden;
}

#welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

#welcome-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.pulse-logo {
    width: 250px;
    height: auto;
    animation: comingout 5s ease-out forwards;
}

@keyframes comingout {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header Section */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 0 max(20px, calc((100vw - 1400px) / 2));
    transition: background-color 0.6s ease, box-shadow 0.6s ease, padding 0.6s ease;
    background-color: transparent;
}

header nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

header nav ul.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    /* reduced from 40px */
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    transition: opacity 0.3s ease;
}

header:not(.scrolled) .logo-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Make space in the middle for the logo to avoid overlapping with links */
header:not(.scrolled) nav ul.nav-links li:nth-child(3) {
    margin-right: 180px;
}

.logo-item {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.logo-item img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

header.scrolled nav ul.nav-links {
    justify-content: flex-end;
}

header.scrolled .logo-item {
    order: -1;
    margin-right: auto;
}

header.scrolled .logo-item img {
    height: 60px;
}

header nav ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: lighter;
    transition: color 0.3s ease;
    display: inline-block;
    padding-bottom: 5px;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width 0.3s ease, left 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active-link::after {
    width: 100%;
    left: 0;
}

header nav ul li a:hover {
    color: #fff;
}

header nav ul li a.active-link {
    font-weight: bold;
    color: #fff !important;
}

header nav ul li.logo-item a::after {
    display: none !important;
}

/* Mobile logo visible only on mobile */
.mobile-logo {
    display: none;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* Glassmorphism Panel Base Class */
.glass-panel {
    background: var(--mw-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--mw-glass-border);
    border-radius: 20px;
    box-shadow: var(--mw-glass-shadow);
    transition: var(--mw-transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Cardo-Regular', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.8) 70%, var(--mw-bg-color) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 6px;
    color: var(--mw-text-muted);
    text-transform: uppercase;
}

/* Product Sliders (Bestsellers & Nowosci) */
.product-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--mw-bg-color);
}

.nowosci {
    background-color: var(--mw-bg-alt);
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 60px;
    color: #fff;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.slider-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mw-text-muted);
    transition: var(--mw-transition);
    flex-shrink: 0;
}

.slider-arrow:hover {
    color: #fff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.slider-arrow svg {
    width: 100%;
    height: 100%;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
    /* Space for glassmorphism shadow */
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-item {
    flex: 0 0 calc((100% - 60px) / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 15px;
}

.slider-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.6);
}

.slider-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    filter: brightness(0.9);
    transition: filter 0.4s ease;
}

.slider-item:hover img {
    filter: brightness(1.1);
}

.btn-container {
    margin-top: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: var(--mw-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: var(--mw-transition);
    z-index: -1;
}

.btn-primary:hover {
    color: #000;
    border-color: #fff;
}

.btn-primary:hover::before {
    left: 0;
}

/* Reviews Section */
.reviews {
    padding: 120px 20px;
    background-color: var(--mw-bg-color);
    text-align: center;
    position: relative;
}

.review-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.review-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mw-text-muted);
    transition: var(--mw-transition);
    flex-shrink: 0;
}

.review-arrow:hover {
    color: #fff;
    transform: scale(1.1);
}

.review-arrow svg {
    width: 100%;
    height: 100%;
}

.review-viewport {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.review-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.review-content {
    max-width: 800px;
    padding: 60px 50px;
    margin: 0 auto;
}

.review-text {
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Cardo-Regular', serif;
}

.review-author {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mw-text-muted);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--mw-transition);
}

.review-dot.active {
    background-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.mw-faq-section {
    padding: 100px 5% 150px;
    max-width: 900px;
    margin: 0 auto;
}

.mw-section-title {
    font-size: 48px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.mw-section-title span {
    display: block;
    font-size: 18px;
    color: var(--mw-text-muted);
    letter-spacing: 4px;
    margin-top: 10px;
    font-weight: 300;
}

.mw-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mw-faq-item {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 2px solid transparent;
    /* Glass panel styles applied directly */
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.mw-faq-item:hover {
    border-left-color: rgba(255, 255, 255, 0.5);
    background: rgba(35, 35, 35, 0.8);
}

.mw-faq-item.active {
    border-left-color: #fff;
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.mw-faq-question {
    width: 100%;
    padding: 25px 35px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mw-faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mw-faq-item:hover .faq-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
}

.mw-faq-item.active .faq-icon-wrapper {
    background: #fff;
    color: #000;
}

.mw-faq-item.active .mw-faq-icon {
    transform: rotate(180deg);
}

.mw-faq-answer {
    max-height: 0;
    padding: 0 35px;
    color: var(--mw-text-muted);
    font-size: 15px;
    line-height: 1.7;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.mw-faq-item.active .mw-faq-answer {
    max-height: 300px;
    /* Arbitrary large height */
    padding: 0 35px 30px;
    opacity: 1;
}

@media (max-width: 576px) {
    .mw-faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .mw-faq-answer {
        padding: 0 20px;
    }

    .mw-faq-item.active .mw-faq-answer {
        padding: 0 20px 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    background-color: var(--mw-bg-alt);
    font-family: 'ArialNova', sans-serif;
    position: relative;
}

.contact-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.contact-info {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 40px;
    letter-spacing: 6px;
    color: #fff;
    text-transform: uppercase;
}

.contact-logo {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.contact-info p {
    font-size: 15px;
    color: var(--mw-text-muted);
    margin-bottom: 20px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.contact-info p:hover {
    color: #fff;
}

.contact-form-container {
    flex: 1.5;
    padding: 60px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-form-header {
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 300;
    font-size: 26px;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 5px;
    font-family: 'ArialNova', sans-serif;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #fff;
    box-shadow: 0 1px 0 #fff;
}

#contact-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-top: 10px;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.submit-btn {
    align-self: center;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    color: #000;
    border: none;
    padding: 18px 60px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 3px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    margin-top: 20px;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

#form-messages {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.success {
    color: #4ade80;
}

.error {
    color: #f87171;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }

    .contact-form-container {
        width: 100%;
        padding: 40px 30px;
    }
}



/* Responsywnosc */
@media (max-width: 992px) {

    /* Header layout for mobile and tablet: logo on the left, hamburger on the right */
    header {
        padding: 0 30px;
        height: 80px;
        background-color: rgba(5, 5, 5, 0.95);
        /* Fixed solid header on mobile */
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    header nav {
        justify-content: flex-end;
        flex-grow: 0;
    }

    .mobile-logo {
        display: block;
        z-index: 101;
    }

    .mobile-logo img {
        height: 40px;
        width: auto;
    }

    header nav ul.nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.4s ease;
        display: flex;
        /* Make sure it's not display: none */
    }

    header nav ul.nav-links.active {
        left: 0;
    }

    header:not(.scrolled) .logo-item {
        position: static;
        transform: none;
    }

    header:not(.scrolled) nav ul.nav-links li:nth-child(3) {
        margin-right: 0;
    }

    /* Logo inside mobile menu */
    .logo-item {
        order: -1;
        align-self: center;
        margin: 0 0 40px 0;
    }

    .logo-item img {
        height: 80px;
    }

    /* Hamburger Menu Styles */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Keep review font smaller */
    .review-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .slider-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .review-slider-wrapper {
        gap: 10px;
    }

    .review-arrow {
        width: 30px;
        height: 30px;
    }

    .review-item {
        padding: 0 5px;
    }

    .review-content {
        padding: 40px 30px;
    }

    .review-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .mw-section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .review-content {
        padding: 30px 15px;
    }

    .review-text {
        font-size: 16px;
    }

    .slider-item {
        flex: 0 0 100%;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .mw-faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }

    .mw-faq-answer {
        font-size: 14px;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(to bottom, #050505 0%, #000000 100%);
    color: #fff;
    font-family: 'ArialNova', sans-serif;
    padding: 100px 40px 40px 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-top {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: flex-start;
}

.footer-logo {
    flex: 2;
    padding-right: 40px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
    transition: filter 0.4s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
}

.footer-links-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-col a {
    position: relative;
    color: var(--mw-text-muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    padding-bottom: 5px;
    width: fit-content;
}

.footer-links-col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.4s ease, left 0.4s ease;
}

.footer-links-col a:hover {
    color: #fff;
}

.footer-links-col a:hover::after {
    width: 100%;
    left: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-copyright {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* Cart Counter */
.cart-btn {
    position: relative;
}
.cart-counter {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #ff4d4d;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'ArialNova', sans-serif;
    pointer-events: none;
}
