.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: none;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e8e4e0;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h3 {
    margin: 0 0 0.5rem 0;
    color: #2d3436;
    font-size: 1.2rem;
}

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

.cookie-consent-text a {
    color: #16a085;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-consent-btn-accept {
    background-color: #16a085;
    color: white;
}

.cookie-consent-btn-accept:hover {
    background-color: #138a72;
}

.cookie-consent-btn-settings {
    background-color: #faf8f5;
    color: #2d3436;
    border: 1px solid #e8e4e0;
}

.cookie-consent-btn-settings:hover {
    background-color: #e8e4e0;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cookie-settings-header {
    margin-bottom: 1.5rem;
}

.cookie-settings-header h3 {
    margin: 0 0 0.5rem 0;
    color: #2d3436;
    font-size: 1.4rem;
    font-weight: 700;
}

.cookie-settings-header p {
    margin: 0;
    color: #636e72;
}

.cookie-settings-header a {
    color: #16a085;
    text-decoration: underline;
}

.cookie-settings-options {
    margin-bottom: 1.5rem;
}

.cookie-setting-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e4e0;
}

.cookie-setting-option:last-child {
    border-bottom: none;
}

.cookie-setting-info h4 {
    margin: 0 0 0.35rem 0;
    color: #2d3436;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-setting-info {
    flex: 1;
    padding-right: 1.5rem;
}

.cookie-setting-info p {
    margin: 0;
    color: #636e72;
    font-size: 0.9rem;
}

.cookie-setting-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-setting-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-setting-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e8e4e0;
    transition: .4s;
    border-radius: 24px;
}

.cookie-setting-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-setting-slider {
    background-color: #16a085;
}

input:checked + .cookie-setting-slider:before {
    transform: translateX(26px);
}

.cookie-settings-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e4e0;
}

.cookie-settings-footer .cookie-consent-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
}


@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-setting-option {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
}
