/*
Custom CSS overrides
Edit this file for small design changes without touching the main CSS files.

Examples:
:root {
    --orange: #f97316;
}

.site-header {
    /* custom header styling here */
}
*/


/* V12 operations reports */
.ops-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(220px,1fr));
    gap:18px;
    align-items:start;
}
.ops-column{
    background:#fff;
    border:1px solid #f0ddd0;
    border-radius:24px;
    padding:18px;
    box-shadow:0 18px 50px rgba(17,17,17,.05);
}
.ops-column h2{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 0 16px;
}
.ops-column h2 span{
    background:#fff7ed;
    color:#9a3412;
    border-radius:999px;
    padding:4px 10px;
    font-size:14px;
}
.ops-order-card{
    background:#fffaf5;
    border:1px solid #f0ddd0;
    border-radius:18px;
    padding:14px;
    margin-bottom:12px;
}
.ops-order-top{
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-weight:900;
}
.ops-order-card p{
    margin:7px 0;
    color:#667085;
}
.ops-actions,.export-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}
.admin-live-banner{
    position:fixed;
    right:24px;
    bottom:24px;
    background:#111;
    color:white;
    padding:16px 20px;
    border-radius:18px;
    z-index:99999;
    box-shadow:0 18px 50px rgba(0,0,0,.25);
}
.track-timeline-card{
    max-width:900px;
    margin:30px auto;
    background:white;
    border:1px solid #f0ddd0;
    border-radius:28px;
    padding:28px;
}
.order-status-timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(130px,1fr));
    gap:14px;
}
.timeline-step{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:14px;
    opacity:.55;
}
.timeline-step span{
    display:grid;
    place-items:center;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#e5e7eb;
    margin-bottom:8px;
    font-weight:900;
}
.timeline-step.done{
    background:#fff7ed;
    border-color:#fdba74;
    opacity:1;
}
.timeline-step.done span{
    background:#f97316;
    color:white;
}
@media(max-width:1200px){
    .ops-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:700px){
    .ops-grid{grid-template-columns:1fr}
}


/* V13 public polish */
.site-header{backdrop-filter:blur(12px);box-shadow:0 10px 30px rgba(17,17,17,.04)}
.product-card,.account-card,.checkout-card,.cart-panel{transition:.22s ease}
.product-card:hover{transform:translateY(-4px);box-shadow:0 22px 60px rgba(17,17,17,.10)}
.empty-card,.error-card,.success-card{border-radius:22px!important}
.checkout-form,.cart-summary,.account-card{box-shadow:0 24px 70px rgba(17,17,17,.07)}
@media(max-width:720px){.site-header{padding:14px 18px}.brand span:last-child{font-size:16px}.page-hero h1,.hero h1{font-size:42px!important}.product-grid,.menu-grid,.checkout-grid,.account-grid,.account-auth-grid{grid-template-columns:1fr!important}.product-modal{width:calc(100vw - 24px)!important;max-height:92vh;overflow:auto}}

/* Allergen icons */
.allergen-icons{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
    margin-top:8px;
}

.allergen-icon{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#fff7ed;
    border:1px solid #fed7aa;
    color:#9a3412;
    border-radius:999px;
    padding:5px 9px;
    font-size:12px;
    font-weight:800;
}

.allergen-icon img{
    width:20px;
    height:20px;
    object-fit:contain;
    display:block;
}

.allergen-icon em{
    font-style:normal;
}

.allergen-icon.no-img{
    padding:6px 10px;
}

.modal-meta-grid .allergen-icons{
    margin-top:4px;
}
