/* Out of Stock Recommendations */
.af-out-of-stock-recommendations {
    margin: 40px 0;
    padding: 32px;
    background: #f7faf7;
    border-radius: 16px;
    border-left: 4px solid #ff6b6b;
}

.af-oos-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #333;
}

.af-oos-desc {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px;
}

.af-recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.af-recommended-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.af-recommended-card:hover {
    transform: translateY(-4px);
}

.af-recommended-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.af-recommended-img-wrapper {
    position: relative;
    padding-top: 100%;
    background: #f0f0f0;
    overflow: hidden;
}

.af-recommended-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.af-recommended-content {
    padding: 16px;
}

.af-recommended-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #333;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.af-recommended-price {
    font-size: 16px;
    font-weight: 700;
    color: #006400;
}

/* Social Proof Notifications */
#af-social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 997;
    display: none;
}

.af-social-proof-notification {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    border-left: 4px solid #006400;
    animation: slideInLeft 0.5s;
}

.af-social-proof-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.af-social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #006400;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.af-social-proof-text-wrapper {
    flex: 1;
}

.af-social-proof-text {
    margin: 0;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.af-social-proof-name {
    color: #006400;
    font-weight: 700;
}

.af-social-proof-product {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    color: #006400;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}