:root {
    --bg-color: #ffffff;
    --card-bg: #f8f9fa;
    --text-color: #212529;
}
body.dark-mode {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #ffffff;
}
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: 0.3s;
}
.product-card {
    background-color: var(--card-bg) !important;
    color: var(--text-color) !important;
}
.navbar img{
    height: 50px;
}
h6{
    text-align: center;
    font-size: 50px;
    color: white;
    padding: 20px;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    background-color: #1a1a1a;
    color: white;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
h6 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    padding: 40px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#rowBody {
    padding: 20px 0;
}
.product-card {
    background-color: #212529;
    color: white;
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-8px);
}
.img-container {
    width: 100%;
    height: 180px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 5px 5px 0 0;
}
.card-img-top {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.price-text {
    font-size: 1.2rem;
    color: #0dcaf0 !important;
}
.price-tag {
    font-weight: 800;
    margin: 10px 0;
}
.card-text {
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.form-control#searchInput {
    background-color: #2b3035;
    border: 1px solid #495057;
    color: white;
    border-radius: 20px;
    padding-left: 20px;
    transition: all 0.3s;
}
.form-control#searchInput:focus {
    background-color: #343a40;
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
    border-color: #0dcaf0;
}
.btn-success {
    background-color: #198754;
    border: none;
    border-radius: 8px;
}
.btn-danger {
    background-color: #dc3545;
    border: none;
    border-radius: 8px;
}
.navbar {
    border-bottom: 1px solid #333;
    padding: 15px 0;
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 100;
}
.product-card {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-card:hover {
    transform: scale(1.03);
    border-color: #0dcaf0 !important;
    box-shadow: 0 10px 30px rgba(13, 202, 240, 0.2) !important;
}
.card-title {
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.product-card {
    transition: all 0.4s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: #0dcaf0 !important;
    box-shadow: 0 0 20px rgba(13, 202, 240, 0.3) !important;
}
.form-control:focus {
    background-color: #2b3035 !important;
    color: white !important;
    border-color: #0dcaf0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.1) !important;
}
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}
.img-container {
    background-color: #fdfdfd !important;
    border-bottom: 1px solid #eee;
}