/* ========================================
   COOKIE CONSENT — C&Y WEB
======================================== */


/* ========================================
   COOKIE BANNER
======================================== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: none;
    justify-content: space-between;
    align-items: center;

    padding: 18px 24px;

    background: #111;
    color: #fff;

    z-index: 9999;
}

.cookie-text {
    max-width: 70%;
    font-family: 'AvenirLight', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    align-items: center;
}


/* ========================================
   BUTTONS (CY STYLE)
======================================== */

.cookie-primary,
.cookie-secondary {
    padding: 9px 16px;
    border-radius: 6px;

    font-family: 'AvenirLight', sans-serif;
    font-size: 14px;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* Primary button */
.cookie-primary {
    background: #B09E80;
    color: #fff;
    border: none;
}

.cookie-primary:hover {
    background: #8e7b5a;
}

/* Secondary button */
.cookie-secondary {
    background: transparent;
    border: 1px solid #B09E80;
    color: #B09E80;
    margin-right: 10px;
}

.cookie-secondary:hover {
    background: rgba(176,158,128,0.08);
}


/* ========================================
   COOKIE MODAL
======================================== */

#cookie-modal {
    position: fixed;
    inset: 0;

    display: none;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.5);
    z-index: 10000;
}

.cookie-modal-content {
    width: 440px;
    padding: 32px;

    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    font-family: 'AvenirLight', sans-serif;
}

.cookie-modal-content h3 {
    font-family: 'CinzelCustom', serif;
    margin-bottom: 10px;
}

.cookie-modal-description {
    margin-bottom: 20px;

    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-modal-text p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-option {
    margin: 14px 0;
    font-size: 14px;
}

.cookie-option input {
    margin-right: 8px;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}


/* ========================================
   LINKS
======================================== */

.cookie-link {
    margin-left: 6px;
    color: #B09E80;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}


