/* Cookie Consent Popup - Terra Firma Sticky Footer Design */
.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: none;
}

.cookie-consent-overlay {
    display: none; /* No overlay needed for sticky footer design */
}

.cookie-consent-modal {
    position: relative;
    width: 100%;
    background-color: #2d2d2d;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d6098 100%);
    border-top: 3px solid #00d4aa;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 10001;
    color: #fff;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 212, 170, 0.3);
}

.cookie-consent-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Roboto', 'Arial', sans-serif;
}

.cookie-consent-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    color: #fff;
}

.cookie-consent-close:hover {
    background-color: rgba(0, 212, 170, 0.2);
}

.cookie-consent-content {
    padding: 20px 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.cookie-consent-description {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 14px;
}

/* Buttons - Terra Firma Style */
.cookie-consent-buttons-simple,
.cookie-consent-buttons-detailed {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-consent-btn {
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    font-family: 'Roboto', 'Arial', sans-serif;
}

.cookie-consent-accept-all {
    background-color: #00d4aa;
    color: #fff;
    border-color: #00d4aa;
}

.cookie-consent-accept-all:hover {
    background-color: #00c199;
    border-color: #00c199;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
}

.cookie-consent-reject-all {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent-reject-all:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.cookie-consent-manage,
.cookie-consent-save {
    background-color: #3d6098;
    color: #ffffff;
    border-color: #3d6098;
}

.cookie-consent-manage:hover,
.cookie-consent-save:hover {
    background-color: #2d4f78;
    border-color: #2d4f78;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 96, 152, 0.4);
}

/* Cookie Preferences - Terra Firma Style */
.cookie-consent-preferences {
    margin-top: 20px;
}

.cookie-category {
    margin-bottom: 16px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.cookie-category-header {
    margin-bottom: 8px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.cookie-toggle input[type="checkbox"] {
    position: relative;
    width: 44px;
    height: 24px;
    margin-right: 12px;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
    background-color: #00d4aa;
}

.cookie-toggle input[type="checkbox"]:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked:before {
    transform: translateX(20px);
}

.cookie-toggle input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-label {
    color: #fff;
}

.cookie-required {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
    margin-left: 8px;
}

.cookie-category-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

/* Footer */
.cookie-consent-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 212, 170, 0.3);
    text-align: center;
}

.cookie-privacy-link {
    color: #00d4aa;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-privacy-link:hover {
    color: #00c199;
}

/* Cookie Banner - Terra Firma Style */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2d2d2d;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d6098 100%);
    border: 1px solid #00d4aa;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    z-index: 9999;
    color: #fff;
}

.cookie-settings-link {
    background: none;
    border: none;
    color: #00d4aa;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    margin-left: 4px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-modal {
        max-height: 70vh;
    }

    .cookie-consent-header {
        padding: 12px 16px;
    }

    .cookie-consent-content {
        padding: 16px;
    }

    .cookie-consent-title {
        font-size: 1.1rem;
    }

    .cookie-consent-buttons-simple,
    .cookie-consent-buttons-detailed {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-consent-btn {
        width: 100%;
        min-width: unset;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* Focus Styles for Accessibility - Terra Firma */
.cookie-consent-btn:focus,
.cookie-consent-close:focus,
.cookie-toggle input:focus,
.cookie-settings-link:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cookie-consent-modal {
        border: 3px solid #00d4aa;
        border-top-width: 5px;
    }

    .cookie-consent-btn {
        border-width: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-btn,
    .cookie-toggle input,
    .cookie-consent-close {
        transition: none;
    }
}
