/* Frontend styles */
.mscf-loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.mscf-wishlist-btn {
    cursor: pointer;
}

.mscf-wishlist-active {
    font-weight: bold;
}

.mscf-wishlist-link,
.mscf-wishlist-icon {
    text-decoration: none;
}

.mscf-wishlist-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mscf-wishlist-icon__heart {
    font-size: 18px;
}

.mscf-single-product-wishlist {
    margin-top: 15px;
}

.mscf-archive-product-wishlist {
    margin-top: 10px;
}

.mscf-single-product-wishlist .mscf-wishlist-btn,
.mscf-project-wrapper .mscf-open-project-modal,
.mscf-project-modal-content .mscf-add-project-form-btn,
.mscf-project-form .mscf-add-project-form-btn {
    width: 100%;
}

/* Project Modal Styles */
.mscf-project-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}

.mscf-project-modal-content {
    background: #fff;
    width: 520px;
    max-width: 90%;
    padding: 40px;
    margin: 120px auto;
    position: relative;
}

.mscf-project-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mscf-project-modal-content h3 {
    font-weight: 300;
    margin-bottom: 30px;
    margin-top: 0;
}

.mscf-project-modal-content select,
.mscf-project-form select {
    width: 100%;
    margin-bottom: 35px;
}

.mscf-close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    font-weight: 500;
}

/* Toast Styles */
#mscf-toast {
    position: fixed;
    top: 90px;
    right: 40px;
    z-index: 999999;
}

.mscf-toast-message {
    min-width: 420px;
    max-width: 500px;
    padding: 18px 24px;
    background: #1A1A1A;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    opacity: 0;
    transform: translateX(30px);

    transition: all .3s ease;
}

.mscf-toast-message.show {
    opacity: 1;
    transform: translateX(0);
}

.mscf-toast-success {
    border-left: 3px solid #00C853;
}

.mscf-toast-error {
    border-left: 3px solid #D32F2F;
}

.mscf-product-status-dropdown{
    position:relative;
    width:100%;
}

.mscf-product-status-dropdown .mscf-dropdown-toggle {
    width:140px;
    height:40px;
    padding:0 14px;
    background:#fff;
    border:1px solid #DADADA;
    border-radius:6px;
    text-align:left;
    cursor:pointer;
    font-size:14px;
    position:relative;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: normal;
}

.mscf-dropdown-toggle::after{
    content:"";
    width:14px;
    height:14px;
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mscf-product-status-dropdown .mscf-dropdown-menu {
    display:none;
    position:absolute;
    top:calc(100% + 4px);
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #DADADA;
    border-radius:6px;
    list-style:none;
    padding:4px 0;
    margin:0;
    z-index:999;
    box-shadow:0 4px 16px rgba(0,0,0,.08);
}

.mscf-product-status-dropdown.open .mscf-dropdown-menu {
    display:block;
}

.mscf-product-status-dropdown .mscf-dropdown-menu li {
    padding:10px 14px;
    cursor:pointer;
    transition:.2s;
    font-size:16px;
}

.mscf-product-status-dropdown .mscf-dropdown-menu li:hover {
    background:#F5F5F5;
    color: #000000;
}

.mscf-product-status-dropdown .mscf-dropdown-menu li.active {
    background:#000000;
    color:#fff;
}