.custom-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-hover:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Ensures sidebar stays positioned well on different screen sizes */
.filter-sidebar {
    margin-top: 80px; /* Keeps spacing below navbar */
    margin-left: -80px;
}

/* Adjust positioning for smaller screens */
@media (max-width: 768px) {
    .filter-sidebar {
        margin-left: 0; /* No left margin on smaller screens */
    }
}

/* Move the product display to the right */
.product-display {
    margin-left: 50px; /* Adjust this value as needed */
  }
  
/* Make it responsive */
@media (max-width: 768px) {
.product-display {
    margin-left: 0; /* Reset margin for small screens */
}
}
  
.pagination-dark .page-link {
    background-color: #1f1f20!important;
    color: white !important;
    border-color: #1f1f20 !important;
}

.pagination-dark .page-item.active .page-link {
    background-color: #333 !important;
    border-color: #333 !important;
}

/* Accord bars styling */
.accord-container {
    width: 100%;
    /* margin-bottom: 1rem; */
}

.accord-box {
    margin-bottom: 8px;
    width: 50%;
}

.accord-bar {
    padding: 1px 10px;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s ease;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-width: 40px; */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Hover effect */
.accord-bar:hover {
    transform: translateX(5px);
}

.badge {
    font-size: 90%;
    padding: 0.5em 1em;
    border-radius: 0.5em;
}

.col-md-3-5 {
    flex: 0 0 29.167%; /* (3.5/12) * 100 */
    max-width: 29.167%;
}

.custom-col-9-5 {
    flex: 0 0 73%; /* Approximate 9.5 columns (9.5/12 * 100) */
    max-width: 73%;
}

.custom-navbar {
    background-color: #1f1f20;
}

.navbar-brand {
    color: white !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6, .card-title {
    color: #447488 !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

body {
    color: #1F1F20; /* Ensures text is visible */
    font-family: 'Inter', sans-serif; /* Apply Inter to body */
}

.navbar-brand span {
    font-weight: 200; /* Lighter weight for '| Fragrance' */
}

/* Dashboard card styles */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

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

.icon-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #447488;
}

.card .btn-primary {
    background-color: #447488;
    border-color: #447488;
    transition: all 0.3s ease;
}

.card .btn-primary:hover {
    background-color: #447488;
    border-color: #447488;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.5rem;
    }
    
    .icon-container {
        height: 60px;
    }
    
    .icon-container i {
        font-size: 2.5rem !important;
    }
}

.image-container {
    position: relative;
    display: inline-block;
}

.overlay-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;  /* Hide buttons initially */
    background: rgba(0, 0, 0, 0.6);
    padding: 5px;
    border-radius: 5px;
}

.image-container:hover .overlay-buttons {
    display: flex; /* Show buttons on hover */
    gap: 5px;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}