/* Cookie Banner */
.lcp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff4500; /* แดงส้ม */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    flex-wrap: wrap;
    display: none; /* ซ่อนเริ่มต้น */
}

.lcp-cookie-banner .text a {
    color: #fff;
    text-decoration: underline;
}

.lcp-cookie-banner .actions button {
    padding: 6px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-left: 8px;
}

.lcp-cookie-banner .lcp-btn {
    background: #ffa500; /* ส้ม */
    color: white;
}

.lcp-cookie-banner .lcp-link-btn {
    background: #333; /* ดำ */
    color: white;
}

/* Modal */
.lcp-modal {
    display: none;
    position: fixed;
    top:0; left:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lcp-modal .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.lcp-modal .card h3 {
    margin-top: 0;
    color: #ff4500;
}

.lcp-pref {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}
