@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --bg-dark: #020202;
    --bg-card: #0a0a0a;
    --primary-cyan: #00f3ff;
    --primary-blue: #0055ff;
    --accent-silver: #e0e0e0;
    --text-main: #f5f5f7;
    --text-dim: #a1a1a6;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, filter 0.3s, box-shadow 0.3s;
    --transition-fast: all 0.2s ease;
    --glow: 0 0 20px rgba(0, 243, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .logo-text {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow-wrap: break-word;
}

/* --- Layout Utils --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Typography Gradient --- */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



.header-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
    transition: var(--transition);
}

.header-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8));
}

.rotating-badge {
    height: 70px;
    width: auto;
    animation: rotateSlow 20s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.2));
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-center {
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 22px;
    position: relative;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

.menu-btn:hover span {
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* --- Menu Drawer (Side View) --- */
.menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.4s;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--glass-border);
}

@media (max-width: 480px) {
    .menu-drawer {
        width: 75%;
    }
}

.menu-drawer.open {
    visibility: visible;
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.3s;
    z-index: 1600;
}

.drawer-close:hover {
    color: var(--primary-cyan);
    transform: rotate(90deg) scale(1.1);
}

/* Background Dim Overlay Logic - Applied via body mask if needed, but let's do it simply: */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1400;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.drawer-links {
    list-style: none;
    text-align: right;
    padding: 0 40px;
    width: 100%;
}

.drawer-links li {
    margin: 30px 0;
    overflow: hidden;
}

.drawer-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: transform 0.4s var(--transition), color 0.3s;
    transform: translateX(50px);
    opacity: 0;
    letter-spacing: 2px;
}

/* Staggered Link Animation (Sliding from Right) */
.menu-drawer.open .drawer-links a {
    transform: translateX(0);
    opacity: 1;
}

.menu-drawer.open .drawer-links li:nth-child(1) a { transition-delay: 0.1s; }
.menu-drawer.open .drawer-links li:nth-child(2) a { transition-delay: 0.2s; }
.menu-drawer.open .drawer-links li:nth-child(3) a { transition-delay: 0.3s; }

.drawer-links a:hover {
    color: var(--primary-cyan);
    transform: scale(1.05) translateX(-5px);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(2, 2, 2, 0.7), rgba(2, 2, 2, 0.8)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    transform: translateZ(0); /* Force GPU */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--glow);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.6);
}


/* --- Product Highlight --- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    background: linear-gradient(to right, #050505, #000);
    border-radius: 40px;
    padding: 80px;
    border: 1px solid var(--glass-border);
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 243, 255, 0.2));
}

.product-details h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.spec-chip {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    margin: 0 8px 8px 0;
    color: var(--primary-cyan);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 30px 0;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.qty-control {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 5px;
}

.qty-control button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.qty-control button:hover {
    background: var(--primary-cyan);
    color: #000;
}

.qty-control span {
    font-size: 1.2rem;
    width: 40px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}


/* --- Specs Gallery --- */
.specs-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.1);
}

.spec-card i {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.spec-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.spec-card.wide {
    grid-column: span 2;
}

.spec-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.spec-list {
    list-style: none;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spec-list li {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-list li i {
    font-size: 0.8rem;
    margin: 0;
}

.image-placeholder {
    width: 200px;
    height: 150px;
    background: var(--glass);
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.spec-card .image-placeholder {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
}

.spec-card.wide .image-placeholder {
    width: 250px;
    height: 180px;
    margin-bottom: 0;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.spec-card:hover .image-placeholder {
    border-color: var(--primary-cyan);
    background: rgba(0, 243, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
}

.spec-card:hover .image-placeholder img {
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.image-placeholder span {
    font-size: 0.6rem;
    font-family: 'Orbitron';
    color: var(--text-dim);
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
    .product-showcase {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .spec-card.wide {
        grid-column: span 1;
    }
    .spec-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
        line-height: 1.1;
    }
    .hero p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    .container {
        padding: 0 16px;
    }
    .product-details h2, #specs h2 {
        font-size: clamp(1.3rem, 7.5vw, 2.2rem);
        letter-spacing: 1px;
    }
    .header-logo {
        height: 60px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .drawer-links a {
        font-size: 1.5rem;
    }
    
    .checkout-box {
        padding: 30px 15px;
        width: 100%;
        border-radius: 20px;
        margin: 10px 0;
    }
    .checkout-flex {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .summary-total {
        font-size: 1.2rem;
    }
    
    .specs-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .spec-card.wide .spec-content {
        text-align: center;
    }
    .spec-card.wide .spec-list {
        justify-items: center;
        grid-template-columns: 1fr !important;
    }
    .image-placeholder {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .flex-center {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .btn-primary, .btn-secondary {
        width: 100% !important;
        text-align: center;
        margin: 0 !important;
    }
    .price-tag {
        font-size: 1.8rem;
    }
    .spec-card {
        padding: 20px;
    }
}

/* --- Header Scrolled State --- */
header.header-scrolled {
    padding: 5px 0;
    background: rgba(2, 2, 2, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(2, 2, 2, 0.6); 
    backdrop-filter: none; 
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, padding 0.3s;
}

/* --- Performance Optimization: Reveal Logic --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform; /* Force GPU acceleration */
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* --- Cart Bounce Animation --- */
.cart-bounce {
    animation: cartBounce 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary-cyan) !important;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(15deg); }
    100% { transform: scale(1); }
}

/* --- Menu Toggle Smoothness --- */
.menu-drawer.open {
    transform: translateY(0);
}

/* --- Hero Section Refinement --- */
/* --- Hero Section Refinement --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(2, 2, 2, 0.5), rgba(2, 2, 2, 0.8)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero {
        background-position: 35% center; /* Shift to center the cable and box content */
    }
}

/* --- Performance Optimization: General --- */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

[data-reveal], .main-img-display img, .menu-drawer, .btn-primary, .btn-secondary {
    will-change: transform, opacity; /* Force GPU Acceleration */
}

/* Optimize Backdrop Blur for Smoothness */
.glass-effect, header, .menu-drawer, .gallery-nav {
    backdrop-filter: blur(10px); /* Slightly reduced for better FPS */
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(0);
}

/* Fix scrolling lag on mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* --- Product Gallery --- */
.product-image-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-img-display {
    background: radial-gradient(circle, #1a1a1a, #000);
    aspect-ratio: 1/1;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.main-img-display img {
    width: 85%;
    height: auto;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.main-img-display:hover img {
    transform: scale(1.05);
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}

.thumb {
    aspect-ratio: 1/1;
    border-radius: 12px;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    opacity: 0.6;
    transition: var(--transition);
}

.thumb.active {
    border-color: var(--primary-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.thumb.active img, .thumb:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .thumbnail-row {
        gap: 8px;
    }
}

/* --- Gallery Navigation Arrows --- */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(2, 2, 2, 0.4);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.gallery-nav:hover {
    opacity: 1;
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }

.gallery-nav i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .gallery-nav {
        width: 35px;
        height: 35px;
    }
    .gallery-nav.prev { left: 10px; }
    .gallery-nav.next { right: 10px; }
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.preloader-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3));
    animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.6)); }
    100% { transform: scale(0.9); opacity: 0.5; }
}

#preloader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
/* --- Cart Drawer --- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--glass-border);
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: var(--glass);
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-family: 'Orbitron';
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #fff;
}

.cart-item-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-qty span {
    font-family: 'Orbitron';
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
    margin-top: 10px;
    transition: opacity 0.3s;
}

.remove-item:hover {
    opacity: 0.7;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 0.5);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-subtotal span:first-child {
    color: var(--text-dim);
}

.cart-subtotal span:last-child {
    font-family: 'Orbitron';
    font-weight: 700;
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-dim);
    margin-top: 50px;
    font-style: italic;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-cyan);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron';
}
