/* ============================================================
   ESTILS COOKIES
   Banner inferior i botons
   ============================================================ */

   .cookie-banner {
    display: none;                 /* es mostra via JS */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffcc00;     /* groc corporatiu */
    color: #000;
    padding: 20px;
    z-index: 99999;                /* per sobre de tot */
    font-size: 14px;
    border-top: none;              /* eliminem la ratlleta negra */
}

/* Contenidor intern centrat */
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Text */
.cookie-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.4;
}

/* Contenidor botons */
.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Botons plans */
.cookie-btn {
    background-color: #ffffff;     /* blanc pla */
    color: #000;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;                  /* eliminem contorn */
    cursor: pointer;
    text-decoration: none;         /* sense subratllat */
    transition: all 0.25s ease;    /* transició suau */
}

/* Hover elegant */
.cookie-btn:hover {
    background-color: #f2f2f2;     /* lleuger canvi */
    transform: translateY(-1px);   /* micro-efecte */
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-text {
        min-width: 0;
        font-size: 13px;
        line-height: 1.5;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cookie-btn {
        padding: 9px 16px;
        font-size: 11px;
    }
}

