.product-card__login-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    font-size: 12px;
}

.price-hidden {
    color: #94a3b8;
}

.login-minimal {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.2s;
}

.login-minimal:hover {
    background: #eff6ff;
}

/* استایل انیمیشن لودر */
.loader-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
}

    .loader-dots span {
        width: 12px;
        height: 12px;
        background-color: #001f54;
        border-radius: 50%;
        display: inline-block;
        animation: dot-bounce 1.4s infinite ease-in-out both;
    }

        .loader-dots span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loader-dots span:nth-child(2) {
            animation-delay: -0.16s;
        }

        .loader-dots span:nth-child(3) {
            animation-delay: 0s;
        }

@keyframes dot-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* استایل لودر برای حالت مخفی */
#productsPageLoader[hidden] {
    display: none !important;
}

.product-card__unavailable {
    padding: 8px 0;
    text-align: center;
}
.product-card__unavailable-Left {
    padding: 8px 0;
    text-align: left;
}

.product-card__unavailable-text {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f1f1;
    color: #999;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.product-card__out-of-stock-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(227, 24, 54, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-card__image {
    position: relative;
}

.product-card__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
}
.product-row-card__image {
    position: relative;
}

.product-row-card__out-of-stock-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(227, 24, 54, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-classification__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

    .product-classification__empty img {
        width: 120px;
        margin-bottom: 16px;
    }

    .product-classification__empty h3 {
        margin: 0 0 8px;
    }

    .product-classification__empty p {
        margin: 0;
        color: #8c8c8c;
    }

.d-none {
    display: none !important;
}

.carts-delivery-address__add {
    padding: 20px;
    text-align: center;
    border: 2px dashed #ddd;
    border-radius: 8px;
}


.order-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

    .order-card[style*="display: block"] {
        opacity: 1;
        transform: translateY(0);
    }

.profile-order-list__empty-message {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-order-list__filter {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

    .profile-order-list__filter:focus-visible {
        outline: 2px solid #0056b3;
        outline-offset: 2px;
    }

/* استایل برای دکمه کپی */
.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

    .copy-btn:hover {
        background-color: rgba(0, 0, 0, 0.05);
        transform: scale(1.1);
    }

    .copy-btn:active {
        transform: scale(0.9);
    }

/* انیمیشن برای آیتم والد */
.copy-animate {
    animation: copyFlash 0.5s ease;
}

@keyframes copyFlash {
    0% {
        background-color: rgba(76, 175, 80, 0.2);
        transform: scale(1);
    }

    50% {
        background-color: rgba(76, 175, 80, 0.4);
        transform: scale(1.02);
    }

    100% {
        background-color: transparent;
        transform: scale(1);
    }
}

.drop-down-bgc {
    background-color: var(--secondary);
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.variant-destructive {
    background-color: #ef4444 !important;
    color: white !important;
}

.variant-success {
    background-color: #10b981 !important;
    color: white !important;
}

.variant-alert {
    background-color: #f59e0b !important;
    color: white !important;
}
        