
:root{
 --bg:#f6f7fb;
 --card:#ffffff;
 --text:#172033;
 --muted:#667085;
 --line:#e5e7eb;
 --accent:#0f766e;
 --accent2:#0ea5e9;
 --shadow:0 14px 40px rgba(15,23,42,.10);
 --radius:22px;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit}
.hero{background:linear-gradient(135deg,#0f766e,#123c69);color:white;padding:26px min(5vw,60px) 54px;border-bottom-left-radius:36px;border-bottom-right-radius:36px}
.hero__top{display:flex;justify-content:space-between;gap:22px;align-items:center}
.brand{display:flex;gap:14px;align-items:center}
.brand__logo{width:58px;height:58px;border-radius:18px;background:white;color:var(--accent);display:grid;place-items:center;font-weight:900;letter-spacing:.5px;box-shadow:0 12px 30px rgba(0,0,0,.16)}
h1{margin:0;font-size:24px;letter-spacing:.4px}
.brand p,.hero__sub{margin:.25rem 0 0;color:rgba(255,255,255,.82)}
.contacts{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.contacts a{padding:10px 14px;border:1px solid rgba(255,255,255,.26);border-radius:999px;text-decoration:none;background:rgba(255,255,255,.08)}
.hero__content{margin-top:50px;max-width:900px}
.hero__content h2{font-size:clamp(30px,5vw,56px);line-height:1.03;margin:18px 0 14px;letter-spacing:-1.5px}
.pill{display:inline-block;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);margin:0 7px 7px 0;font-size:14px}
.wrap{width:min(1220px,94vw);margin:-28px auto 50px}
.toolbar{background:var(--card);padding:18px;border-radius:var(--radius);box-shadow:var(--shadow);display:grid;grid-template-columns:2fr 1fr 1fr;gap:14px;align-items:end}
label{display:block;font-size:12px;font-weight:700;color:var(--muted);margin:0 0 7px}
input,select{width:100%;border:1px solid var(--line);border-radius:14px;padding:13px 14px;font:inherit;background:white;color:var(--text);outline:none}
input:focus,select:focus{border-color:var(--accent);box-shadow:0 0 0 4px rgba(15,118,110,.10)}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0}
.stats div{background:white;border-radius:18px;padding:16px 18px;border:1px solid var(--line)}
.stats strong{display:block;font-size:26px;color:var(--accent)}
.stats span{color:var(--muted);font-size:13px}
.notice{background:#fff7ed;border:1px solid #fed7aa;color:#9a3412;border-radius:18px;padding:14px 16px;margin:18px 0}
.hidden{display:none!important}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:0 8px 22px rgba(15,23,42,.06);display:flex;flex-direction:column;transition:transform .16s ease, box-shadow .16s ease}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.card__img{height:250px;background:linear-gradient(135deg,#e0f2fe,#f0fdfa);display:grid;place-items:center;position:relative;cursor:zoom-in}
.card__img img{width:100%;height:100%;object-fit:cover;display:block}
.card__placeholder{font-weight:800;color:var(--accent);font-size:42px;opacity:.5;text-align:center;padding:18px}
.card__body{padding:18px;display:flex;flex-direction:column;gap:9px;flex:1}
.badge{display:inline-flex;align-items:center;width:max-content;border-radius:999px;padding:5px 10px;background:#ecfdf5;color:#047857;font-weight:800;font-size:12px}
.card h3{margin:0;font-size:18px;line-height:1.22}
.muted{color:var(--muted);font-size:13px;margin:0}
.desc{color:#344054;font-size:14px;line-height:1.45;margin:0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.price{font-size:21px;font-weight:900;color:#0f172a;margin:0}
.oldprice{text-decoration:line-through;color:#98a2b3;font-size:14px;margin-left:8px}
.card__actions{margin-top:auto;display:flex;gap:10px;align-items:center}
.button{display:inline-flex;justify-content:center;align-items:center;text-decoration:none;border-radius:14px;background:var(--accent);color:white;padding:11px 14px;font-weight:800;border:1px solid var(--accent);cursor:pointer}
.button--ghost{background:white;color:var(--accent)}
.modal{position:fixed;inset:0;z-index:20;display:grid;place-items:center;padding:24px}
.modal__shade{position:absolute;inset:0;background:rgba(15,23,42,.66);backdrop-filter:blur(6px)}
.modal__card{position:relative;width:min(1060px,96vw);max-height:92vh;background:white;border-radius:28px;overflow:hidden;display:grid;grid-template-columns:1.18fr .82fr;box-shadow:0 24px 80px rgba(0,0,0,.35)}
.modal__close{position:absolute;right:16px;top:14px;z-index:3;border:0;border-radius:50%;width:42px;height:42px;background:rgba(15,23,42,.72);color:white;font-size:28px;line-height:1;cursor:pointer}
.modal__imageWrap{background:#f1f5f9;min-height:520px;display:grid;place-items:center}
.modal__imageWrap img{width:100%;height:100%;object-fit:contain;max-height:86vh}
.modal__body{padding:34px;overflow:auto}
.modal__body h3{font-size:30px;line-height:1.12;margin:14px 0}
.modal__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.footer{text-align:center;color:var(--muted);padding:28px 18px}
@media (max-width: 950px){
 .toolbar{grid-template-columns:1fr 1fr}
 .grid{grid-template-columns:repeat(2,1fr)}
 .modal__card{grid-template-columns:1fr;overflow:auto}
 .modal__imageWrap{min-height:360px}
}
@media (max-width: 640px){
 .hero__top{align-items:flex-start;flex-direction:column}
 .toolbar,.stats,.grid{grid-template-columns:1fr}
 .card__img{height:220px}
}




/* Visible OKL phone number in header and footer */
#phoneLink.contact-phone{font-weight:900;font-size:18px;letter-spacing:.4px;padding:10px 18px;background:rgba(255,255,255,.14)}
.footer__contacts{margin-top:8px;font-weight:800;color:#0f766e}
.footer__contacts a{text-decoration:none;color:#0f766e}
.footer__contacts a:hover{text-decoration:underline}



/* SEO/static pages, contact forms, request list */
.brand--link{text-decoration:none;color:white}
.pill--light{background:#ecfeff;border-color:#a5f3fc;color:#0f766e;text-decoration:none;margin:0 8px 8px 0}
.category-links{display:flex;flex-wrap:wrap;gap:6px;margin-top:12px}
.seo-section,.lead-section,.static-page .seo-section{background:white;border:1px solid var(--line);border-radius:var(--radius);padding:22px;margin:22px 0;box-shadow:0 8px 22px rgba(15,23,42,.05)}
.lead-section{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:start}
.quick-actions,.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.lead-form{background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px;display:grid;gap:12px}
.lead-form textarea{width:100%;border:1px solid var(--line);border-radius:14px;padding:13px 14px;font:inherit;resize:vertical}
.breadcrumbs{margin:0 0 18px;color:var(--muted);font-size:14px}.breadcrumbs a{text-decoration:none;color:var(--accent);font-weight:800}
.product-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;background:white;border:1px solid var(--line);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow)}
.product-photo{border-radius:22px;background:#f1f5f9;display:grid;place-items:center;min-height:480px;overflow:hidden}.product-photo img{width:100%;height:100%;max-height:680px;object-fit:contain}.product-info h2{font-size:clamp(28px,4vw,44px);line-height:1.06;margin:12px 0}.static-grid{margin-top:20px}.static-card h3 a{text-decoration:none}.static-card .card__img{text-decoration:none}.static-card .card__img img{transition:transform .2s}.static-card:hover .card__img img{transform:scale(1.03)}


@media(max-width:950px){.lead-section,.product-layout{grid-template-columns:1fr}.product-photo{min-height:320px}}


/* My Selection — temporary browser-only product list */
body.selection-open{overflow:hidden}
.selection-float{position:fixed;right:18px;bottom:18px;z-index:70;border:0;border-radius:999px;background:var(--accent);color:white;font-weight:900;padding:14px 18px;box-shadow:var(--shadow);cursor:pointer}
.selection-float span{display:inline-grid;place-items:center;min-width:25px;height:25px;border-radius:50%;background:white;color:var(--accent);margin-left:7px;padding:0 5px}
.selection-shade{position:fixed;inset:0;background:rgba(15,23,42,.48);z-index:71;backdrop-filter:blur(2px)}
.selection-drawer{position:fixed;right:0;top:0;bottom:0;width:min(720px,100vw);z-index:72;background:#f8fafc;box-shadow:-18px 0 60px rgba(15,23,42,.25);padding:20px;overflow:auto}
.selection-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;position:sticky;top:-20px;background:#f8fafc;padding:20px 0 14px;z-index:2;border-bottom:1px solid var(--line)}
.selection-head strong{display:block;font-size:25px}.selection-head small{display:block;color:var(--muted);margin-top:4px}.selection-close{border:0;border-radius:50%;background:#0f172a;color:#fff;width:38px;height:38px;font-size:26px;line-height:1;cursor:pointer;flex:0 0 auto}
.selection-list{display:grid;gap:12px;margin:18px 0}.selection-empty{background:white;border:1px dashed #94a3b8;border-radius:18px;padding:30px;text-align:center}.selection-empty p{color:var(--muted);margin-bottom:0}
.selection-item{display:grid;grid-template-columns:92px 1fr auto;gap:14px;background:white;border:1px solid var(--line);border-radius:18px;padding:12px;align-items:center}.selection-thumb{width:92px;height:78px;border-radius:14px;background:#f1f5f9;display:grid;place-items:center;overflow:hidden;font-weight:900;color:var(--accent)}.selection-thumb img{width:100%;height:100%;object-fit:contain}.selection-item-main{min-width:0}.selection-item-title{font-weight:900;color:#0f172a;text-decoration:none;line-height:1.25}.selection-item-title:hover{text-decoration:underline}.selection-item-main small{display:block;color:var(--muted);margin:5px 0}.selection-item-price{font-weight:800;color:var(--accent);font-size:14px}.selection-qty{display:flex;align-items:center;gap:6px;margin-top:9px}.selection-qty button{width:32px;height:32px;border:1px solid var(--line);background:#f8fafc;border-radius:10px;font-size:20px;cursor:pointer}.selection-qty input{width:64px;height:32px;border:1px solid var(--line);border-radius:10px;text-align:center;font:inherit;font-weight:800;padding:0}.selection-item-side{text-align:right;align-self:stretch;display:flex;flex-direction:column;justify-content:space-between;gap:12px;min-width:118px}.selection-item-side strong{color:#0f172a}.selection-remove{border:0;background:#fee2e2;color:#991b1b;border-radius:10px;padding:7px 9px;cursor:pointer;align-self:flex-end}
.selection-summary{background:#ecfeff;border:1px solid #a5f3fc;border-radius:18px;padding:14px;display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.selection-summary>div{background:white;border-radius:13px;padding:10px}.selection-summary span{display:block;color:var(--muted);font-size:12px}.selection-summary strong{display:block;margin-top:3px}.selection-summary-total strong{color:var(--accent);font-size:19px}.selection-summary p{grid-column:1/-1;margin:0;color:#475569;font-size:13px}
.selection-actions{display:flex;flex-wrap:wrap;gap:9px;margin:16px 0 22px}.selection-actions .button{flex:1 1 170px}.button--danger{background:#fff1f2;color:#9f1239;border-color:#fecdd3}.button:disabled{opacity:.5;cursor:not-allowed}
.selection-contact{background:white;border:1px solid var(--line);border-radius:20px;padding:18px;margin-bottom:24px}.selection-contact h3{margin:0 0 6px}.selection-contact form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}.selection-contact label{font-weight:800;font-size:14px}.selection-contact input,.selection-contact textarea{width:100%;margin-top:6px;border:1px solid var(--line);border-radius:13px;padding:12px;font:inherit;font-weight:400}.selection-contact label:nth-of-type(5),.selection-privacy,.selection-contact-actions{grid-column:1/-1}.selection-privacy{font-size:12px;color:var(--muted);line-height:1.5;margin:0}.selection-contact-actions{display:flex;justify-content:flex-end;gap:10px}
.selection-info-panel{background:#ecfeff;border:1px solid #a5f3fc;border-radius:18px;padding:18px}.selection-info-panel h3{margin-top:0}.selection-info-panel ul{margin:10px 0 0;padding-left:20px}.selection-info-panel li{margin:7px 0}
@media(max-width:640px){.selection-drawer{padding:14px}.selection-head{top:-14px;padding-top:14px}.selection-item{grid-template-columns:70px 1fr}.selection-thumb{width:70px;height:66px}.selection-item-side{grid-column:2;flex-direction:row;align-items:center;text-align:left;min-width:0}.selection-summary{grid-template-columns:1fr 1fr}.selection-summary-total{grid-column:1/-1}.selection-contact form{grid-template-columns:1fr}.selection-contact label,.selection-privacy,.selection-contact-actions{grid-column:1}.selection-contact-actions{flex-direction:column-reverse}.selection-contact-actions .button{width:100%}}
@media print{.selection-float,.selection-shade,.selection-drawer{display:none!important}}
