@font-face {
    font-family: 'Lexend';
    src: url('/fonts/lexend-latin-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('/fonts/Lexend-SemiBold.woff2') format('woff2');
    font-weight: bold; /* bold */
    font-style: normal;
}

body {
    font-family: 'Lexend', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.pageContent {
    flex: 1;
}

footer {
    margin-top: auto;
}

.navbar-showshas {
    background: linear-gradient(135deg, #c44d58, #e17071);
    color: #f1f1f1;
}

.bg-showshas {
    background-color: #d15f5f !important;
}

.bg-showshas-subtle {
    background-color: #f8d7da !important;
}

.text-showshas {
    color: #9b3e3e;
}

.btn-showshas {
    background-color: #d15f5f;
    color: #f1f1f1;
}

.btn-showshas:hover {
    background-color: #c14f52;
    color: #f1f1f1;
}

.btn-showshas-animated {
    background-color: #d15f5f;
    color: #f1f1f1;
    transition: all 0.3s ease;
}

.btn-showshas-animated:hover {
    background-color: #c14f52;
    color: #f1f1f1;
    transform: scale(1.05);
}

.pagination-link {
    color: #9b3e3e;
    border-color: #9b3e3e;
}

.pagination-link:hover {
    color: #f1f1f1;
    background-color: #b3403f;
    border-color: #b3403f;
}

.pagination .page-item.active .page-link {
    background-color: #972e2d;
    border-color: #972e2d;
    color: #f1f1f1;
}

.pagination .page-item.disabled .page-link {
    color: #e1a8a4;
    background-color: #f6d7d6;
    pointer-events: none;
}

.pagination-link:focus {
    outline: 2px solid #b3403f;
    outline-offset: 2px;
}

.form-check-input:checked {
    background-color: #9b3e3e;
}

.product-card {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.product-list-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}

.badge-sale {
    background-color: #e74c3c;
}

.rating-star {
    color: #f1c40f;
}

.sidebar {
    border-right: 1px solid #ddd;
}

.product-img {
    width: 500px;
    height: 500px;
    border-radius: 8px;
}

.thumb-img {
    cursor: pointer;
    transition: border 0.2s ease;
    width: 120px;
    height: 120px;
}

.thumb-img:hover {
    border: 2px solid #d15f5f; /* Soft Red */
}

.review {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.category-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.category-circle:hover {
    transform: scale(1.1);
}

.category-circle img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu-right {
    position: absolute;
    right: 0;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item {
    padding: 15px 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cart-item.remove-animation {
    opacity: 0;
    transform: translateY(-30px);
}

.showshas-hero-carousel {
    width: 90%;
    margin: 0 auto;
    border-radius: 15px;
}

.showshas-hero-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .showshas-hero-item img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .showshas-hero-item img {
        height: auto;
        object-fit: contain;
    }
}

.showshas-hero-inner {
    border-radius: 15px;
    overflow: hidden;
}

.ui-menu {
    border-radius: 0.375rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    transition: background-color 0.3s ease;
}

.ui-menu-item:hover {
    background-color: #f8d7da;
}

.ui-menu-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ui-menu-item img {
    border-radius: 15%;
}

.search-product-price {
    text-align: right;
    font-weight: bold;
}

.search-product-label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}

.list-group-item.active {
    background-color: #972e2d;
    border-color: #972e2d;
    color: #f1f1f1;
}

.list-group-item:hover {
    background-color: #f8d7da;
    color: #000000;
}

.breadcrumb {
    --bs-breadcrumb-divider: '»';
    --bs-breadcrumb-divider-color: #9b3e3e;
}
