/*
Theme Name: Hello Elementor Child
Theme URI: https://c-ifilms.com/
Description: Child theme for Hello Elementor
Author: C&I Studios
Template: hello-elementor
Version: 1.0.0
*/

/* Watch Now Dropdown on Project Pages */
.watch-now-dropdown {
    display: block;
    width: 75%;
    margin: 20px 0;
}
.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}
.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 400;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.custom-select-trigger:hover {
    background-color: #fafafa;
}
.custom-select-trigger span {
    flex: 1;
}
.dropdown-arrow {
    margin-left: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.custom-select-wrapper.open .dropdown-arrow {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #000;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    z-index: 1000;
}
.custom-select-wrapper.open .custom-select-options {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}
.custom-option {
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.custom-option:hover {
    background-color: #f5f5f5;
}
.custom-option:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}