/* Footer Styles */
footer {
    background-color: #1e3a34;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
    font-size: 0.9em;
}
/* 🌑 Improved Dark Mode Styling */

body.dark-mode {
    background-color: #0b1a0f !important; /* deeper greenish black */
    color: #cdeac0 !important;            /* soft mint text */
    font-family: 'Segoe UI', sans-serif;
}

body.dark-mode nav {
    background-color: #133e1e !important;
    border-bottom: 2px solid #7fdb6a !important;
}

body.dark-mode a {
    color: #8bf599 !important;
    text-decoration: none;
}

body.dark-mode a:hover {
    text-decoration: underline;
    color: #b7ffcc !important;
}

body.dark-mode .login-container,
body.dark-mode .content-box,
body.dark-mode .product-card,
body.dark-mode .cart-box {
    background-color: #122a18 !important;
    border: 1px solid #356f4f !important;
    box-shadow: 0 0 10px rgba(139, 245, 153, 0.15);
    padding: 1.5em;
    border-radius: 12px;
    color: #e2ffe2 !important;
}

/* Headings */
body.dark-mode h1,
body.dark-mode h2 {
    color: #a7ffb5 !important;
}

/* Buttons */
body.dark-mode button {
    background-color: #1f4e31 !important;
    color: #cdeac0 !important;
    border: 1px solid #8bf599 !important;
    border-radius: 6px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

body.dark-mode button:hover {
    background-color: #296e45 !important;
    cursor: pointer;
}

/* Footer */
body.dark-mode footer {
    background-color: #112c1c !important;
    color: #85d993 !important;
    border-top: 1px solid #1c4c30 !important;
    padding: 1em;
    text-align: center;
}
