:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content wrapper to push footer down */
main {
    flex: 1 0 auto;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
}

body.dark-mode .navbar,
body.dark-mode footer,
body.dark-mode .card {
    background-color: var(--dark-card);
    color: var(--dark-text);
}

body.dark-mode .text-muted {
    color: #adb5bd !important;
}

body.dark-mode .border-bottom {
    border-color: #333 !important;
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}

.fw-bold {
    font-weight: 700 !important;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content wrapper to push footer down */
main {
    flex: 1 0 auto;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
}

body.dark-mode .navbar,
body.dark-mode footer,
body.dark-mode .card {
    background-color: var(--dark-card);
    color: var(--dark-text);
}

body.dark-mode .text-muted {
    color: #adb5bd !important;
}

body.dark-mode .border-bottom {
    border-color: #333 !important;
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}

.fw-bold {
    font-weight: 700 !important;
}

.badge-custom {
    padding: 0.5em 0.8em;
    border-radius: 6px;
}

.hover-shadow:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}