:root {
    --bb-primary: #0d6efd;
    --bb-accent: #f59e0b;
    --bb-dark: #1f2937;
}

body {
    background: #f8f9fa;
    color: var(--bb-dark);
}

.site-header {
    background: #fff;
}

.site-header .navbar-brand {
    color: var(--bb-primary);
}

.product-card {
    transition: all .2s ease;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.product-card .card-img-top {
    height: 290px;
    object-fit: cover;
    border-bottom: 1px solid #f1f1f1;
}

@media (max-width: 767.98px) {
    .product-card .card-img-top {
        height: 230px;
    }
}

.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #4f46e5 100%);
}

.site-footer a:hover {
    color: #fff !important;
    /* text-decoration: underline !important; */
}

.nav-underline .nav-link {
    color: #000;
    padding: .25rem .75rem;
    font-weight: 600;
}

.nav-underline .nav-link:hover {
    color: var(--bb-primary);
}

/* Tables */
.table thead th {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #6c757d;
}

/* Buttons */
.btn-primary {
    background: var(--bb-primary);
    border-color: var(--bb-primary);
}

.btn-primary:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
}

/* Misc */
code {
    color: #d63384;
    background: #fff5f7;
    padding: 1px 4px;
    border-radius: 3px;
}

.thumb:hover {
    outline: 2px solid var(--bb-primary);
}

/*.py-4 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}*/

.p-2 {
    padding: 1.2rem !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    line-height: 25px;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(2 9 20) !important;
}

/* Professional Hover Dropdown */
@media (min-width: 992px) {
    .custom-hover-dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    .custom-hover-dropdown>.dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 15px;
    }
}

.custom-hover-dropdown>.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1) !important;
    padding: 0.75rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    min-width: 220px;
}

.custom-hover-dropdown .dropdown-item {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #475569;
    transition: all 0.2s ease;
}

.custom-hover-dropdown .dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--bb-primary);
    padding-left: 1.8rem;
}

.custom-hover-dropdown .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.05);
    margin: 0.5rem 0;
}