html body button:hover {
    color: #374151;
}
.header-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 44px;
    font-weight: 700;
    font-style: normal; 
    line-height: 58px;
    letter-spacing: 0%;
    color: #374151;
    margin-bottom: 16px;
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0%;
    color: #6B7280; 
    margin-top: 0;
}

.masterclass-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

.mc-sidebar {
    width: 280px;
    height: fit-content;       
    border-radius: 16px;
    background-color: #F9FAFB;
    border: 1px solid #F3F4F6;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1024px) {
    .masterclass-container {
        grid-template-columns: 200px 1fr;
        gap: 24px;
    }

    .mc-sidebar {
        width: 200px;
    }
}


@media (max-width: 767px) {
    .masterclass-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding:0 12px;
    }

    .mc-sidebar {
        display: none;
    }
}

.filter-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 16px;
}

.sidebar-header h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1E293B;
    margin: 0;
}

.clear-all {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #C9321A;
    text-decoration: none;
    cursor: pointer;
}

.filter-group {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 4px 0;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #1E293B;
    text-align: left;
}

.accordion-trigger .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
    transform: rotate(0deg);    
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-trigger:focus,
.accordion-trigger:active,
.accordion-trigger:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important; 
    -webkit-tap-highlight-color: transparent; 
}

.filter-group.open .accordion-trigger {
    color: #C9321A;
}
.filter-group.open .accordion-trigger .arrow {
    transform: rotate(180deg); 
    color: #C9321A;
}

.accordion-content {
    display: none;
    margin-top: 4px;
}

.filter-group.open .accordion-content {
    display: block;
}

.inner-filters h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #374151;
    margin: 20px 0 12px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #6B7280;
    margin-top: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.checkbox-label:has(input:checked) {
    color: #C9321A;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.mc-checkbox {
    width: 18px;
    height: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: all 0.15s ease;
}

.checkbox-label input:checked ~ .mc-checkbox {
    background-color: #C9321A;
    border-color: #C0392B;
}

.checkbox-label input:checked ~ .mc-checkbox::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    width: 11px;
    height: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8' fill='none'><path d='M1 4L4 7L10 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 400px;
    align-items: center;
}

html body .tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    
    background-color: #FFFFFF;
    color: #4B5563; 
    border: 1px solid #E5E7EB;
}

.tag:hover {
    border-color: #D1D5DB;
    background-color: #F9FAFB;
}

.tag.active {
    background-color: #C9321A;
    border: 1px solid #C0392B;
    color: #FFFFFF;
}
.tag.active:hover {
    background-color: #B02B15;
    border-color: #A62F20;
}

.toggle-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #C9321A; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    transition: color 0.2s ease;
}

.toggle-btn:hover {
    text-decoration: underline;
    color: #C0392B;
}

.hidden {
    display: none !important;
}

.instructor-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 28px;
    box-sizing: border-box;
    
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 6px 10px;
    gap: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 5px;
}

.instructor-search-wrapper:focus-within {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.instructor-search-wrapper .search-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    display: block;
}

.instructor-search {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    height: 16px; 
    outline: none;
    
    /* Text Specs */
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #374151; 
}

.instructor-search::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.instructor-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 99;
    
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    
    max-height: 240px;
    overflow-y: auto;
}

.instructor-search-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 8px 12px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.instructor-search-item:hover {
    background-color: #C9321A;
    color: #FFFFFF;
}

.no-result {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 16px;
    padding: 10px;
    color: #9CA3AF;
    text-align: center;
}

.instructor-search-results:empty {
    display: none;
}

.content-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 8px;
}


.grid-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #4B5563;
}

.sort-select {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    background: #FFF;
    color: #111827;
    margin-left: 6px;
}

.content-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

html body .pill {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    background: #FFF;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.15s ease;
}

.pill.active {
    font-weight: 600;
}

.status-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.mc-content-area {
    min-width: 0;
}

@media (max-width: 767px) {
    .masterclass-container,
    .mc-content-area,
    .content-top-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important; 
        box-sizing: border-box;
        overflow: hidden; 
    }

    .status-pills {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row !important;
        
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important; 
        
        scrollbar-width: none;
    }

    .status-pills::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .status-pills .pill {
        flex: 0 0 auto !important;
        white-space: nowrap !important; 
    }
}

.pill {
    min-width: 86px;
    height: 36px;
    border-radius: 99px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    gap: 8px;
    box-sizing: border-box;
    transition: all 0.15s ease;
    outline: none;
}

.pill:focus,
.pill:active,
.pill:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent; 
}

.pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pill-all .dot { background: #C9321A; }
.pill-not-started .dot { background: #9CA3AF; }
.pill-in-progress .dot { background: #FACC15; }
.pill-completed .dot { background: #16A34A; }

.pill-all.active,
.pill-not-started.active,
.pill-in-progress.active,
.pill-completed.active { 
    background: #C9321A; 
    color: #FFFFFF; 
    border-color: #C9321A; 
}

.pill.active .dot {
    background: #FFFFFF;
}

.grid-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #374151; 
}

.results-count {
    color: #374151; 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    gap: 24px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.product-card:hover,
.product-card:focus {
    color: inherit;
    text-decoration: none;
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: auto; 
    overflow: hidden;
    background: #F3F4F6;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.author-name {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 6px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 20px 0;
    flex-grow: 1;
    color: #111827;
    text-decoration: none;
}

.card-title:hover {
    text-decoration: underline;
}

.card-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.progress-bar-container {
    flex-grow: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 4px;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-percentage {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

/* Progress-driven fill mappings */
.status-not-started .progress-bar-fill { background: #E5E7EB; }
.status-in-progress .progress-bar-fill { background: #C22916; } 
.status-completed .progress-bar-fill { background: #10B981; }

/*Pagination*/

.mc-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px auto 20px auto;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.mc-pagination {
    display: flex;
    align-items: center;
    gap: 24px; 
}

.page-number {
    background: transparent;
    border: none;
    outline: none;
    padding: 4px 8px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none !important;
    transition: color 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.page-link {
    color: #C9321A;
}

.page-link:hover {
    color: #A02310;
}

.page-number.current {
    color: #6B7280;
    font-weight: 500;
    cursor: default;
    pointer-events: none;
}

.page-number:focus,
.page-number:active,
.page-number:focus-visible {
    outline: none !important;
}
/*Pagination*/


/*Empty State*/
.no-results-container {
    width: 100%; 
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: 1px solid #A1A1AA;
    border-radius: 16px;
    padding: 80px;
    opacity: 1;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
@media (max-width: 768px) {
    .no-results-container {
        padding-top: 48px;
        padding-right: 24px;
        padding-bottom: 48px;
        padding-left: 24px;
    }
}

.no-results-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background-color: #FCFAF8;
    opacity: 1;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #374151;
    margin: 0;
}

.no-results-subheading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #6B7280;
    max-width: 400px; 
    margin: 0;
}

.btn-reset-filters {
    box-sizing: border-box;
    width: 131px;
    height: 46px;
    background-color: transparent;
    border: 1.5px solid #C9321A;
    border-radius: 6px;
    opacity: 1;
    cursor: pointer;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #C9321A;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn-reset-filters:hover {
    background-color: #C9321A;
    color: #FFFFFF;
}

.btn-reset-filters:focus,
.btn-reset-filters:active,
.btn-reset-filters:focus-visible {
    outline: none !important;
    -webkit-tap-highlight-color: transparent; 
    box-shadow: none !important; 
}

.btn-reset-filters:focus-visible {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2) !important;
}

.mobile-sticky-filter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 999;
    
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.mobile-filter-trigger {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.mobile-filter-trigger .filter-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.filter-label-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #262626;
}

.filter-count-badge {
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    background-color: #C9321A;
    border: 1px solid #FFFFFF;
    border-radius: 9px;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #FFFFFF;
    
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-count-badge.is-empty {
    transform: scale(0);
}

@media (min-width: 767px) {
    .mobile-sticky-filter-bar {
        display: none !important;
    }
}

.mc-bottom-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-bottom-sheet-backdrop.is-open {
    display: block;
    opacity: 1;
}

.mc-bottom-sheet-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh; 
    background-color: #FFFFFF;
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-bottom-sheet-backdrop.is-open .mc-bottom-sheet-container {
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 36px;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    margin: 12px auto 4px auto;
    flex-shrink: 0;
}

.bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #D1D5DB;
    flex-shrink: 0;
}

.sheet-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1F2937;
    margin: 0;
}

.sheet-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sheet-reset-btn {
    background: none;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #C9321A;
    cursor: pointer;
    padding: 4px;
}

html body .sheet-close-btn {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background-color: #F1F5F9;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.sheet-close-btn:focus, .sheet-reset-btn:focus {
    outline: none !important;
}

.bottom-sheet-body {
    padding: 0 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.sheet-filter-group {
    border-bottom: 1px solid #D1D5DB;
}

.sheet-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    text-align: left;
    
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #1F2937;
}

.sheet-accordion-trigger,
.sheet-accordion-trigger:focus,
.sheet-accordion-trigger:active,
.sheet-accordion-trigger:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-tap-highlight-color: transparent; 
}

.sheet-accordion-trigger .sheet-arrow {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.sheet-filter-group.open .sheet-accordion-trigger .sheet-arrow {
    transform: rotate(180deg);
}

.sheet-filter-group.open .sheet-accordion-trigger {
    color: #C9321A;
}
.sheet-filter-group.open .sheet-accordion-trigger svg path {
    stroke: #C9321A;
}

.sheet-accordion-content {
    display: none;
    padding-bottom: 16px;
}

.sheet-filter-group.open .sheet-accordion-content {
    display: block;
}

.sheet-inner-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
    margin: 14px 0 8px 0;
}

.sheet-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.sheet-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.sheet-custom-checkbox {
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1.5px solid #D1D5DB;
    background-color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.sheet-checkbox-label .label-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}

.sheet-custom-checkbox .check-icon {
    display: none;
}

.sheet-checkbox-label input:checked ~ .sheet-custom-checkbox {
    background-color: #C9321A;
    border-color: #C9321A;
}

.sheet-checkbox-label input:checked ~ .sheet-custom-checkbox .check-icon {
    display: block;
}

.bottom-sheet-footer {
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px)) 20px;
    border-top: 1px solid #F3F4F6;
    background-color: #FFFFFF;
    flex-shrink: 0;
}

.btn-apply-sheet-filters {
    width: 100%;
    height: 48px;
    background-color: #C9321A;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-apply-sheet-filters:hover {
    background-color: #B02B15;
}

.btn-apply-sheet-filters:focus {
    outline: none !important;
}

@media (min-width: 767px) {
    .mc-bottom-sheet-backdrop {
        display: none !important;
    }
}


#masterclass-products-container {
    position: relative; 
    min-height: 200px; 
}

#masterclass-products-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75); 
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
}

#masterclass-products-container::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #C9321A; 
    background-image: radial-gradient(circle at 20px 10px, #FFFFFF 4px, transparent 5px);
    
    z-index: 101;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
}

#masterclass-products-container.loading::before,
#masterclass-products-container.loading::after {
    opacity: 1;
    pointer-events: auto; 
}

#masterclass-products-container.loading::after {
    animation: masterclassLoaderSpinner 0.8s linear infinite;
}

@keyframes masterclassLoaderSpinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}