/* =============================================
   Enjoy Add to Cart Notice – Toast Styles
   ============================================= */

#enjoy-atc-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #C61A5B;
    color: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    max-width: 90vw;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    border-left: 4px solid #9d1247;
    box-sizing: border-box;
}

#enjoy-atc-toast.enjoy-atc-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

#enjoy-atc-toast .enjoy-atc-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#enjoy-atc-toast .enjoy-atc-icon svg {
    width: 20px;
    height: 20px;
    fill: #9d1247;
}

#enjoy-atc-toast .enjoy-atc-text {
    flex: 1;
    line-height: 1.4;
}

#enjoy-atc-toast .enjoy-atc-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

#enjoy-atc-toast .enjoy-atc-text span {
    font-size: 13px;
    color: #bbb;
}

#enjoy-atc-toast .enjoy-atc-text a {
    color: #ffffff;
    text-decoration: none;
}

#enjoy-atc-toast .enjoy-atc-text a:hover {
    text-decoration: underline;
}

#enjoy-atc-toast .enjoy-atc-dismiss {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px 4px;
    margin-left: 6px;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

#enjoy-atc-toast .enjoy-atc-dismiss:hover {
    color: #fff;
}

@media (max-width: 600px) {
    #enjoy-atc-toast {
        bottom: 16px;
        width: calc(100vw - 32px);
        max-width: 100%;
    }
}
