/* Cookie Consent Block */
.btn-settings-coockies{
    color: var(--white);
    text-decoration: underline;
    background-color: #10182F;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}


.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
display: flex;
z-index: 9999;
}

.cookie-consent__container {
padding: 20px;
border-radius: 20px;
margin: 20px;
background-color: #fff;
border-radius: 0;
max-width: 500px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent__wrapper {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
text-align: center;
gap: 20px;
}

.cookie-consent__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-grey);
}

.cookie-consent__text a {
text-decoration: underline;
font-size: 14px;
color: #521017;
}

.cookie-consent__buttons {
display: flex;
gap: 10px;
flex-shrink: 0;
}

/* Modal Block */
.cookie-modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.5);
z-index: 10000;
padding: 20px;
}

.cookie-modal__container {
background: #fff;
max-width: 600px;
margin: 50px auto;
padding: 30px;
border-radius: 0;
}

.cookie-modal__title {
margin: 0 0 20px;
font-size: 24px;
font-weight: 600;
color: #333;
}

.cookie-modal__notice {
color: var(--color-grey);
font-size: 14px;
margin: 20px 0;
line-height: 1.4;
}

.cookie-modal__footer {
margin-top: 30px;
display: flex;
justify-content: flex-end;
gap: 10px;
}

/* Cookie Type Block */
.cookie-type {
margin: 20px 0;
padding: 15px;
background-color: var(--color-light-grey);
border-radius: var(--border-radius);
}

.cookie-type__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}

.cookie-type__title {
font-weight: 700;
color: #333;
font-size: 20px;
}

.cookie-type__description {
color: var(--color-grey);
font-size: 14px;
margin: 0;
line-height: 1.4;
}

/* Toggle Switch Block */
.cookie-toggle {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}

.cookie-toggle__input {
opacity: 0;
width: 0;
height: 0;
}

.cookie-toggle__slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--color-border);
transition: var(--transition);
border-radius: var(--border-radius);
}

.cookie-toggle__slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: var(--color-white);
transition: var(--transition);
border-radius: 8px;
}

.cookie-toggle__input:checked + .cookie-toggle__slider {
background-color: var(--color-red);
}

.cookie-toggle__input:checked + .cookie-toggle__slider:before {
transform: translateX(26px);
}

.cookie-toggle--disabled .cookie-toggle__slider {
background-color: var(--color-border);
cursor: not-allowed;
opacity: 0.7;
}

/* Button Block */
.cookie-button {
padding: 12px 24px;
border: 2px solid var(--color-red);
border-radius: var(--border-radius);
cursor: pointer;
font-size: 14px;
background-color: var(--color-white);
color: var(--color-red);
transition: var(--transition);
min-width: 120px;
font-weight: 500;
text-align: center;
}

.cookie-button:hover {
background-color: #870c14;
color: #870c14;
}

.cookie-button--accept {
background-color: #9e0e17;
color: #fff;
border: 1px solid #9e0e17;
}

.cookie-button--accept:hover {
background-color: #521017;
color: #fff;
}

.cookie-button--decline {
background-color: var(--color-white);
color: var(--color-grey);
border: 1px solid var(--color-white);
}

.cookie-button--decline:hover {
background-color: var(--color-white);
color: var(--color-red);
}

.cookie-button--secondary {
background-color: var(--color-white);
color: var(--color-red);
border: 1px solid var(--color-red);
}

.cookie-button--secondary:hover {
background-color: var(--color-red);
color: var(--color-white);
}

/* Settings Link Block */
.cookie-settings-link {
background: none;
border: none;
color: var(--color-red);
text-decoration: underline;
cursor: pointer;
padding: 0;
font: inherit;
transition: var(--transition);
}

.cookie-settings-link:hover {
color: var(--color-red-dark);
}

/* Decline Modal Block */
.cookie-decline-modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.5);
z-index: 10001;
padding: 20px;
}

.cookie-decline-modal__container {
background: var(--color-white);
max-width: 500px;
margin: 50px auto;
padding: 30px;
border-radius: var(--border-radius);
}

.cookie-decline-modal__title {
margin: 0 0 20px;
font-size: 24px;
font-weight: 600;
color: #333;
}

.cookie-decline-modal__text {
color: var(--color-grey);
line-height: 1.5;
margin-bottom: 20px;
}

.cookie-decline-modal__buttons {
display: flex;
justify-content: flex-end;
gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
.cookie-modal {
    overflow: auto;
}

.cookie-consent__container {
    padding: 20px 20px 80px;
}

.cookie-consent__wrapper {
    flex-direction: column;
    text-align: center;
}

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

.cookie-button {
    flex: 1;
    max-width: 200px;
}

.cookie-modal__container,
.cookie-decline-modal__container {
    margin: 0;
    padding: 20px 20px 60px;
}

.cookie-type__title {
    font-size: 18px;
}
.cookie-type__description {
    font-size: 12px;
}
}

/* end cookies */