.like-btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}
.like-btn:hover {
    background-color: #f8f9fa;
}
.like-btn.active i {
    color: #dc3545 !important;
}
.main-container {
    display: flex;
    margin-left: 0;
    margin-right: 0;
}
.sidebar {
    width: 250px;
    background-color: rgba(13, 110, 253, 0.5);
    min-height: calc(100vh - 50px);
    padding: 20px;
    top: 20px;
    align-self: flex-start;
}
.content-container {
    flex: 1;
    padding: 20px;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
}
.notification {
    animation: fadeIn 1.0s, fadeOut 1.0s 9.0s forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.filter-section {
    margin-bottom: 20px;
}
.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}
.filter-option {
    margin-bottom: 5px;
}
.filter-option label {
    color: #000;
    cursor: pointer;
}
.filter-option input {
     margin-right: 8px;
}
.filter-reset {
    margin-top: 20px;
}
.active-filter {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 5px;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.filter-option input[type="checkbox"] {
    margin: 0;
}
.cart-counter {
    transition: all 0.3s ease;
    min-width: 1.5em;
    padding: 0.25em 0.4em;
    font-size: 0.75em;
}