﻿.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 800, 'GRAD' 0, 'opsz' 28;
}

.editorial-shadow {
    box-shadow: 0 20px 40px rgba(61, 57, 5, 0.06);
}

.zoom-container {
    overflow: hidden;
    position: relative;
}

.zoom-image {
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

    .zoom-image:hover {
        transform: scale(1.5);
    }

.rating-star {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #fdd83b;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-active .accordion-content {
    max-height: 1000px;
}

.accordion-header .chevron {
    transition: transform 0.3s ease;
}

.accordion-active .accordion-header .chevron {
    transform: rotate(180deg);
}

.sidebar-scroll::-webkit-scrollbar {
    width: 4px;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
    background: #004d9c;
    border-radius: 10px;
}
