/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066ff;
    --secondary-cyan: #00ffff;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-glow: rgba(0, 102, 255, 0.3);
    --cyber-glow: rgba(0, 255, 255, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
.site-header {
    background: var(--darker-bg);
    border-bottom: 2px solid var(--secondary-cyan);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--cyber-glow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    gap: 12px;
    flex-wrap: nowrap;
}

.logo-container {
    width: auto;
    height: 64px;
    flex-shrink: 0;
}

.animated-logo {
    width: 100%;
    height: 100%;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-cyan);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--secondary-cyan);
}

/* Search Bar */
.search-container {
    position: relative;
    width: 300px;
    flex-shrink: 1;
}

#search-input {
    width: 100%;
    padding: 10px 15px;
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

#search-input:focus {
    outline: none;
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 20px var(--cyber-glow);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-primary);
}

.search-result-item:hover {
    background: var(--primary-blue);
    color: white;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--secondary-cyan);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 255, 255, 0.05) 20px,
        rgba(0, 255, 255, 0.05) 40px
    );
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--primary-blue);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    margin: 5px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--secondary-cyan);
    color: var(--darker-bg);
    box-shadow: 0 0 30px var(--cyber-glow);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ===== COMPACT SQUARE PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Square product card - entire card is clickable link */
.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Force square aspect ratio */
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 10px 40px var(--cyber-glow);
}

/* Image container - maintains square proportions without cropping */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #2a2a3a;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background: #1a1a2a;
    padding: 8px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product info - compact layout */
.product-info {
    padding: 12px 15px;
    background: var(--card-bg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-category {
    color: var(--secondary-cyan);
    font-size: 0.7rem;
    margin-bottom: 4px;
    opacity: 0.8;
}

.product-description {
    display: none;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 6px 0 4px 0;
}

.stock-status {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: bold;
    width: fit-content;
    margin-bottom: 8px;
}

.in-stock {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.out-of-stock {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

/* Hide the View Details button */
.product-info .btn-primary {
    display: none;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 40px 0;
    color: var(--secondary-cyan);
    text-shadow: 0 0 20px var(--cyber-glow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--cyber-glow);
}

.feature-card svg {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    stroke: var(--secondary-cyan);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-blue);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--secondary-cyan);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* ===== CATEGORY PAGE ===== */
.category-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 40px 0;
}

.category-sidebar {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.category-sidebar h3 {
    color: var(--secondary-cyan);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.category-list {
    list-style: none;
    margin-bottom: 30px;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

#price-range {
    width: 100%;
    margin: 10px 0;
}

#price-value {
    color: var(--secondary-cyan);
    font-size: 14px;
}

.sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.sort-bar select {
    padding: 8px 15px;
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    color: var(--text-primary);
    border-radius: 5px;
    cursor: pointer;
}

.sort-bar select:focus {
    outline: none;
    border-color: var(--secondary-cyan);
}

.product-count {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===== PRODUCT DETAILS PAGE ===== */
.product-details {
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--secondary-cyan);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid var(--primary-blue);
}

.main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: #2a2a3a;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-detailed h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product-price-large {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--cyber-glow);
}

.product-description-full {
    margin-bottom: 30px;
}

.product-description-full h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-description-full p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    overflow: hidden;
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-blue);
    color: white;
}

#quantity {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
}

#quantity:focus {
    outline: none;
}

.wishlist-btn {
    padding: 12px 15px;
}

.product-specs {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
}

.product-specs h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.product-specs table {
    width: 100%;
}

.product-specs td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.product-specs td:first-child {
    color: var(--secondary-cyan);
    font-weight: bold;
    width: 30%;
}

.product-specs td:last-child {
    color: var(--text-secondary);
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-cyan);
    font-size: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .category-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    /* Adjust square cards on tablet */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-container {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-image {
        height: 300px;
    }
    
    /* Keep square aspect ratio on mobile */
    .product-card {
        aspect-ratio: 1 / 1;
    }
    
    .product-info h3 {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-price-large {
        font-size: 2rem;
    }
}

/* ===== MOBILE MENU ACTIVE STATE ===== */
.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    padding: 20px;
    border-bottom: 2px solid var(--secondary-cyan);
    animation: slideIn 0.3s ease;
}

.main-nav.active ul {
    flex-direction: column;
    align-items: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }
/* ===== MOBILE BOTTOM NAVIGATION - FIXED AT BOTTOM (ONLY ON MOBILE) ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 255, 0.2);
    z-index: 1000;
    padding: 0.5rem 1rem;
    display: none; /* Hidden on desktop by default */
}

.mobile-nav-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    border-radius: 50px;
    padding: 0.4rem;
}

/* Back & Settings buttons - Icon only */
.back-btn i,
.settings-btn i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.5));
    transition: transform 0.2s ease;
}

.back-btn:hover i,
.settings-btn:hover i {
    transform: scale(1.1);
    color: #00ffff;
}

/* Profile button - Icon + Username below */
.profile-btn {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), rgba(0, 255, 255, 0.2));
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 255, 255, 0.3);
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.profile-circle {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.5));
}

.username-display {
    font-size: 0.65rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-content span:not(.username-display) {
    font-size: 0.65rem;
    font-weight: 600;
    color: #ffffff;
}

/* Active/Click Effects */
.mobile-nav-item:active {
    transform: scale(0.95);
}

/* Show on Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block; /* Show mobile footer */
    }
    
    /* Hide desktop footer on mobile */
    .desktop-footer {
        display: none;
    }
    
    /* Add padding to body to prevent content from hiding behind fixed footer */
    body {
        padding-bottom: 70px;
    }
}

/* Show Desktop Footer on larger screens */
@media (min-width: 769px) {
    .desktop-footer {
        display: block;
    }
    
    .mobile-bottom-nav {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* Small mobile devices - even more compact */
@media (max-width: 480px) {
    .mobile-bottom-nav {
        padding: 0.4rem 0.8rem;
    }
    
    .back-btn i,
    .settings-btn i {
        font-size: 1.3rem;
    }
    
    .profile-circle {
        font-size: 1.3rem;
    }
    
    .username-display,
    .profile-content span {
        font-size: 0.6rem;
    }
    
    .profile-btn {
        padding: 0.3rem 0.5rem;
    }
    
    body {
        padding-bottom: 65px;
    }
}

/* Safe area for iPhone notch */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .mobile-bottom-nav {
            padding-bottom: max(0.4rem, env(safe-area-inset-bottom));
        }
        body {
            padding-bottom: calc(70px + env(safe-area-inset-bottom));
        }
    }
}

/* Animation for profile button on hover */
.profile-btn:hover .profile-circle {
    animation: gentlePulse 0.5s ease;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
/* Orders button - Icon only */
.orders-btn i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.5));
    transition: transform 0.2s ease;
}

.orders-btn:hover i {
    transform: scale(1.1);
    color: #00ffff;
}

/* Update mobile-nav-container to accommodate 4 items */
.mobile-nav-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

/* Adjust for smaller screens with 4 buttons */
@media (max-width: 480px) {
    .back-btn i,
    .settings-btn i,
    .orders-btn i {
        font-size: 1.3rem;
    }
    
    .mobile-nav-container {
        gap: 0.3rem;
    }
    
    .profile-btn {
        padding: 0.3rem 0.4rem;
    }
    
    .username-display,
    .profile-content span {
        font-size: 0.55rem;
    }
    
    .profile-circle {
        font-size: 1.2rem;
    }
}