/**
 * Cookie Consent Banner Styles
 * Money#Prof - GDPR Compliant Cookie Banner
 */

/* Banner container */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    color: #ffffff;
    z-index: 9999;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content wrapper */
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Text content */
.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    min-width: 300px;
}

.cookie-content p strong {
    color: #ffffff;
}

/* Privacy policy link */
.cookie-content a {
    color: #ff8a8a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-content a:hover {
    color: #ffa5a5;
}

/* Buttons container */
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Base button styles */
.cookie-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Accept button - Brand red color */
.btn-accept {
    background: #b11a21;
    color: #ffffff;
}

.btn-accept:hover {
    background: #d41f27;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 26, 33, 0.4);
}

.btn-accept:active {
    transform: translateY(0);
}

/* Reject button - Subtle gray */
.btn-reject {
    background: #5a5a5a;
    color: #e0e0e0;
}

.btn-reject:hover {
    background: #6a6a6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-reject:active {
    transform: translateY(0);
}

/* Cookie settings link in footer */
.cookie-settings-link {
    color: #888888;
    text-decoration: underline;
    font-size: 12px;
    transition: color 0.2s ease;
}

.cookie-settings-link:hover {
    color: #b11a21;
}

/* Responsive design - Mobile */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-content p {
        min-width: auto;
    }

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

    .cookie-buttons button {
        width: 100%;
        padding: 14px 24px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .cookie-content {
        padding: 16px;
    }

    .cookie-content p {
        font-size: 13px;
    }

    .cookie-buttons button {
        font-size: 13px;
        padding: 12px 20px;
    }
}
