/* home.css — homepage content (info strip, product modal, hero, category bar, menu, news, gallery, contact, responsive, minicart). Loaded after base.css; RESPONSIVE precedes MINICART per original source order. */
  /* ===================== INFO STRIP (light, replaces dark bar) ===================== */
  .infobar{position:relative;z-index:62;background:#FBFAF8;border-bottom:1px solid var(--line)}
  .infobar-in{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:16px 24px;font-size:13.5px;font-weight:500;color:var(--muted)}
  .status{display:flex;align-items:center;gap:8px;color:var(--green);font-weight:600;flex-shrink:0;cursor:pointer}
  .status em{font-style:normal;color:var(--muted);font-weight:500}
  .status.closed{color:var(--brand)}
  .gdot{width:9px;height:9px;border-radius:50%;background:currentColor}
  .infobar .addr{display:flex;align-items:center;gap:8px;min-width:0}
  .infobar .addr svg{width:15px;height:15px;flex-shrink:0;color:var(--brand)}
  .infobar .route{position:relative;color:var(--brand);font-weight:700;white-space:nowrap}
  .infobar .route::after{content:"";position:absolute;left:0;bottom:-2px;width:100%;height:1px;background:currentColor;
    transform:scaleX(0);transform-origin:right;transition:transform .35s ease}
  .infobar .route:hover::after{transform:scaleX(1);transform-origin:left}

  /* hours modal */
  .hours-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);margin:0;max-width:320px;width:calc(100% - 40px);border:none;border-radius:16px;padding:20px;
    box-shadow:0 24px 60px -20px rgba(0,0,0,.45);color:var(--ink)}
  .hours-modal::backdrop{background:rgba(0,0,0,.5)}
  .hours-modal:focus{outline:none}
  .hm-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}
  .hm-head h3{font-weight:800;font-size:18px;letter-spacing:-.01em}
  .hm-close{background:none;border:none;padding:0;cursor:pointer;color:var(--ink);display:grid;place-items:center;transition:color .35s ease}
  .hm-close svg{width:16px;height:16px;display:block}
  .hm-close:hover{color:var(--brand)}
  .hm-close:focus{outline:none}
  .hm-close:focus-visible{outline:2px solid var(--brand);outline-offset:3px;border-radius:4px}
  .hm-table{width:100%;border-collapse:collapse;font-size:14px}
  .hm-table td{padding:7px 0;color:var(--muted)}
  .hm-table td:last-child{text-align:right;color:var(--ink);font-weight:600}
  .hm-table tr.today td{color:var(--ink);font-weight:800}
  .hm-table tr.today{background:var(--brand-soft)}
  .hm-table tr.today td:first-child{border-radius:6px 0 0 6px;padding-left:8px}
  .hm-table tr.today td:last-child{border-radius:0 6px 6px 0;padding-right:8px}
  .infobar .tel{margin-left:auto;display:flex;align-items:center;gap:8px;color:var(--ink-soft);font-weight:600;white-space:nowrap;cursor:pointer;transition:color .35s ease}
  .infobar .tel svg{width:15px;height:15px;color:var(--brand)}
  .tel-text{position:relative;display:inline-block}
  .tel-text::after{content:"";position:absolute;left:0;bottom:-3px;width:100%;height:1px;background:currentColor;
    transform:scaleX(0);transform-origin:right;transition:transform .35s ease}
  .infobar .tel:hover .tel-text::after{transform:scaleX(1);transform-origin:left}
  .infobar .tel.copied{color:var(--brand)}
  .infobar .tel.copied .tel-text::after{transform:scaleX(0)}


  /* ===================== HERO ===================== */
  .hero{position:relative;min-height:400px;padding:160px 0 96px;display:flex;align-items:center;
    background:#1a1a1a url('../media/hero.jpg') center/cover no-repeat}
  .hero::after{content:"";position:absolute;top:0;left:0;right:0;height:45%;background:linear-gradient(180deg,rgb(42 20 0 / 70%),transparent)}
  .hero-in{position:relative;z-index:1;display:block;width:100%}
  .hero-copy{max-width:500px}
  .hero h1{color:#392D25;font-weight:500;font-size:clamp(42px,6vw,60px);line-height:1.02;letter-spacing:-.02em;margin-bottom:18px}
  .hero h1 em{font-style:normal;color:#392D25}
  .hero p{color:#392D25;font-size:18px;font-weight:400;max-width:320px;margin-bottom:30px}
  .hero-cta{display:flex;gap:12px;flex-wrap:wrap}
  .btn{font-weight:600;font-size:15px;padding:15px 28px;border-radius:12px;border:1.6px solid transparent;
    transition:transform .35s var(--ease),background .35s ease,color .35s ease,border-color .35s ease}
  .hero .btn{background:#fff;color:#111;border-color:#fff}
  .hero .btn:hover{background:rgba(255,255,255,.86);transform:translateY(-2px)}
  .hero .btn.ghost{background:transparent;color:#fff;border-color:#fff}
  .hero .btn.ghost:hover{background:rgba(255,255,255,.16);color:#fff;border-color:#fff}

  /* ===================== CATEGORY BAR (sticky) ===================== */
  .catbar{position:sticky;top:var(--head);z-index:61;background:rgba(255,255,255,.94);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);transition:box-shadow .3s ease}
  /* shadow only once the catbar is pinned under the header (toggled in main.js) */
  .catbar.stuck{box-shadow:0 4px 32px rgba(0,0,0,.15)}
  .catbar-in{display:flex;align-items:center;gap:16px;height:var(--catbar)}
  .search{display:flex;align-items:center;gap:10px;background:var(--soft);border:1.5px solid transparent;border-radius:999px;padding:0 16px;height:42px;width:270px;flex-shrink:0;transition:box-shadow .16s ease,border-color .25s ease}
  .search:hover{border-color:#d6d1c8}
  .search:focus-within{box-shadow:0 0 0 2px var(--brand)}
  .search svg{width:17px;height:17px;color:var(--muted);flex-shrink:0}
  .search input{border:none;background:none;outline:none;font-size:14.5px;font-weight:500;width:100%;color:var(--ink)}
  .search input::placeholder{color:var(--muted)}
  .search input::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none;width:18px;height:18px;flex-shrink:0;cursor:pointer;
    background-color:#000;
    -webkit-mask:url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2024%2024%22%3E%3Cpath%20fill-rule=%22evenodd%22%20clip-rule=%22evenodd%22%20d=%22M18.594%206.21967C18.8625%206.48816%2018.8849%206.90955%2018.6612%207.20353L18.594%207.28033L13.7504%2012.124C13.5941%2012.2802%2013.5941%2012.5335%2013.7504%2012.6897L18.594%2017.5334C18.8869%2017.8263%2018.8869%2018.3011%2018.594%2018.594C18.3256%2018.8625%2017.9042%2018.8849%2017.6102%2018.6612L17.5334%2018.594L12.6897%2013.7504C12.5335%2013.5941%2012.2802%2013.5941%2012.124%2013.7504L7.28033%2018.594C6.98744%2018.8869%206.51256%2018.8869%206.21967%2018.594C5.95118%2018.3256%205.92881%2017.9042%206.15255%2017.6102L6.21967%2017.5334L11.0634%2012.6897C11.2196%2012.5335%2011.2196%2012.2802%2011.0634%2012.124L6.21967%207.28033C5.92678%206.98744%205.92678%206.51256%206.21967%206.21967C6.48816%205.95118%206.90955%205.92881%207.20353%206.15255L7.28033%206.21967L12.124%2011.0634C12.2802%2011.2196%2012.5335%2011.2196%2012.6897%2011.0634L17.5334%206.21967C17.8263%205.92678%2018.3011%205.92678%2018.594%206.21967Z%22/%3E%3C/svg%3E") center/contain no-repeat;
    mask:url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2024%2024%22%3E%3Cpath%20fill-rule=%22evenodd%22%20clip-rule=%22evenodd%22%20d=%22M18.594%206.21967C18.8625%206.48816%2018.8849%206.90955%2018.6612%207.20353L18.594%207.28033L13.7504%2012.124C13.5941%2012.2802%2013.5941%2012.5335%2013.7504%2012.6897L18.594%2017.5334C18.8869%2017.8263%2018.8869%2018.3011%2018.594%2018.594C18.3256%2018.8625%2017.9042%2018.8849%2017.6102%2018.6612L17.5334%2018.594L12.6897%2013.7504C12.5335%2013.5941%2012.2802%2013.5941%2012.124%2013.7504L7.28033%2018.594C6.98744%2018.8869%206.51256%2018.8869%206.21967%2018.594C5.95118%2018.3256%205.92881%2017.9042%206.15255%2017.6102L6.21967%2017.5334L11.0634%2012.6897C11.2196%2012.5335%2011.2196%2012.2802%2011.0634%2012.124L6.21967%207.28033C5.92678%206.98744%205.92678%206.51256%206.21967%206.21967C6.48816%205.95118%206.90955%205.92881%207.20353%206.15255L7.28033%206.21967L12.124%2011.0634C12.2802%2011.2196%2012.5335%2011.2196%2012.6897%2011.0634L17.5334%206.21967C17.8263%205.92678%2018.3011%205.92678%2018.594%206.21967Z%22/%3E%3C/svg%3E") center/contain no-repeat}

  .cats-wrap{display:flex;align-items:center;flex:1;min-width:0;gap:8px}
  .cats{flex:1;min-width:0;display:flex;gap:4px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;height:var(--catbar);align-items:stretch;
    -webkit-mask:linear-gradient(90deg,transparent 0,#000 32px,#000 calc(100% - 32px),transparent 100%);
    mask:linear-gradient(90deg,transparent 0,#000 32px,#000 calc(100% - 32px),transparent 100%)}
  .cats::-webkit-scrollbar{display:none}
  .cats a{position:relative;display:flex;align-items:center;white-space:nowrap;font-weight:700;font-size:13px;letter-spacing:.04em;text-transform:lowercase;color:var(--muted);padding:20px 14px;
    transition:color .35s ease}
  .cats a::before{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;border-radius:20px;background:var(--ink);
    transform:scaleX(0);transform-origin:center;transition:transform 200ms ease}
  .cats a:hover{color:var(--ink)}
  .cats a:hover::before{transform:scaleX(.25);transition:transform 200ms cubic-bezier(0.35,0.12,0.14,1.42)}
  .cats a span{color:var(--muted);font-weight:600;margin-left:3px;transition:color .35s ease}
  .cats a:hover span{color:var(--ink)}
  .cats a.active{color:var(--ink);font-weight:700}
  .cats a.active span{color:var(--ink)}
  .cats a.active::before{transform:scaleX(1)}
  .chev{flex-shrink:0;width:34px;height:34px;border-radius:50%;background:#fff;
    border:1px solid var(--line);box-shadow:0 4px 12px -4px rgba(34,38,41,.25);display:grid;place-items:center;
    font-size:18px;color:var(--ink);cursor:pointer;transition:color .3s ease,border-color .3s ease,opacity .2s ease}
  .chev:hover{color:var(--brand);border-color:var(--brand)}
  .chev.off{opacity:0;pointer-events:none}
  .chev.is-hidden{display:none}

  /* ===================== MENU SECTIONS ===================== */
  main{padding-bottom:24px}
  .menu-zone{position:relative;isolation:isolate}
  .bg-pattern{position:absolute;inset:0;width:100%;height:100%;z-index:-1;pointer-events:none;color:var(--brand);opacity:.05}
  #menu{padding:4rem 24px 6rem}
  #menu .sec:first-of-type{padding-top:0}
  .sec{padding:40px 0 4px}
  .sec-head{display:flex;align-items:baseline;gap:12px;margin-bottom:20px}
  .sec-head h2{font-weight:600;font-size:18px;letter-spacing:-.01em;text-transform:lowercase}
  .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
  /* search filter: force-hide filtered cards/sections (overrides .card display:flex) */
  .card[hidden]{display:none}
  .sec[hidden]{display:none}
  .search-empty{color:var(--muted);font-size:15px;padding:8px 2px 40px}

  /* ---- PRODUCT CARD (horizontal, matches reference) ---- */
  .card{position:relative;display:flex;gap:14px;height:100%;background:#fff;border:1px solid var(--line);
    border-radius:var(--r);padding:20px;box-shadow:var(--shadow);transition:transform .18s var(--ease),box-shadow .2s ease,border-color .18s ease}
  .card:hover{transform:translateY(-3px);box-shadow:var(--shadow-h);border-color:transparent}
  .card .info{display:flex;flex-direction:column;flex:1;min-width:0}
  .card h3{font-weight:600;font-size:17.5px;line-height:1.25;margin-bottom:8px}
  .card .desc{color:var(--muted);font-size:14px;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
  .card .price{margin-top:auto;padding-top:14px;font-weight:600;font-size:15px;color:var(--ink)}
  .card .media{width:104px;flex-shrink:0;display:flex;align-items:center;justify-content:center}
  .card .media img{width:104px;height:84px;object-fit:contain}
  .card .add{position:absolute;top:16px;right:16px;width:44px;height:44px;border-radius:12px;background:var(--brand-soft);
    color:var(--brand);font-size:24px;font-weight:600;display:grid;place-items:center;line-height:1;
    transition:background .35s ease,color .35s ease}
  .card .add:hover{background:#FAD9D4}
  .card .add.on{background:var(--brand);color:#fff;font-size:16px;font-weight:800;box-shadow:0 8px 16px -6px rgba(226,74,59,.6)}

  /* product meta (icons / text / icon+text) below the title */
  .card .meta{display:flex;flex-wrap:wrap;align-items:center;gap:6px;margin:-2px 0 9px;padding-right:46px}
  .card .meta-item{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:700;line-height:1;white-space:nowrap}
  .card .meta-item.pill{padding:4px 9px;border-radius:999px;background:var(--soft);color:var(--ink-soft)}
  .card .meta-item svg{width:14px;height:14px;flex-shrink:0;display:block}
  .card .meta-item.ico{padding:0}
  .card .meta-item.ico svg{width:17px;height:17px}
  /* tones — colour text pills and monochrome (currentColor) icons; the multicolour chili keeps its own fills */
  .card .m-hot.pill{background:var(--brand-soft);color:var(--brand-dark)}
  .card .m-hot.ico{color:var(--brand)}
  .card .m-veg.pill{background:#E7F4E3;color:#2F7D38}
  .card .m-veg.ico{color:#2F7D38}
  .card .m-new.pill{background:#FBEBD2;color:#B4690E}
  .card .m-new.ico{color:#B4690E}
  .card .m-cool.pill{background:var(--soft);color:var(--muted)}
  .card .m-cool.ico{color:var(--muted)}

  /* ===================== AKTUALITY (news) ===================== */
  .news-sec{padding:6rem 0;background:#fff;border-top:1px solid var(--line)}
  .news-title{text-align:center;font-weight:500;font-size:clamp(30px,3.4vw,42px);margin-bottom:36px}
  .news-list{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:24px}
  .news-card{display:flex;gap:24px;align-items:stretch;background:#fff;border:1px solid var(--line);border-radius:var(--r);
    padding:18px;text-decoration:none;color:inherit;box-shadow:var(--shadow);
    transition:transform .18s var(--ease),box-shadow .2s ease,border-color .18s ease}
  .news-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-h);border-color:transparent}
  .news-media{flex:1;max-width:160px;flex-shrink:0;aspect-ratio:1/1;border-radius:12px;overflow:hidden;background:var(--soft)}
  .news-media img{width:100%;height:100%;object-fit:cover;display:block}
  .news-body{flex:1;min-width:0;display:flex;flex-direction:column}
  .news-t{font-weight:600;font-size:19px;line-height:1.3;letter-spacing:-.01em;margin-bottom:8px}
  .news-ex{color:var(--ink-soft);font-size:14.5px;line-height:1.6;margin-bottom:14px;
    display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
  .news-date{margin-top:auto;font-size:13px;font-weight:600;color:var(--ink-soft)}
  .news-more{max-width:720px;margin:40px auto 0;text-align:center}

  /* shared underlined text link (line always visible; wipes out to the right on hover, back in from the left) */
  .tlink{position:relative;display:inline-block;font-weight:600;font-size:15px;color:var(--ink);text-decoration:none;padding-bottom:3px}
  .tlink::after{content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;background:currentColor;
    transform:scaleX(1);transform-origin:left;transition:transform .3s ease}
  .tlink:hover::after{transform:scaleX(0);transform-origin:right}

  /* ===================== NEWS MODAL (aktualita detail) ===================== */
  .news-card{cursor:pointer}
  /* center explicitly: the global *{margin:0} reset removes the UA margin:auto that would center a dialog */
  .news-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);margin:0;border:none;padding:0;background:transparent;width:min(640px,92vw);max-width:92vw;max-height:90vh;border-radius:18px;overflow:visible}
  .news-modal::backdrop{background:rgba(20,16,15,.55);backdrop-filter:blur(2px)}
  .news-modal-panel{position:relative;display:flex;flex-direction:column;max-height:90vh;background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 30px 80px -20px rgba(0,0,0,.5)}
  .news-modal-close{position:absolute;top:14px;right:14px;z-index:3;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.92);color:var(--ink);
    display:grid;place-items:center;box-shadow:0 4px 14px -4px rgba(0,0,0,.4);transition:transform .18s ease,color .18s ease}
  .news-modal-close svg{width:16px;height:16px}
  .news-modal-close:hover{color:var(--brand);transform:scale(1.06)}
  /* the scroll container handles long content; close button stays fixed over it */
  .news-modal-scroll{overflow-y:auto;-webkit-overflow-scrolling:touch}
  .nm-media{aspect-ratio:16/9;background:var(--soft);margin-bottom:20px}
  .nm-media img{width:100%;height:100%;object-fit:cover;display:block}
  .news-modal-body{padding:26px 28px 32px}
  .nm-date{font-size:14px;font-weight:600;color:var(--ink-soft);margin-bottom:8px}
  .nm-title{font-weight:500;font-size:clamp(24px,3vw,34px);line-height:1.15;margin-bottom:16px}
  .nm-content{color:var(--ink-soft);font-size:16px;line-height:1.7}
  .nm-content p{margin-bottom:14px}
  .nm-content p:last-child{margin-bottom:0}
  @media(max-width:560px){
    .news-modal{max-height:92vh}
    .news-modal-panel{max-height:92vh}
    .news-modal-body{padding:20px 20px 28px}
  }

  /* ===================== GALLERY (swiper) ===================== */
  .gallery{padding:6rem 0;overflow:hidden;border-top:1px solid var(--line)}
  .gallery-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:36px}
  .gallery-title{text-align:left;font-weight:500;font-size:clamp(30px,3.4vw,42px)}
  .gallery .swiper{overflow:visible}
  .gallery-swiper .swiper-slide{width:auto;height:360px}
  .gallery-swiper .swiper-slide img{height:100%;width:auto;display:block;border-radius:14px;object-fit:cover;background:var(--soft)}
  .gallery-nav{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:28px}
  /* dots (left) */
  .gallery .swiper-pagination{position:static;width:auto;display:flex;align-items:center;gap:8px;margin:0;text-align:left}
  .gallery .swiper-pagination-bullet{width:10px;height:10px;background:var(--ink);opacity:.22;margin:0!important;transition:opacity .3s ease,background .3s ease}
  .gallery .swiper-pagination-bullet-active{opacity:1;background:var(--ink)}
  /* arrows (right) */
  .gallery-arrows{display:flex;gap:18px}
  .g-arrow{background:none;border:none;padding:4px;color:var(--ink);display:grid;place-items:center;cursor:pointer;
    transition:color .35s ease,opacity .35s ease}
  .g-arrow svg{width:24px;height:auto;display:block}
  .g-prev svg{transform:scaleX(-1)}
  .g-arrow:not(.swiper-button-disabled):hover{color:var(--brand)}
  .g-arrow.swiper-button-disabled{opacity:.35;cursor:default}

  /* ===================== CONTACT / MAP SECTION ===================== */
  .contact-sec{padding:6rem 0;background:#FBFAF8;border-top:1px solid var(--line)}
  .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
  .map-card{position:relative;border-radius:18px;overflow:hidden;aspect-ratio:7/5;box-shadow:var(--shadow);border:1px solid var(--line)}
  /* z-index:0 makes #map its own stacking context so Leaflet panes stay under our overlays */
  .map-card .map-bg{position:absolute;inset:0;width:100%;height:100%;z-index:0;background:#E9EDE8}
  .map-card .leaflet-container{width:100%;height:100%;font:inherit;background:#E9EDE8}
  /* keep Mapy.com / Seznam.cz brand names as-is (don't lowercase third-party attribution) */
  .leaflet-control-attribution{text-transform:none}
  .mapy-logo{display:block;line-height:0}
  .mapy-logo img{display:block}
  /* Leaflet divIcon marker (geo-anchored, tracks the map) */
  .pin-mark span{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%}
  .pin-mark .halo{width:40px;height:40px;background:var(--brand);opacity:.3}
  .pin-mark .ring{width:20px;height:20px;background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.3)}
  .pin-mark .dot{width:12px;height:12px;background:var(--brand)}
  /* branded info card pinned in the corner over the interactive map */
  .map-info{position:absolute;left:16px;top:16px;z-index:3;background:#fff;border-radius:12px;
    box-shadow:0 10px 30px -10px rgba(0,0,0,.25);padding:14px 16px;max-width:230px}
  .mi-head{display:flex;align-items:center;gap:9px;font-weight:800;font-size:15px;margin-bottom:8px}
  .mi-ico{width:24px;height:24px;border-radius:7px;background:var(--brand);color:#fff;display:grid;place-items:center;flex-shrink:0}
  .mi-ico svg{width:13px;height:13px}
  .mi-sub{font-weight:700;font-size:13.5px;margin-bottom:4px}
  .mi-addr{color:var(--muted);font-size:13px;line-height:1.5}

  .contact-col h2{font-weight:500;font-size:clamp(30px,3.4vw,42px);margin-bottom:24px}
  .cline{display:flex;align-items:flex-start;gap:14px;padding:14px 0;border-top:1px solid var(--line)}
  .cline:first-of-type{border-top:none}
  .cline:last-of-type{border-bottom:none}
  .cline .cbox{width:42px;height:42px;border-radius:11px;background:#fff;color:var(--brand);
    box-shadow:0 2px 8px rgba(34,38,41,.10);border:1px solid var(--line);
    display:grid;place-items:center;flex-shrink:0}
  .cline .cbox svg{width:19px;height:19px}
  .cline .ctxt{font-size:15px;line-height:1.5;padding-top:2px}
  .cline .ctxt b{display:block;font-weight:600;margin-bottom:2px}
  .cline .ctxt a,.cline .route{position:relative;transition:color .35s ease}
  .cline .ctxt a{color:var(--ink)}
  .cline .ctxt a:hover{color:var(--brand)}
  .cline .route{display:inline-block;margin-top:4px;color:var(--brand);font-weight:700}
  .cline .ctxt a::after,.cline .route::after{content:"";position:absolute;left:0;bottom:-2px;width:100%;height:1px;background:currentColor;
    transform:scaleX(0);transform-origin:right;transition:transform .35s ease}
  .cline .ctxt a:hover::after,.cline .route:hover::after{transform:scaleX(1);transform-origin:left}

  /* ===================== RESPONSIVE ===================== */
  @media(max-width:992px){
    .nav{display:none}
    .hdr-right{margin-left:auto;gap:6px}
    .hdr-right .lang,.hdr-right .acct{display:none}
    .acct-m{display:grid}
    .hamburger{display:flex;margin-left:0}
    .hero{padding-top:130px}
    .catbar{top:var(--head)}
    .cart-wrap{position:fixed;bottom:16px;left:0;right:0;z-index:150;padding:0 16px;justify-content:center}
    .cart{width:100%;max-width:400px;justify-content:space-between;padding:15px 20px;border-radius:14px}
    .cart .cart-ic{display:none}
    .cart .cart-label{display:inline}
  }
  @media(max-width:900px){
    .hero-copy{max-width:none}
    .grid{grid-template-columns:repeat(2,1fr)}
    .foot-grid{grid-template-columns:1fr 1fr}
    .infobar .addr{display:none}
    .search{width:200px}
    .contact-grid{grid-template-columns:1fr;gap:28px}
    .contact-col{order:-1}
  }
  @media(max-width:600px){
    .wrap{padding-left:20px;padding-right:20px}
    .grid{grid-template-columns:1fr;gap:0}
    #menu{padding:4rem 20px}
    .gallery{padding:4rem 0}
    .contact-sec{padding:4rem 0}
    .card{background:none;border:none;border-bottom:1px solid #c9c9c9;border-radius:0;box-shadow:none;padding:24px 0}
    .card:hover{transform:none;box-shadow:none;border-color:#c9c9c9}
    .card .media{flex:1}
    .card h3{font-size:16px}
    .sec-head{margin-bottom:10px}
    .sec-head h2{font-size:18px}
    .acct span{display:none}
    .status{gap:4px}
    .hide-sm{display:none}
    .infobar-in{flex-wrap:wrap;justify-content:space-between;gap:8px 18px;padding:16px 20px;font-size:13px}
    .infobar .tel{margin-left:0;gap:4px}
    .foot-grid{grid-template-columns:1fr}
    .foot-contact{flex-direction:row;flex-wrap:wrap;justify-content:flex-start;gap:32px}
    .fc-box{gap:8px}
    .fc-box svg{width:24px;height:24px}
    .fc-text{font-size:16px}
    .foot-hours{max-width:none}
    .foot-bottom{padding-bottom:80px}
    .foot-bottom .legal{order:-1}
    .catbar-in{flex-direction:column;align-items:stretch;height:auto;gap:10px;padding:10px 20px 0;overflow:hidden}
    .catbar{top:0}
    .cats-wrap{overflow-x:auto;scrollbar-width:none;margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px;border-top:1px solid var(--line)}
    .cats-wrap::-webkit-scrollbar{display:none}
    .chev{display:none}
    .cats{overflow:visible;gap:0;height:auto;-webkit-mask:none;mask:none}
    .cats a{letter-spacing:.02em;padding:16px 14px}
    .search{width:100%}
    .bg-pattern{display:none}
    /* mobile hero: re-add the dark bottom gradient, light + centered text */
    .hero{padding-bottom:64px}
    .hero::before{content:"";position:absolute;left:0;right:0;bottom:0;height:75%;background:linear-gradient(0deg,rgb(0 0 0 / 85%),transparent)}
    .hero-copy{max-width:none;text-align:center;margin:0 auto}
    .hero-cta{justify-content:center}
    .hero h1,.hero h1 em,.hero p{color:var(--brand-soft)}
    .hero p{font-size:16px}
    .hero .btn{font-size:14px;padding:15px 18px}
    .gallery .wrap{display:flex;flex-direction:column}
    .gallery-head{order:0}
    .gallery-nav{order:1;margin-top:0;margin-bottom:18px}
    .gallery-swiper{order:2}
    .news-sec{padding:4rem 0}
    .news-card{gap:16px;padding:14px}
    .news-media{max-width:120px}
    .news-t{font-size:16.5px}
    .news-ex{font-size:13.5px;-webkit-line-clamp:2;margin-bottom:10px}
    .gallery-swiper .swiper-slide{width:80%;height:auto;aspect-ratio:1/1}
    .gallery-swiper .swiper-slide img{width:100%;height:100%;object-fit:cover}
  }

  @media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
