
/* Flemma Suggests Plugin Styles */
.flemma-suggests {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.flemma-suggests::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 12px;
    z-index: -1;
}

.flemma-suggests-title {
    color: #0c4a6e;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flemma-suggests-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flemma-suggests-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.flemma-suggests-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.flemma-suggests-list li:last-child {
    margin-bottom: 0;
}

.flemma-suggests-list a {
    color: #0c4a6e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.flemma-suggests-list a:hover {
    color: #0ea5e9;
    transform: translateX(4px);
}

.flemma-deals-link {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.flemma-deals-link:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateX(4px) scale(1.05);
    color: white !important;
}

/* Alternative Styles */
.flemma-suggests-minimal {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0ea5e9;
    border-radius: 6px;
    padding: 16px;
}

.flemma-suggests-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.flemma-suggests-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.flemma-suggests-gradient .flemma-suggests-title {
    color: white;
}

.flemma-suggests-gradient .flemma-suggests-list a {
    color: #f1f5f9;
}

.flemma-suggests-gradient .flemma-suggests-list a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .flemma-suggests {
        padding: 16px;
        margin: 16px 0;
    }
    
    .flemma-suggests-title {
        font-size: 16px;
    }
}

/* Admin Styles */
.flemma-suggests-admin-modal {
    display: none;
    position: fixed;
    z-index: 160000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.flemma-suggests-admin-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.flemma-suggests-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.flemma-suggests-close:hover {
    color: black;
}
