/* La Fleur Compliance — age gate, state switcher, AI concierge widget */
.lfc-gate{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;background:rgba(35,75,54,.55);backdrop-filter:blur(3px);padding:20px}
.lfc-gate[hidden]{display:none}
.lfc-gate__panel{background:#FAF8F2;color:#3F3A34;max-width:460px;width:100%;border-radius:12px;padding:40px 36px;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.3);border-top:4px solid #234B36}
.lfc-gate__mark{width:44px;height:44px;margin:0 auto 18px;color:#C9A34E}
.lfc-gate__mark svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.5}
.lfc-gate__panel h2{font-family:"Cormorant Garamond",Georgia,serif;color:#234B36;font-size:1.6rem;margin:0 0 12px;line-height:1.25}
.lfc-gate__panel p{font-size:.95rem;color:#5B554C;margin:0 0 22px}
.lfc-gate__actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.lfc-gate__fine{font-size:.74rem;color:#8B8479;line-height:1.5}
.lfc-gate__fine a{color:#234B36;text-decoration:underline}

.lfc-state-switcher{position:relative;display:inline-block}
.lfc-state-switcher select{border:1.5px solid #C4B5A0;border-radius:4px;padding:8px 12px;font-size:.85rem;background:#fff;color:#3F3A34}

.lfc-chat{position:fixed;right:22px;bottom:22px;z-index:400}
.lfc-chat__toggle{width:58px;height:58px;border-radius:50%;background:#234B36;color:#fff;border:0;display:grid;place-items:center;cursor:pointer;box-shadow:0 8px 24px rgba(35,75,54,.35);transition:transform .2s ease}
.lfc-chat__toggle:hover{transform:scale(1.06)}
.lfc-chat__toggle svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.7}
.lfc-chat__panel{position:absolute;right:0;bottom:72px;width:320px;max-width:calc(100vw - 40px);background:#fff;border-radius:12px;box-shadow:0 20px 50px rgba(0,0,0,.22);display:flex;flex-direction:column;max-height:440px;overflow:hidden;border:1px solid #D8C8B2}
.lfc-chat__panel[hidden]{display:none}
.lfc-chat__head{background:#234B36;color:#fff;padding:14px 16px;font-weight:600;font-size:.92rem}
.lfc-chat__log{flex:1;overflow-y:auto;padding:14px 16px;display:flex;flex-direction:column;gap:10px;font-size:.86rem}
.lfc-chat__msg{padding:9px 12px;border-radius:8px;max-width:85%;line-height:1.4}
.lfc-chat__msg--bot{background:#EDE4D6;color:#3F3A34;align-self:flex-start}
.lfc-chat__msg--user{background:#234B36;color:#fff;align-self:flex-end}
.lfc-chat__form{display:flex;border-top:1px solid #D8C8B2;padding:10px}
.lfc-chat__form input{flex:1;border:0;font-size:.85rem;padding:8px}
.lfc-chat__form input:focus{outline:none}
.lfc-chat__form button{border:0;background:#C9A34E;color:#234B36;border-radius:6px;padding:8px 14px;font-weight:600;font-size:.8rem;cursor:pointer}
