/* ========================================
   MAISON CONFORT - ULTRA MODERN DESIGN
   ======================================== */

/* Global Variables */
:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent: #00f5ff;
    --success: #00d4aa;
    --text: #e2e8f0;
    --text-dark: #1a202c;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode {
    --text: #1a202c;
    --bg-dark: #ffffff;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

/* Header */
header {
    background: var(--primary);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

header h1 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

header h1 a:hover {
    color: rgba(255, 255, 255, 0.9);
}

header p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

/* Navbar */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 1rem;
}

.navbar a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 80%;
}

.navbar a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
    }
    
    .menu-toggle {
        display: flex;
        align-self: flex-end;
    }
    
    .navbar ul {
        display: none !important;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar ul.active {
        display: flex !important;
    }
}


/* Dropdown Menu Styles */
.navbar > ul > li.dropdown {
    position: relative;
}

.navbar > ul > li.dropdown > .dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: var(--shadow);
    z-index: 1001;
    margin-top: 0.5rem;
}

.navbar > ul > li.dropdown:hover > .dropdown-menu {
    display: block !important;
}

.navbar .dropdown-menu li {
    list-style: none;
}

.navbar .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0;
}

.navbar .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    transform: translateX(5px);
}

.navbar .dropdown-menu a::after {
    display: none;
}

.navbar .dropdown-toggle {
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar > ul > li.dropdown > .dropdown-menu {
        position: static !important;
        display: none !important;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    
    .navbar > ul > li.dropdown:hover > .dropdown-menu {
        display: none !important; /* Disable hover on mobile */
    }
    
    .navbar ul.active li.dropdown .dropdown-menu {
        display: block !important; /* Show only when mobile menu is active */
    }
}


/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--primary);
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
    border-color: var(--accent);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.product-info .desc {
    font-size: 0.9rem;
    opacity: 0.8;
    flex-grow: 1;
}

.product-info .price {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-add-cart {
    display: none; /* Hidden as requested */
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-add-cart:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Cart Float Button */
.cart-float-btn {
    display: none !important; /* Hidden as requested */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    z-index: 999;
    transition: var(--transition);
    font-size: 1.5rem;
}

.cart-float-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f5576c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cart-content {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cart-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-content .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.cart-content .close:hover {
    color: #f5576c;
    transform: rotate(90deg);
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    gap: 1rem;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-val {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-item:hover {
    background: #f5576c;
    color: white;
}

.cart-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-checkout {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-checkout:hover {
    transform: scale(1.05);
}

.btn-clear {
    background: transparent;
    color: #f5576c;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid #f5576c;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-clear:hover {
    background: #f5576c;
    color: white;
}

/* Search */
.search-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
}

.search-input::placeholder {
    color: rgba(226, 232, 240, 0.5);
}

/* Theme Toggle */
#theme-toggle {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 998;
    transition: var(--transition);
}

#theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    color: rgba(226, 232, 240, 0.7);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup.open {
    display: flex;
}

.popup-content {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}

.popup-content .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.popup-content .close:hover {
    color: #f5576c;
    transform: rotate(90deg);
}

.popup-content img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.popup-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    header {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }
    
    /* Reduce blur and shadows on mobile for better performance */
    .navbar {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .product-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.2);
    }

/* ===== FILTER SECTION ===== */
.filter-section {
    text-align: center;
    margin: 2rem 0;
}

.filter-section label {
    font-weight: bold;
    margin-right: 10px;
}

.filter-section select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* ===== INDEX PAGE SECTIONS ===== */
.categories-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.categories-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text);
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-section h2 {
    color: var(--text);
    margin-bottom: 2rem;
}

.contact-buttons {
    position: static;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.contact-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-button.phone {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contact-button i {
    font-size: 1.5rem;
}

.contact-section p {
    margin-top: 2rem;
    color: var(--text);
    opacity: 0.8;
}
    
    .cart-content {
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .popup-content {
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

/* Category Cards - extracted from index.php inline styles */
.category-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
    border-color: var(--accent);
}

.category-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-category:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.contact-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Pagination Styles */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.btn-load-more:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.btn-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
}

.page-link.active {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.page-link.prev, .page-link.next {
    font-weight: 600;
    padding: 0 16px;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

/* Light mode specific overrides */
body.light-mode .page-link {
    background: white;
    border-color: #e2e8f0;
    color: #475569;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

body.light-mode .page-link:hover {
    background: #f8fafc;
    border-color: #0369a1;
    color: #0369a1;
}

body.light-mode .page-link.active {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.25);
    border-color: transparent;
}

body.light-mode .dots {
    color: #94a3b8;
}
