/* Add-to-Cart Modal Overlay */
.ctoc-cart-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.ctoc-cart-modal-overlay.active {
    display: flex;
}

.ctoc-cart-modal {
    background: #fff;
    border-radius: 8px;
    padding: 40px 36px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ctoc-cart-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 4px;
}

.ctoc-cart-modal-close:hover {
    background: #c51859 !important;
    color:#fff;
;
}

.ctoc-cart-modal-logo {
    max-width: 75px !important;
    height: auto;
    margin: 0 auto 6px;
    display: block;
}

.ctoc-cart-modal-site-title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ctoc-cart-modal-message {
    font-size: 15px;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.5;
}

.ctoc-cart-modal-message strong {
    font-weight: 600;
}

.ctoc-cart-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.ctoc-cart-modal-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.ctoc-cart-modal-btn:hover {
    opacity: 0.85;
}

.ctoc-cart-modal-btn.view-cart {
    background: #08b024;
    color: #fff;
}

.ctoc-cart-modal-btn.view-cart:hover {
    background: #057d19;
    color: #fff;
}

.ctoc-cart-modal-btn.continue-shopping {
    background: #c51859;
    color: #fff;
}

.ctoc-cart-modal-btn.continue-shopping:hover {
    background: #740e34 !important;
    color: #fff;
}
