/* A compact shop directory, shown by the existing menu button. */
.navigation-drawer{position:fixed;inset:0 0 0 auto;width:min(470px,100%);max-width:100%;height:100%;height:100dvh;max-height:100dvh;padding:0;border:0;margin:0;background:#fff;color:var(--ink);overflow-y:auto;overscroll-behavior:contain;box-shadow:-16px 0 65px #163b4724}
.navigation-drawer::backdrop{background:rgb(14 42 51 / 35%);backdrop-filter:blur(3px)}
.navigation-drawer[open]{animation:drawer-reveal .26s cubic-bezier(.2,.7,.2,1) both}
.navigation-drawer[open]::backdrop{animation:drawer-shade .22s ease both}
.drawer-top{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px 30px 20px;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:2;background:#fff}
.drawer-top>img{display:block;width:130px;height:auto}
.drawer-close{width:42px;height:42px;border:1px solid var(--line);border-radius:50%;background:white;color:var(--ink)}
.drawer-close:hover{background:var(--pale)}
.drawer-content{padding:24px 30px 20px}
.drawer-search{display:flex;align-items:center;gap:12px;width:100%;text-align:left;font:inherit;font-size:14px;color:var(--muted);background:#f3f6f7;border:1px solid transparent;border-radius:8px;padding:14px 16px;min-height:50px;cursor:pointer}
.drawer-search:hover{border-color:#c4d7d9;background:#edf3f4}
.drawer-search>.icon{width:20px;height:20px;flex-shrink:0}
.drawer-section-title{display:flex;align-items:center;justify-content:space-between;gap:15px;margin:25px 0 10px}
.drawer-section-title h3{font-size:16px;font-weight:650;letter-spacing:-.02em;margin:0}
.drawer-section-title>a{display:flex;align-items:center;gap:7px;font-size:12px;color:var(--muted);text-decoration:none;padding:8px 0}
.drawer-section-title>a>.icon{width:16px;height:16px}
.drawer-category{display:grid;grid-template-columns:90px minmax(0,1fr) 20px;align-items:center;gap:17px;padding:12px 4px;border-bottom:1px solid var(--line);color:var(--ink);text-decoration:none;transition:background .15s}
.drawer-category:hover,.drawer-category[aria-current]{background:#f0f6f5}
.drawer-product{display:grid;place-items:center;height:74px;border-radius:8px;background:#f4f6f6;overflow:hidden}
.drawer-product img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}
.drawer-category-text{display:flex;flex-direction:column;gap:6px}
.drawer-category-text strong{font-size:19px;line-height:1.35;font-weight:600;letter-spacing:-.025em}
.drawer-category-text>span{font-size:12px;line-height:1.6;color:var(--muted)}
.drawer-category>.icon{width:19px;height:19px;color:var(--accent)}
.drawer-service{display:grid;grid-template-columns:1fr 1fr;gap:7px 20px;margin:24px 0}
.drawer-service>a{display:flex;align-items:center;gap:11px;font-size:14px;line-height:1.55;color:var(--ink);text-decoration:none;padding:10px 0;min-height:44px}
.drawer-service>a:hover{color:var(--accent)}
.drawer-service .icon{width:19px;height:19px;flex-shrink:0;color:#638087}
.drawer-help{display:grid;grid-template-columns:35px 1fr;gap:11px 14px;background:#edf4f2;border-radius:12px;padding:21px 22px 17px}
.drawer-help-icon{width:35px;height:35px;display:grid;place-items:center;color:var(--accent)}
.drawer-help h3{font-size:18px;font-weight:600;letter-spacing:-.025em;line-height:1.4;margin:0 0 5px}
.drawer-help p{font-size:13px;line-height:1.6;color:var(--muted);margin:0}
.drawer-help .btn{grid-column:1/-1;min-height:46px;margin-top:7px;background:var(--accent);font-size:14px;padding:12px 14px;justify-content:center;gap:12px}
.drawer-help .btn:hover{background:#12574f}
.drawer-phone{grid-column:1/-1;justify-self:center;font-size:14px;font-weight:600;line-height:1.5;color:var(--accent);text-decoration:none;padding:5px}
.drawer-bottom{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:23px 0 0}
.drawer-bottom>span{font-size:12px;color:var(--muted)}
.drawer-language{display:flex;gap:6px}
.drawer-language a{font-size:12px;color:var(--muted);border-radius:5px;text-decoration:none;min-height:36px;display:grid;place-items:center;padding:8px}
.drawer-language a[aria-current]{background:#edf3f4;color:var(--ink);font-weight:650}
.navigation-drawer :is(a,button):focus-visible{outline:2px solid var(--accent);outline-offset:3px}
@keyframes drawer-reveal{from{transform:translateX(45px);opacity:0}to{transform:translateX(0);opacity:1}}
@keyframes drawer-shade{from{opacity:0}to{opacity:1}}
@media(max-width:520px){.navigation-drawer{width:100%;box-shadow:none}.drawer-top{padding:16px 22px}.drawer-content{padding:20px 22px}.drawer-category{grid-template-columns:79px minmax(0,1fr) 18px;gap:14px;padding:10px 0}.drawer-product{height:65px}.drawer-category-text strong{font-size:18px}.drawer-section-title{margin-top:20px}.drawer-service{gap:3px 16px;margin:18px 0}.drawer-service>a{font-size:13px;gap:9px}.drawer-help{padding:19px 18px 14px}.drawer-bottom{padding-top:18px}}
@media(max-width:350px){.drawer-top,.drawer-content{padding-left:18px;padding-right:18px}.drawer-category{grid-template-columns:68px minmax(0,1fr) 17px;gap:12px}.drawer-category-text strong{font-size:17px}.drawer-category-text>span{font-size:12px}.drawer-service{column-gap:10px}.drawer-service>a{font-size:12px}.drawer-help h3{font-size:17px}}
@media(prefers-reduced-motion:reduce){.navigation-drawer[open],.navigation-drawer[open]::backdrop{animation:none}.drawer-category{transition:none}}
