/**
 * Cookie Consent Banner Styles for Agropalmex.ro
 * 
 * Add this to your main stylesheet or link it separately:
 * <link rel="stylesheet" href="/css/cookie-consent.css">
 */

/* ===== COOKIE CONSENT BANNER STYLES ===== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a472a 0%, #0f2818 100%);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-text a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: #22c55e;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: #4ade80;
    color: #1a472a;
}

.cookie-btn-accept:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.cookie-btn-reject {
    background: #555;
    color: #fff;
}

.cookie-btn-reject:hover {
    background: #777;
    transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-text h3 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }
}

/* ===== ALTERNATIVE COLOR SCHEMES ===== */

/* Blue Theme (uncomment to use) */
/*
.cookie-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.cookie-btn-accept {
    background: #3b82f6;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cookie-text a {
    color: #60a5fa;
}

.cookie-text a:hover {
    color: #93c5fd;
}
*/

/* Orange Theme (uncomment to use) */
/*
.cookie-banner {
    background: linear-gradient(135deg, #7c2d12 0%, #431407 100%);
}

.cookie-btn-accept {
    background: #f97316;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #ea580c;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.cookie-text a {
    color: #fb923c;
}

.cookie-text a:hover {
    color: #fdba74;
}
*/

/* Purple Theme (uncomment to use) */
/*
.cookie-banner {
    background: linear-gradient(135deg, #6b21a8 0%, #3f0f5c 100%);
}

.cookie-btn-accept {
    background: #a855f7;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #9333ea;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.cookie-text a {
    color: #d8b4fe;
}

.cookie-text a:hover {
    color: #e9d5ff;
}
*/

/* ===== END COOKIE CONSENT BANNER STYLES ===== */
