:root{
    --coh-bg:#fffaf3;
    --coh-card:#ffffff;
    --coh-ink:#22180f;
    --coh-muted:#7a6a5b;
    --coh-line:rgba(92,64,39,.13);
    --coh-accent:#b66a2c;
    --coh-accent-dark:#7b3f18;
    --coh-accent-soft:#fff1df;
    --coh-shadow:0 18px 45px rgba(78,48,20,.12);
}

.coh-wrapper,
.coh-today-wrapper{
    box-sizing:border-box;
    color:var(--coh-ink);
    font-family:inherit;
}

.coh-wrapper *,
.coh-today-wrapper *{
    box-sizing:border-box;
}

.coh-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,360px));
    justify-content:center;
    gap:clamp(14px,2vw,24px);
    margin:clamp(18px,3vw,34px) 0;
}

.coh-card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,var(--coh-card),var(--coh-bg));
    border:1px solid var(--coh-line);
    border-radius:22px;
    padding:clamp(18px,2.5vw,26px);
    box-shadow:var(--coh-shadow);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.coh-card:before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:5px;
    background:linear-gradient(90deg,var(--coh-accent),#f0b164);
    opacity:.35;
}

.coh-card:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 58px rgba(78,48,20,.18);
}

.coh-card-head{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:16px;
    margin-bottom:18px;
    text-align:center;
}

.coh-day{
    font-size:clamp(1.12rem,1.8vw,1.35rem);
    line-height:1.15;
    font-weight:800;
    letter-spacing:-.03em;
}

.coh-icon{
    position:absolute;
    top:clamp(18px,2.5vw,26px);
    right:clamp(18px,2.5vw,26px);
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:999px;
    background:var(--coh-accent-soft);
    color:var(--coh-accent-dark);
    font-size:1.15rem;
}

.coh-pill{
    display:inline-flex;
    align-items:center;
    width:max-content;
    margin-top:8px;
    padding:5px 10px;
    border-radius:999px;
    background:var(--coh-accent-dark);
    color:#fff;
    font-size:.74rem;
    line-height:1;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.coh-pill-light{
    background:rgba(255,255,255,.2);
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
}

.coh-today{
    border-color:rgba(182,106,44,.45);
    box-shadow:0 24px 60px rgba(182,106,44,.18);
}

.coh-today:before{
    opacity:1;
}

.coh-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:12px 0;
    border-bottom:1px solid var(--coh-line);
}

.coh-row:last-child{border-bottom:none;padding-bottom:0;}
.coh-row span{color:var(--coh-muted);font-weight:650;white-space:nowrap;}
.coh-row strong{font-weight:800;text-align:right;white-space:nowrap;font-size:clamp(.95rem,1.15vw,1rem);}

.coh-closed{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:86px;
    border-radius:16px;
    background:#fff0f0;
    color:#9b2020;
    font-size:1.2rem;
    font-weight:900;
}

.coh-today-wrapper{
    margin:clamp(18px,3vw,34px) 0;
}

.coh-today-card{
    overflow:hidden;
    position:relative;
    max-width:760px;
    border-radius:26px;
    padding:clamp(22px,4vw,36px);
    color:#fff;
    background:
        radial-gradient(circle at top right,rgba(255,255,255,.24),transparent 34%),
        linear-gradient(135deg,var(--coh-accent-dark),var(--coh-accent));
    box-shadow:0 24px 65px rgba(123,63,24,.24);
}

.coh-today-topline{
    margin-bottom:8px;
    color:rgba(255,255,255,.78);
    font-size:.82rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.coh-today-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:20px;
    font-size:clamp(1.55rem,4vw,2.35rem);
    line-height:1.05;
    font-weight:900;
    letter-spacing:-.05em;
}

.coh-today-main{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin:18px 0;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
}

.coh-today-main span,
.coh-today-mini-grid span{
    color:rgba(255,255,255,.78);
    font-weight:750;
}

.coh-today-main strong{
    font-size:clamp(1.25rem,3vw,1.8rem);
    text-align:right;
}

.coh-today-mini-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.coh-today-mini-grid div{
    display:grid;
    gap:6px;
    padding:16px;
    border-radius:16px;
    background:rgba(255,255,255,.11);
    border:1px solid rgba(255,255,255,.15);
}

.coh-today-mini-grid strong{font-size:1.05rem;white-space:nowrap;}

.coh-opening-hours-text{
    white-space:normal;
}

.coh-today-closed{
    padding:22px;
    border-radius:18px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    font-size:clamp(1.35rem,3vw,1.9rem);
    font-weight:900;
}

@media (max-width:720px){
    .coh-wrapper{
        grid-template-columns:1fr;
        gap:14px;
    }

    .coh-card{
        border-radius:18px;
        padding:18px;
    }

    .coh-card:hover{
        transform:none;
    }

    .coh-row{
        padding:11px 0;
    }

    .coh-today-card{
        border-radius:20px;
        padding:22px;
    }

    .coh-today-title,
    .coh-today-main{
        align-items:flex-start;
        flex-direction:column;
    }

    .coh-today-main strong{
        text-align:left;
    }
}

@media (max-width:430px){
    .coh-wrapper{
        margin:16px 0;
    }

    .coh-card-head{
        margin-bottom:12px;
    }

    .coh-icon{
        width:36px;
        height:36px;
        flex-basis:36px;
    }

    .coh-row{
        display:grid;
        grid-template-columns:1fr;
        gap:3px;
    }

    .coh-row strong{
        text-align:left;
    }

    .coh-today-mini-grid{
        grid-template-columns:1fr;
    }
}

/* Condensed text shortcode: [opening_hours_text] */
.coh-opening-hours-text.coh-text-card{
    --coh-text-bg:#2d251f;
    --coh-text-bg-2:#241d18;
    --coh-text-heading:#ff6f2a;
    --coh-text-teal:#006f68;
    --coh-text-line:rgba(255,255,255,.22);
    --coh-text-white:#fff;
    display:block;
    width:100%;
    max-width:920px;
    margin:clamp(18px,3vw,34px) auto;
    padding:clamp(26px,4vw,48px);
    border-radius:22px;
    background:
        radial-gradient(circle at 12% 0,rgba(255,255,255,.07),transparent 28%),
        linear-gradient(135deg,var(--coh-text-bg),var(--coh-text-bg-2));
    color:var(--coh-text-white);
    box-shadow:0 22px 55px rgba(0,0,0,.18);
    box-sizing:border-box;
}

.coh-opening-hours-text.coh-text-card *,
.coh-opening-hours-text.coh-text-card *:before,
.coh-opening-hours-text.coh-text-card *:after{
    box-sizing:border-box;
}

.coh-text-title{
    margin:0 0 clamp(22px,3vw,34px);
    color:var(--coh-text-heading);
    font-size:clamp(1.35rem,3vw,2.15rem);
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.coh-text-title:after{
    content:"";
    display:block;
    width:58px;
    height:4px;
    margin-top:14px;
    border-radius:999px;
    background:var(--coh-text-teal);
}

.coh-text-list{
    display:grid;
    gap:18px;
}

.coh-text-row{
    display:grid;
    grid-template-columns:minmax(120px,180px) minmax(40px,1fr) minmax(130px,max-content);
    align-items:baseline;
    gap:6px 18px;
    min-width:0;
}

.coh-text-day,
.coh-text-time,
.coh-text-food{
    font-size:clamp(1rem,1.85vw,1.45rem);
    line-height:1.25;
    white-space:nowrap;
}

.coh-text-day{
    font-weight:500;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.coh-text-line{
    height:1px;
    background:var(--coh-text-line);
    transform:translateY(-.28em);
}

.coh-text-time{
    font-weight:650;
}

.coh-text-food{
    grid-column:3;
    color:rgba(255,255,255,.74);
    font-size:clamp(.86rem,1.2vw,.98rem);
    font-style:italic;
    white-space:nowrap;
}

.coh-text-closed{
    color:var(--coh-text-teal);
    font-weight:800;
    text-transform:uppercase;
}

@media (max-width:760px){
    .coh-opening-hours-text.coh-text-card{
        padding:24px;
        border-radius:18px;
    }

    .coh-text-row{
        grid-template-columns:1fr max-content;
        gap:6px 14px;
        padding-bottom:14px;
        border-bottom:1px solid var(--coh-text-line);
    }

    .coh-text-row:last-child{
        padding-bottom:0;
        border-bottom:0;
    }

    .coh-text-line{
        display:none;
    }

    .coh-text-food{
        grid-column:1 / -1;
        margin-top:2px;
    }
}

@media (max-width:430px){
    .coh-text-row{
        grid-template-columns:1fr;
    }

    .coh-text-day,
    .coh-text-time,
    .coh-text-food{
        white-space:normal;
    }
}

.coh-plain-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.coh-plain-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.coh-plain-day{
    font-weight:700;
}

.coh-plain-hours{
    text-align:right;
}

.coh-plain-food{
    margin-top:4px;
    font-size:.9em;
    opacity:.75;
}

@media (max-width:768px){
    .coh-plain-row{
        flex-direction:column;
        gap:4px;
    }

    .coh-plain-hours{
        text-align:left;
    }
}
