/* SweetAlert popup */
.cart-added-popup {
    width: 430px !important;
    max-width: calc(100% - 25px);
    padding: 0 !important;
    border-radius: 22px !important;
    overflow: hidden;
    background: #ffffff;
}

/* Main box */
.cart-added-box {
    padding: 28px 22px 22px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Success icon */
.cart-success-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e9f9ef;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.cart-added-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.cart-added-subtitle {
    margin-top: 5px;
    color: #6b7280;
    font-size: 13px;
}

/* Product */
.cart-product {
    margin-top: 22px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 15px;

    display: flex;
    align-items: center;
    text-align: left;
    gap: 13px;
}

.cart-product-image {
    width: 78px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 11px;
    overflow: hidden;
    background: #eee;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info {
    min-width: 0;
    flex: 1;
}

.cart-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-product-meta {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.cart-product-bottom {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}

.cart-product-bottom strong {
    font-size: 16px;
    color: #111827;
}

/* Buttons */
.cart-added-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.cart-added-actions button {
    flex: 1;
    min-height: 45px;
    border: none;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.continue-shopping {
    background: #f1f5f9;
    color: #334155;
}

.continue-shopping:hover {
    background: #e2e8f0;
}

.view-cart {
    background: #111827;
    color: white;
}

.view-cart:hover {
    background: #000000;
}

.view-cart i {
    margin-right: 6px;
}
.jfh-swal-popup {
    border-radius: 20px !important;
    padding: 25px !important;
    font-family: Arial, sans-serif;
}

.jfh-swal-popup .swal2-title {
    font-size: 21px;
    font-weight: 700;
    color: #111827;
}

.jfh-swal-popup .swal2-html-container {
    font-size: 14px;
    color: #6b7280;
}

/* Loading */

.jfh-cart-loading {
    padding: 8px 0 5px;
    text-align: center;
}

.jfh-spinner {
    width: 38px;
    height: 38px;
    margin: 0 auto 14px;

    border: 3px solid #e5e7eb;
    border-top-color: #111827;

    border-radius: 50%;

    animation: jfhSpin 0.8s linear infinite;
}

.jfh-loading-text {
    font-size: 13px;
    color: #6b7280;
}

@keyframes jfhSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Error */

.jfh-error-message {
    line-height: 1.7;
    color: #4b5563;
}

.jfh-error-message span {
    font-size: 13px;
    color: #9ca3af;
}

/* Buttons */

.jfh-swal-button {
    border-radius: 10px !important;
    padding: 11px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}
/* Mobile */
@media (max-width: 480px) {

    .cart-added-popup {
        width: calc(100% - 20px) !important;
        border-radius: 19px !important;
    }

    .cart-added-box {
        padding: 23px 15px 16px;
    }

    .cart-added-title {
        font-size: 20px;
    }

    .cart-product-image {
        width: 68px;
        height: 78px;
    }

    .cart-added-actions {
        flex-direction: column;
    }

    .cart-added-actions button {
        width: 100%;
    }
}