.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.consent-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.consent-banner__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consent-banner__text {
    flex: 1;
}

.consent-banner__title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.consent-banner__description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.consent-banner__description a {
    color: #393939;
    text-decoration: underline;
}

.consent-banner__description a:hover {
    color: #000;
}

.consent-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-banner__btn {
    padding: 10px 20px;
    border: 1px solid #393939;
    background: #393939;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 120px;
}

.consent-banner__btn:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

.consent-banner__btn--secondary {
    background: transparent;
    color: #393939;
}

.consent-banner__btn--secondary:hover {
    background: #f5f5f5;
}

.consent-banner__btn--outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.consent-banner__btn--outline:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.consent-banner__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .consent-banner__content {
        flex-direction: row;
        align-items: center;
    }
    
    .consent-banner__actions {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .consent-banner {
        padding: 15px 0;
    }
    
    .consent-banner__actions {
        justify-content: space-between;
    }
    
    .consent-banner__btn {
        flex: 1;
        min-width: auto;
    }
}

/* Modal Styles */
.consent-preferences {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.consent-preferences__modal {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.consent-preferences__header {
    padding: 20px 24px;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consent-preferences__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.consent-preferences__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-preferences__close:hover {
    color: #333;
}

.consent-preferences__body {
    padding: 24px;
}

.consent-preferences__description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.consent-preferences__options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.consent-preferences__option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #fafafa;
    cursor: pointer;
}

.consent-preferences__option--essential {
    background: #f8f9fa;
    opacity: 0.7;
    cursor: not-allowed;
}

.consent-preferences__content {
    flex: 1;
}

.consent-preferences__option-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.consent-preferences__option-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.consent-preferences__footer {
    padding: 20px 24px;
    border-top: 1px solid #e6e6e6;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Checkbox Styling */
.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
}

.consent-checkbox__input {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-checkbox__input--checked {
    background: #393939;
    border-color: #393939;
}

.consent-checkbox__input--checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.consent-checkbox__input:disabled {
    background: #e9ecef;
    border-color: #ced4da;
    cursor: not-allowed;
}