.saffron-cart-wrapper {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    margin: 0 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.saffron-cart-icon {
    position: relative;
}

.saffron-cart-icon img {
    width: 26px;
    height: 26px;
    display: block;
}

.saffron-cart-icon.saffron-cart-loading img {
    opacity: 0.35;
}

.saffron-cart-icon.saffron-cart-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(0, 120, 59, 0.25);
    border-top-color: #00783b;
    border-radius: 50%;
    animation: saffronCartSpin .65s linear infinite;
}

.saffron-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #d32f2f;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    line-height: 1;
    z-index: 2;
}

.saffron-mini-cart-popup {
    position: absolute;
    top: 60px;
    left: 0;
    width: 380px;
    max-height: 420px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    display: none;
    overflow: hidden;
    font-family: "Vazir", Tahoma, sans-serif;
    direction: rtl;
}

.saffron-cart-arrow {
    position: absolute;
    top: -10px;
    left: 30px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.saffron-cart-content {
    max-height: 380px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.saffron-cart-content::-webkit-scrollbar {
    width: 8px;
}

.saffron-cart-content::-webkit-scrollbar-thumb {
    background: #00783b;
    border-radius: 10px;
}

.saffron-cart-item {
    display: flex;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.saffron-item-image,
.saffron-item-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #f9f9f9;
}

.saffron-item-details {
    flex: 1;
}

.saffron-item-details h4 {
    margin: 0 0 6px;
    font-size: 14px;
}

.saffron-item-details a {
    text-decoration: none;
    color: #222;
}

.saffron-item-details p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.saffron-remove-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}

.saffron-cart-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

.saffron-cart-total {
    font-size: 16px;
    font-weight: bold;
}

.saffron-checkout-btn {
    background: #00783b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.saffron-checkout-btn:hover {
    background: #005d2d;
}

.saffron-cart-empty {
    text-align: center;
    padding: 40px 0;
    color: #888;
}

.saffron-cart-pulse {
    animation: saffronPulse 0.5s ease;
}

@keyframes saffronPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes saffronCartSpin {
    to { transform: rotate(360deg); }
}
