.cookie-notice {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    background:#11438F;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 20px;
    display: none;
    animation: cookieSlide 0.4s ease-out;
}
@keyframes cookieSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.cookie-icon {
    font-size: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.cookie-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}
.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--secondary-color);
    color: #fff;
}
.cookie-btn.accept:hover {
    background: var(--secondary-hover-color);
}

.cookie-btn.setting {
   /* background: transparent;*/
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.cookie-btn.setting:hover {
    background: #fff0ec;
}

.cookie-btn.reject {
    background: #f1f3f5;
    color: var(--primary-color);
}
.cookie-btn.reject:hover {
    background: #e9ecef;
}

.cookie-close {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-close:hover {
    color: var(--secondary-color);
}


.cookie-settings {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10000;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
    animation: settingsUp 0.3s ease;
}
@keyframes settingsUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.settings-modal{
    width: 1400px;
    margin: 0 auto;
}


.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.settings-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
}

.settings-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}
.settings-close:hover {
    color: var(--secondary-color);
}

.settings-desc {
    font-size: 13px;
    color: #333;
    margin-bottom: 20px;
}

.select-container{
    display: flex;
    align-items: center;
}

.cookie-options {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input {
    margin-top: 4px;
    accent-color: var(--secondary-color);
}

.cookie-option strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.cookie-option span {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.4;
}

.settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cancel-btn, .save-btn {
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cancel-btn {
    background: #f1f3f5;
    color: var(--primary-color);
}
.cancel-btn:hover {
    background: #e9ecef;
}

.save-btn {
    background: var(--secondary-color);
    color: #fff;
}
.save-btn:hover {
    background: var(--secondary-hover-color);
}
@media(max-width:768px){
.cookie-inner{
display:block !important;
}
}