﻿body {
    background-color: #121212;
    color: #e0e0e0;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Reduce padding on small screens */
@media (max-width: 576px) {
    main.container {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
}

.tiny-logo {
    max-height: 40px;
    filter: drop-shadow(0 0 4px white) drop-shadow(0 0 2px white);
}

.navbar {
    background-color: #1f1f1f !important;
    border-bottom: 1px solid #333;
}

.navbar-brand, .nav-link {
    color: #e0e0e0 !important;
}

    .nav-link:hover {
        color: #ffffff !important;
        text-decoration: underline;
    }

.container {
    background-color: #181818;
    margin-top: 0px !important;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

footer {
    background-color: #1f1f1f;
    border-top: 1px solid #333;
    color: #aaa;
    padding: 10px 0;
}

    footer a {
        color: #bbb;
    }

        footer a:hover {
            color: #fff;
        }

.btn-primary {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
}

    .btn-primary:hover {
        background-color: #d13b49;
        border-color: #d13b49;
    }

input.form-control,
select.form-select,
textarea.form-control {
    background-color: #2b2b2b;
    border: 1px solid #444;
    color: #e0e0e0;
}

    input.form-control:focus {
        background-color: #333;
        border-color: #bb2d3b;
        color: #fff;
        box-shadow: 0 0 0 0.2rem rgba(187, 45, 59, 0.25);
    }

label, h1, h2, h3, h4 {
    color: #f5f5f5;
}

.navbar .dropdown-menu {
    position: absolute;
    z-index: 1050;
}

/* Mini cart */
.mini-cart-inline {
    position: relative;
    transition: all 0.3s ease;
}

.mini-cart-floating {
    position: fixed;
    bottom: 5px;
    left: 130px;
    z-index: 2000;
    background: #212529;
    padding: 2px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.page-with-fixed-nav {
    padding-top: 70px;
}

.hidden {
    display: none !important;
}
