/* ============================================================
   Luige Puukool — "Metsavaikne aed" (dark earthy, coral accent)
   Ported from the Stage-1 PHP demo — all classes lp- prefixed
   to stay collision-safe inside the CMS editor iframe.
   ============================================================ */
:root{
  --primary:#ee7658;
  --primary-dark:#d86043;
  --bg-dark:#161514;
  --bg-darker:#0d0c0b;
  --bg-card:rgba(40,35,32,.4);
  --text-main:#ffffff;
  --text-muted:rgba(255,255,255,.7);
  --border-color:rgba(255,255,255,.1);
  --font-sans:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  --font-serif:'Cormorant Garamond',serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:110px}
body{
  margin:0;font-family:var(--font-sans);background-color:var(--bg-dark);color:var(--text-main);
  line-height:1.6;overflow-x:hidden;min-height:100svh;display:flex;flex-direction:column;
}
#main{flex:1;display:flex;flex-direction:column}
#main > *:last-child{margin-top:auto}
/* Direct children of #main that center via margin:auto (.lp-wrap) would otherwise have
   flexbox stretch disabled by their own auto cross-margins — see the hoidisedriinalt
   "sidebar shifts right" postmortem. Forcing width:100% here fixes it for every
   short-content shop page (empty category, 404, order lookup) from day one. */
#main > *{width:100%}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
/* Base size for every lp_icon() SVG — without this, any icon not covered by a more specific
   selector (.lp-cart-btn .lp-ic etc.) falls back to the browser's unstyled-SVG default
   (~300x150px), inflating whatever button/container holds it. This was missing entirely on
   the first pass here — the exact "supersized icons" bug already hit once on hoidisedriinalt. */
.lp-ic{width:1.15em;height:1.15em;flex:none;vertical-align:-.18em}
.lp-wrap{max-width:1400px;margin:0 auto;padding:0 5%}
.lp-skip{position:absolute;left:-9999px}
.lp-skip:focus{left:16px;top:16px;background:var(--primary);color:#fff;padding:10px 16px;border-radius:8px;z-index:200}

/* CMS wraps every rendered block in <section class="cms-block cms-block--TYPE">; this template's
   own sections already carry their own padding, and the fixed/sticky header needs to escape the
   wrapper box entirely on the public site (kept in edit mode so the block stays selectable). */
.cms-block{padding:0}
body:not(.cms-edit-mode) .cms-block--navbar{display:contents}

/* ---------- Header ---------- */
.lp-header{position:fixed;top:0;left:0;width:100%;z-index:100;padding:.5rem 0;transition:all .3s ease;background:linear-gradient(to bottom,rgba(0,0,0,.8),transparent)}
.lp-header.lp-is-scrolled{background:rgba(22,21,20,.9);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--border-color);padding:.25rem 0}
.lp-header-container{width:75%;margin:0 auto;display:flex;justify-content:space-between;align-items:center}
.lp-logo-img{height:80px;transition:height .3s ease}
.lp-header.lp-is-scrolled .lp-logo-img{height:60px}
.lp-nav .lp-nav-list{display:flex;gap:2rem;list-style:none;margin:0;padding:0}
.lp-nav-link{font-size:.95rem;font-weight:500;text-transform:uppercase;letter-spacing:1px;color:var(--text-muted);transition:color .3s ease;position:relative}
.lp-nav-link:hover,.lp-nav-link.lp-is-on{color:var(--text-main)}
.lp-nav-link::after{content:"";position:absolute;bottom:-4px;left:0;width:0;height:1px;background:var(--primary);transition:width .3s ease}
.lp-nav-link:hover::after,.lp-nav-link.lp-is-on::after{width:100%}
.lp-has-dropdown{position:relative}
.lp-dropdown{position:absolute;top:100%;left:0;background:var(--bg-darker);border:1px solid var(--border-color);border-radius:8px;padding:1rem 0;min-width:250px;opacity:0;visibility:hidden;transform:translateY(10px);transition:all .3s ease;list-style:none;display:flex;flex-direction:column;gap:0;margin:0}
.lp-has-dropdown:hover .lp-dropdown,.lp-has-dropdown:focus-within .lp-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.lp-dropdown li a{display:block;padding:.75rem 1.5rem;color:var(--text-muted);font-size:.95rem;font-weight:400;text-transform:none;transition:all .3s ease}
.lp-dropdown li a:hover{color:var(--primary);background:rgba(255,255,255,.05)}
.lp-burger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:6px;position:relative;z-index:101}
.lp-burger span{display:block;width:30px;height:2px;background:var(--text-main);transition:all .3s ease}
.lp-burger.lp-is-active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.lp-burger.lp-is-active span:nth-child(2){opacity:0}
.lp-burger.lp-is-active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.lp-head-actions{display:flex;align-items:center;gap:1rem}
.lp-cart-btn{position:relative;display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:transparent;border:1px solid var(--border-color);color:var(--text-main);cursor:pointer;transition:border-color .3s ease,background .3s ease}
.lp-cart-btn:hover{border-color:var(--primary);background:rgba(238,118,88,.1)}
.lp-cart-btn .lp-ic{width:20px;height:20px}
.lp-cart-badge{position:absolute;top:-4px;right:-4px;width:20px;height:20px;border-radius:50%;background:var(--primary);color:#fff;font-size:.7rem;font-weight:700;display:flex;align-items:center;justify-content:center;transform:scale(0);transition:transform .25s ease}
.lp-cart-badge.lp-on{transform:scale(1)}

/* ---------- Hero ---------- */
.lp-hero{position:relative;width:100%;height:100vh;min-height:800px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden}
.lp-hero-slider{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;background:var(--bg-dark)}
.lp-hero-bg{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.5s ease-in-out;transform:scale(1.05)}
.lp-hero-bg.lp-is-active{opacity:1;animation:lpSlowZoom 20s linear infinite alternate}
@keyframes lpSlowZoom{0%{transform:scale(1.05)}100%{transform:scale(1.15)}}
.lp-hero-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to top,rgba(22,21,20,1) 0%,rgba(22,21,20,.5) 50%,rgba(22,21,20,.2) 100%);z-index:1}
.lp-hero-content{position:relative;z-index:2;width:100%;max-width:1600px;margin:0 auto;padding:4rem 5%;display:grid;grid-template-columns:1fr 400px;gap:4rem;align-items:flex-end}
.lp-hero-text{max-width:800px}
.lp-meta{display:flex;align-items:center;gap:1rem;margin-bottom:2rem}
.lp-badge{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);padding:.5rem 1.2rem;border-radius:30px;font-size:.85rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;border:1px solid rgba(255,255,255,.15)}
.lp-location{font-size:.9rem;color:#ccc;font-weight:300}
.lp-title{font-size:clamp(3.5rem,7vw,6.5rem);font-weight:700;line-height:1.05;margin:0 0 1.5rem;letter-spacing:-.02em}
.lp-desc{font-size:1.2rem;line-height:1.7;color:rgba(255,255,255,.8);margin:0 0 3rem;max-width:600px}
.lp-actions{display:flex;gap:1.5rem;align-items:center;flex-wrap:wrap}
/* Three sizes: --hero (the one big confident hero CTA only), the plain .lp-btn base (every
   other primary action — product add-to-cart, checkout/lookup submit, back-links), and
   --sm (card-level/pagination controls). Getting these three tiers mixed up on the first pass
   (reusing the hero size everywhere) is what made the product page's "Lisa korvi" button read
   as oversized — combined with the missing .lp-ic base rule above, which is the bigger half
   of that bug: an unstyled SVG defaults to ~300x150px and inflates its flex parent. */
.lp-btn{background:#fff;color:#000;padding:.85em 1.6em;border-radius:50px;font-weight:600;font-size:1rem;transition:all .3s ease;display:inline-flex;align-items:center;gap:.5em;border:none;cursor:pointer;white-space:nowrap;min-height:44px}
.lp-btn:hover{background:var(--primary);color:#fff;transform:translateY(-3px)}
.lp-btn--hero{padding:1.2rem 2.5rem;font-size:1.1rem}
.lp-btn--sm{padding:.55em 1.1em;font-size:.9rem;border-radius:50px;min-height:auto}
.lp-btn--full{width:100%;justify-content:center}
.lp-btn:disabled{opacity:.5;cursor:not-allowed;transform:none}
.lp-btn-text{display:flex;align-items:center;gap:1rem;color:#fff;font-weight:500;text-decoration:underline;text-underline-offset:4px;transition:opacity .3s ease,color .3s ease;white-space:nowrap}
.lp-btn-text:hover{opacity:.85;color:var(--primary)}
.lp-info-panel{background:var(--bg-card);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border:1px solid var(--border-color);border-radius:24px;padding:2.5rem;box-shadow:0 30px 60px rgba(0,0,0,.5)}
.lp-info-item{margin-bottom:2rem}
.lp-info-item:last-child{margin-bottom:0}
.lp-info-item h4{font-size:.9rem;text-transform:uppercase;letter-spacing:1px;color:var(--primary);margin:0 0 .5rem}
.lp-info-item p{font-size:1.1rem;font-weight:500;line-height:1.5;margin:0}
.lp-info-item--alert p{color:#fff}
.lp-divider{height:1px;background:var(--border-color);margin:1.5rem 0}

/* ---------- General sections ---------- */
.lp-section{padding:8rem 5%}
.lp-section-title{font-size:clamp(2.5rem,5vw,4rem);margin:0 0 3rem;line-height:1.1}
.lp-text-center{text-align:center}
.lp-section--dark{background-color:var(--bg-darker)}

/* ---------- About ---------- */
.lp-about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.lp-lead{font-size:1.4rem;font-weight:300;margin:0 0 1.5rem;color:var(--text-main)}
.lp-about-text p{margin:0 0 1.5rem;color:var(--text-muted);font-size:1.1rem}
.lp-stats{display:flex;gap:3rem;margin-top:3rem;padding-top:3rem;border-top:1px solid var(--border-color);flex-wrap:wrap}
.lp-stat{display:flex;flex-direction:column}
.lp-stat-value{font-size:3.5rem;font-weight:700;color:var(--primary);line-height:1;font-family:var(--font-serif);font-style:italic}
.lp-stat-label{font-size:.9rem;text-transform:uppercase;letter-spacing:1px;color:var(--text-muted);margin-top:.5rem}
.lp-about-media{position:relative}
.lp-about-img{border-radius:24px;position:relative;z-index:2;width:100%;aspect-ratio:4/5;object-fit:cover}
.lp-about-deco{position:absolute;top:-2rem;right:-2rem;width:100%;height:100%;border:1px solid var(--primary);border-radius:24px;z-index:1}

/* ---------- Services list ---------- */
.lp-section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:4rem;padding-bottom:2rem;border-bottom:1px solid var(--border-color);flex-wrap:wrap;gap:1.5rem}
.lp-section-head .lp-section-title{margin-bottom:0}
.lp-section-lead{max-width:400px;font-size:1.2rem;color:var(--text-muted);margin:0}
.lp-services{display:flex;flex-direction:column;gap:0}
.lp-service-row{display:flex;align-items:center;min-height:200px;background:var(--bg-card);border:1px solid var(--border-color);border-radius:24px;position:relative;padding:0;overflow:hidden;transition:transform .4s ease,border-color .4s ease;text-decoration:none;color:inherit}
.lp-service-row:hover{transform:translateY(-5px);border-color:var(--primary)}
.lp-service-text{width:50%;padding:2.5rem 2rem;z-index:2;position:relative;display:flex;align-items:center}
.lp-service-row.lp-is-reverse .lp-service-text{margin-left:50%;justify-content:flex-end;text-align:right}
.lp-service-title{font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:400;transition:color .4s ease;margin:0}
.lp-service-media{position:absolute;top:0;height:100%;width:65%;z-index:1}
.lp-service-row:not(.lp-is-reverse) .lp-service-media{right:0;-webkit-mask-image:linear-gradient(to right,transparent,black 30%);mask-image:linear-gradient(to right,transparent,black 30%)}
.lp-service-row.lp-is-reverse .lp-service-media{left:0;-webkit-mask-image:linear-gradient(to left,transparent,black 30%);mask-image:linear-gradient(to left,transparent,black 30%)}
.lp-service-media img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.lp-service-row:hover .lp-service-media img{transform:scale(1.05)}
.lp-service-row:hover .lp-service-title{color:var(--primary)}
.lp-service-arrow{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.5rem;font-size:1rem;font-weight:600;color:var(--primary);text-transform:uppercase;letter-spacing:1px;opacity:0;transform:translateX(-10px);transition:all .4s ease;white-space:nowrap}
.lp-service-row:hover .lp-service-arrow{opacity:1;transform:translateX(0)}

/* ---------- Featured plants slider ---------- */
.lp-feat-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.lp-feat-info{padding-right:2rem}
.lp-feat-active{margin:2rem 0;padding:2rem;background:rgba(255,255,255,.03);border-left:3px solid var(--primary);border-radius:0 12px 12px 0}
.lp-feat-active h3{font-size:1.8rem;margin:0 0 .5rem;color:var(--primary)}
.lp-feat-active p{font-size:1.1rem;color:rgba(255,255,255,.9);margin:0}
.lp-feat-slider{display:flex;flex-direction:column;gap:1rem}
.lp-feat-main{width:100%;aspect-ratio:4/3;border-radius:16px;overflow:hidden;position:relative}
.lp-feat-main img{width:100%;height:100%;object-fit:cover;transition:opacity .3s ease}
.lp-feat-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.lp-feat-thumb{padding:0;border:2px solid transparent;background:none;border-radius:8px;overflow:hidden;aspect-ratio:1;cursor:pointer;transition:all .3s ease;opacity:.5}
.lp-feat-thumb.lp-is-active{border-color:var(--primary);opacity:1}
.lp-feat-thumb:hover{opacity:1}
.lp-feat-thumb img{width:100%;height:100%;object-fit:cover}

/* ---------- Gallery + lightbox ---------- */
.lp-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.lp-gallery-item{display:block;border-radius:16px;overflow:hidden;aspect-ratio:1;position:relative;cursor:zoom-in;border:none;padding:0;background:none}
.lp-gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.lp-gallery-item:hover img{transform:scale(1.08)}
.lp-gallery-item:nth-child(1){grid-column:span 2;grid-row:span 2;aspect-ratio:auto}
.lp-lightbox{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.95);z-index:1000;display:flex;justify-content:center;align-items:center;opacity:0;visibility:hidden;transition:all .4s ease;backdrop-filter:blur(10px)}
.lp-lightbox.lp-is-active{opacity:1;visibility:visible}
.lp-lightbox-img{max-width:90vw;max-height:90vh;border-radius:8px;box-shadow:0 20px 50px rgba(0,0,0,.5);transform:scale(.95);transition:transform .4s ease}
.lp-lightbox.lp-is-active .lp-lightbox-img{transform:scale(1)}
.lp-lightbox-close{position:absolute;top:2rem;right:2rem;color:#fff;font-size:2.5rem;cursor:pointer;line-height:1;opacity:.7;transition:opacity .3s;background:none;border:none}
.lp-lightbox-close:hover{opacity:1}

/* ---------- Footer ---------- */
.lp-footer{display:flex;min-height:auto;border-top:1px solid var(--border-color);background:var(--bg-darker)}
.lp-footer-info{flex:1;padding:1.25rem 5%;display:flex;flex-direction:column;justify-content:space-between}
.lp-footer-info .lp-fh .lp-section-title{margin-bottom:.25rem;font-size:clamp(2rem,4vw,3rem)}
.lp-footer-info .lp-fh p{font-size:1.1rem;color:var(--text-muted);line-height:1.3;max-width:500px;margin:0}
.lp-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem 2rem;margin-top:1.25rem}
.lp-c-lbl{font-size:.85rem;text-transform:uppercase;font-weight:600;color:var(--primary);margin-bottom:.25rem;letter-spacing:1px}
.lp-c-txt{font-size:1.2rem;color:var(--text-main);font-weight:400;line-height:1.2;white-space:nowrap}
.lp-c-txt a{color:var(--text-main);transition:color .3s}
.lp-c-txt a:hover{color:var(--primary)}
.lp-footer-map{flex:1;position:relative;overflow:hidden;border-left:1px solid var(--border-color)}
.lp-footer-map iframe{width:100%;height:100%;min-height:200px;border:none;filter:grayscale(100%) contrast(1.1) opacity(.8);transition:filter .5s ease}
.lp-footer-map:hover iframe{filter:grayscale(0) contrast(1) opacity(1)}
.lp-f-legal{display:flex;gap:1.5rem;margin-top:1.25rem;flex-wrap:wrap}
.lp-f-legal a{font-size:.85rem;color:var(--text-muted);transition:color .25s ease}
.lp-f-legal a:hover{color:var(--primary)}
.lp-f-bottom{display:flex;justify-content:space-between;align-items:flex-end;padding-top:1rem;margin-top:1rem;border-top:1px solid var(--border-color);font-size:.9rem;color:var(--text-muted);flex-wrap:wrap;gap:1rem}
.lp-footer-credit{display:flex;flex-direction:column;align-items:flex-end;text-align:right;text-decoration:none;line-height:1.2}
.lp-footer-credit-sub{font-size:.65rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px}
.lp-footer-credit-name{font-size:1.1rem;font-weight:700;font-family:var(--font-sans);margin-bottom:2px;background:linear-gradient(90deg,var(--primary),#ff9a82);background-clip:text;-webkit-background-clip:text;color:transparent;position:relative;background-size:100% 100%}
.lp-footer-credit:hover .lp-footer-credit-name{background:linear-gradient(100deg,transparent 0%,rgba(255,255,255,.9) 50%,transparent 100%),linear-gradient(90deg,var(--primary),#ff9a82);background-clip:text;-webkit-background-clip:text;color:transparent;background-size:200% 100%,100% 100%;animation:lpGlimmer 1.5s infinite linear}
@keyframes lpGlimmer{0%{background-position:200% 0,0 0}100%{background-position:-100% 0,0 0}}

/* ---------- Reveal on scroll ---------- */
html.js .lp-reveal:not(.lp-in){opacity:0;transform:translateY(40px)}
.lp-reveal{transition:all .8s cubic-bezier(.2,.8,.2,1)}
.lp-reveal.lp-in{opacity:1;transform:none}

/* ---------- Service detail subpage ---------- */
.lp-service-hero{height:60vh;min-height:480px;justify-content:flex-end}
.lp-service-hero .lp-hero-bg.lp-is-active{animation:none}
.lp-service-hero .lp-hero-content{align-items:flex-end;grid-template-columns:1fr}
.lp-service-back{display:inline-block;margin-bottom:1.5rem;font-size:.95rem;letter-spacing:.5px;color:rgba(255,255,255,.75);transition:color .25s ease}
.lp-service-back:hover{color:var(--primary)}
.lp-service-detail{max-width:820px}
.lp-service-rich{font-size:1.15rem;line-height:1.8;color:var(--text-muted)}
.lp-service-rich .lp-lead{font-size:1.5rem;line-height:1.6;color:var(--text-main);margin-bottom:2rem;font-weight:500}
.lp-service-rich p{margin-bottom:1.5rem}
.lp-service-rich h3{margin:3rem 0 1.5rem;font-size:1.8rem;color:#fff;font-family:var(--font-serif)}
.lp-service-features{list-style:none;margin:2rem 0;padding:0}
.lp-service-features li{margin-bottom:1.2rem;padding-left:2rem;position:relative;font-size:1.1rem}
.lp-service-features li::before{content:"✓";position:absolute;left:0;color:var(--primary);font-weight:bold;font-size:1.2rem}
.lp-service-cta{margin-top:4rem;text-align:center}
.lp-other-services{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;margin-top:3rem}
.lp-other-service{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.75rem 2rem;border:1px solid var(--border-color);border-radius:16px;background:var(--bg-card);transition:border-color .3s ease,transform .3s ease,background .3s ease}
.lp-other-service:hover{border-color:var(--primary);transform:translateY(-3px);background:rgba(238,118,88,.08)}
.lp-os-title{font-family:var(--font-serif);font-size:1.4rem;line-height:1.2}
.lp-os-arrow{color:var(--primary);font-size:1.5rem;flex-shrink:0;transition:transform .3s ease}
.lp-other-service:hover .lp-os-arrow{transform:translateX(5px)}

/* ---------- Legal pages ---------- */
.lp-legal{padding-top:8rem}
.lp-legal-updated{color:var(--text-muted);font-size:.9rem;margin-bottom:2.5rem}
.lp-legal-body{color:var(--text-muted);font-size:1.05rem;line-height:1.8}
.lp-legal-body h2{color:var(--text-main);font-size:1.25rem;margin:2.5rem 0 1rem;font-weight:600}
.lp-legal-body h2:first-of-type{margin-top:0}
.lp-legal-body p{margin-bottom:1.25rem}
.lp-legal-body a{color:var(--primary);text-decoration:underline;text-underline-offset:3px}
.lp-legal-body strong{color:var(--text-main)}

/* ---------- Shop: sidebar + filters + product grid ---------- */
.lp-shop{padding:6rem 0 6rem}
.lp-shop__header{margin-bottom:3rem;border-bottom:1px solid var(--border-color);padding-bottom:1.5rem}
.lp-shop__title{font-size:2.5rem;margin:0 0 .5rem;font-family:var(--font-serif);font-style:italic}
.lp-shop__count{color:var(--text-muted);font-size:1rem;margin:0}
.lp-shop__layout{display:grid;grid-template-columns:260px 1fr;gap:3rem}
.lp-shop__layout--flat{grid-template-columns:1fr}
.lp-shop__sidebar{position:sticky;top:130px;align-self:start;background:var(--bg-card);border:1px solid var(--border-color);border-radius:20px;padding:1.75rem}
.lp-shop__sidebar-title{font-size:1rem;margin:0 0 1.25rem;text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted)}
.lp-cat-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.4rem}
.lp-cat-list a{display:flex;justify-content:space-between;color:var(--text-muted);font-weight:500;padding:.7rem .9rem;border-radius:10px;transition:all .2s ease}
.lp-cat-list a:hover{background:rgba(255,255,255,.05);color:var(--text-main)}
.lp-cat-list a.lp-is-active{background:var(--primary);color:#fff}
.lp-grid{display:grid;gap:2rem}
.lp-grid--store{grid-template-columns:repeat(2,1fr)}
.lp-card{position:relative;overflow:hidden;background:var(--bg-card);border:1px solid var(--border-color);border-radius:24px;transition:transform .4s ease,border-color .4s ease}
.lp-card:hover{transform:translateY(-6px);border-color:var(--primary)}
.lp-card__link{display:block;color:inherit}
.lp-card__media{aspect-ratio:4/3;overflow:hidden;background:var(--bg-darker)}
.lp-card__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
.lp-card:hover .lp-card__media img{transform:scale(1.05)}
.lp-card__media img.lp-is-out{filter:grayscale(1)}
.lp-media-fallback{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-muted)}
.lp-media-fallback .lp-ic{width:64px;height:64px}
.lp-card__body{padding:2rem}
.lp-card__name{font-size:1.5rem;font-weight:600;margin:0 0 .35rem}
.lp-card__size{font-size:.85rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin:0 0 1rem}
.lp-card__blurb{color:var(--text-muted);font-size:1rem;line-height:1.6;margin:0 0 1.75rem}
.lp-card__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.lp-card__price{font-family:var(--font-serif);font-style:italic;font-size:1.6rem;font-weight:700;color:var(--primary)}
.lp-out-badge{display:inline-flex;align-items:center;background:var(--bg-darker);border:1px solid var(--border-color);color:var(--text-muted);font-size:.8rem;font-weight:600;padding:.55em 1em;border-radius:999px;white-space:nowrap}
.lp-empty-note{color:var(--text-muted);padding:3rem 0;text-align:center}
.lp-pagination{display:flex;align-items:center;justify-content:center;gap:1.1rem;margin-top:3rem}
.lp-pagination__pos{color:var(--text-muted);font-size:.9rem;font-weight:600}

/* ---------- Product detail ---------- */
.lp-breadcrumb{display:flex;align-items:center;gap:8px;padding-top:8rem;font-size:.85rem;color:var(--text-muted);flex-wrap:wrap}
.lp-breadcrumb a{color:var(--text-muted);transition:color .2s}
.lp-breadcrumb a:hover{color:var(--primary)}
.lp-breadcrumb__sep{opacity:.5}
.lp-product{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,4vw,56px);padding:2rem 0 5rem;align-items:start}
.lp-product__main{position:relative;border-radius:20px;overflow:hidden;background:var(--bg-card);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center}
.lp-product__main img{width:100%;height:100%;object-fit:cover;display:block}
.lp-product__thumbs{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.lp-product__thumb{width:64px;height:64px;border-radius:10px;overflow:hidden;border:2px solid var(--border-color);padding:0;background:none;cursor:pointer;transition:border-color .2s}
.lp-product__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.lp-product__thumb.lp-is-active{border-color:var(--primary)}
.lp-product__info{position:sticky;top:130px}
.lp-product__name{font-size:clamp(1.8rem,3.4vw,2.5rem);margin:0 0 .5rem}
.lp-product__price{font-family:var(--font-serif);font-style:italic;font-weight:700;font-size:1.9rem;color:var(--primary);margin-bottom:1rem}
.lp-product__blurb{color:var(--text-muted);margin-bottom:1.5rem}
.lp-product__variants{margin-bottom:1.5rem}
.lp-product__variants-label{font-size:.85rem;font-weight:600;margin-bottom:.6rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}
.lp-product__variant-btns{display:flex;flex-wrap:wrap;gap:8px}
.lp-variant-btn{border:1px solid var(--border-color);background:var(--bg-card);color:var(--text-main);border-radius:9px;padding:.6em 1.1em;font-size:.92rem;font-weight:600;cursor:pointer;transition:all .2s ease}
.lp-variant-btn:hover{border-color:var(--primary)}
.lp-variant-btn.lp-is-active{border-color:var(--primary);background:rgba(238,118,88,.12);color:var(--primary)}
.lp-variant-btn.lp-is-out,.lp-variant-btn:disabled{opacity:.45;cursor:not-allowed;text-decoration:line-through}
.lp-product__row{display:flex;align-items:center;gap:16px;margin-bottom:1.25rem;flex-wrap:wrap}
.lp-qty{display:flex;align-items:center;border:1px solid var(--border-color);border-radius:10px;overflow:hidden}
.lp-qty button{width:38px;height:42px;border:none;background:var(--bg-card);cursor:pointer;font-size:1.1rem;color:var(--text-main)}
.lp-qty button:hover{background:rgba(255,255,255,.08)}
.lp-qty input{width:46px;height:42px;border:none;border-left:1px solid var(--border-color);border-right:1px solid var(--border-color);text-align:center;font:inherit;font-weight:600;background:var(--bg-card);color:var(--text-main);-moz-appearance:textfield}
.lp-qty input::-webkit-outer-spin-button,.lp-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.lp-stock-note span{font-size:.85rem;font-weight:600;color:var(--text-muted)}
.lp-stock-note .lp-out{color:#f2917a}
.lp-stock-note .lp-low{color:var(--primary)}
.lp-product__desc{margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border-color)}
.lp-product__desc h2{font-size:1.2rem;margin-bottom:.75rem}
.lp-product__desc p{margin:0 0 1em;color:var(--text-muted)}

/* ---------- Cart drawer ---------- */
.lp-drawer-scrim{position:fixed;inset:0;z-index:200;background:rgba(13,12,11,.6);opacity:0;transition:opacity .3s ease}
.lp-drawer-scrim.lp-on{opacity:1}
.lp-drawer{position:fixed;top:0;right:0;height:100%;width:min(420px,92vw);background:var(--bg-darker);border-left:1px solid var(--border-color);z-index:210;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .35s ease;box-shadow:-30px 0 60px rgba(0,0,0,.5)}
.lp-drawer.lp-on{transform:none}
.lp-drawer__top{display:flex;align-items:center;justify-content:space-between;padding:1.75rem 1.75rem 1.25rem;border-bottom:1px solid var(--border-color)}
.lp-drawer__top h2{font-size:1.4rem;font-weight:600;margin:0}
.lp-drawer__close{background:none;border:none;color:var(--text-main);cursor:pointer;display:flex;padding:6px}
.lp-drawer__close .lp-ic{width:22px;height:22px}
.lp-drawer__items{flex:1;overflow-y:auto;padding:1rem 1.75rem;display:flex;flex-direction:column;gap:1.1rem}
.lp-drawer__empty{color:var(--text-muted);text-align:center;padding:3rem 0}
.lp-ci{display:flex;align-items:center;gap:.75rem}
.lp-ci__info{flex:1}
.lp-ci__name{font-weight:600;font-size:.95rem}
.lp-ci__name small{font-weight:500;color:var(--text-muted)}
.lp-ci__price{color:var(--text-muted);font-size:.85rem}
.lp-ci__qty{display:flex;align-items:center;gap:.5rem}
.lp-ci__qty button{width:28px;height:28px;border-radius:8px;border:1px solid var(--border-color);background:transparent;color:var(--text-main);cursor:pointer;font-size:1rem;line-height:1}
.lp-ci__qty span{min-width:18px;text-align:center;font-weight:600}
.lp-drawer__foot{border-top:1px solid var(--border-color);padding:1.25rem 1.75rem 1.75rem}
.lp-drawer__sum{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.5rem}
.lp-drawer__sum strong{font-family:var(--font-serif);font-style:italic;font-size:1.5rem;color:var(--primary)}
.lp-drawer__note{font-size:.8rem;color:var(--text-muted);margin:0 0 1.1rem;line-height:1.5}
.lp-drawer__cart-link{display:block;text-align:center;font-size:.85rem;font-weight:600;color:var(--text-muted);margin-bottom:.7rem;transition:color .2s}
.lp-drawer__cart-link:hover{color:var(--primary)}
.lp-drawer__cta{display:flex;justify-content:center;width:100%;padding:1rem 1.5rem}

/* ---------- Cart page ---------- */
.lp-cart-table td{vertical-align:middle}
.lp-qty--sm{transform:scale(.85);transform-origin:left center}
.lp-qty--sm button{width:26px;height:30px;font-size:.95rem}
.lp-cart-remove{background:none;border:none;color:var(--text-muted);font-size:1.3rem;line-height:1;cursor:pointer;padding:4px 8px;transition:color .2s}
.lp-cart-remove:hover{color:#f2917a}

/* ---------- Checkout ---------- */
.lp-checkout{padding:8rem 0 6rem}
.lp-checkout__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:3rem;align-items:start;margin-top:1.5rem}
.lp-co-section{margin-bottom:2.5rem}
.lp-co-section h2{font-size:1.25rem;font-weight:600;margin:0 0 1.25rem}
.lp-co-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.lp-field{display:block;margin-bottom:1.1rem}
.lp-field span{display:block;font-size:.85rem;font-weight:600;margin-bottom:.5rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}
.lp-field input,.lp-field textarea{width:100%;border:1px solid var(--border-color);border-radius:10px;padding:.9rem 1rem;font:inherit;font-size:1rem;background:var(--bg-card);color:var(--text-main);transition:border-color .2s ease,background .2s ease}
.lp-field input:focus,.lp-field textarea:focus{outline:none;border-color:var(--primary);background:rgba(238,118,88,.06);box-shadow:0 0 0 3px rgba(238,118,88,.25)}
.lp-field textarea{min-height:110px;resize:vertical}
.lp-field__err{display:block;color:#f2917a;font-size:.8rem;margin-top:.4rem;font-style:normal;font-weight:600}
.lp-field.lp-has-err input,.lp-field.lp-has-err textarea{border-color:var(--primary-dark)}
.lp-hp{position:absolute!important;left:-9999px;width:1px;height:1px;overflow:hidden}
.lp-cform__ok{display:flex;gap:12px;align-items:flex-start;flex-wrap:wrap;background:rgba(238,118,88,.1);border:1px solid rgba(238,118,88,.3);color:var(--primary);border-radius:12px;padding:18px;font-weight:600}
.lp-cform__err{display:flex;gap:12px;align-items:flex-start;flex-wrap:wrap;background:rgba(216,96,67,.12);border:1px solid rgba(216,96,67,.4);color:#f2917a;border-radius:10px;padding:14px 16px;font-weight:600}
.lp-cform__err a,.lp-cform__ok a{white-space:nowrap;color:inherit;text-decoration:underline}
.lp-co-delivery{display:grid;gap:.75rem}
.lp-radio-card{display:flex;gap:.9rem;align-items:flex-start;border:1px solid var(--border-color);border-radius:14px;padding:1rem 1.2rem;cursor:pointer;transition:border-color .2s ease,background .2s ease}
.lp-radio-card:hover{border-color:rgba(238,118,88,.5)}
.lp-radio-card:has(input:checked){border-color:var(--primary);background:rgba(238,118,88,.08)}
.lp-radio-card input{margin-top:.3rem;accent-color:var(--primary);flex-shrink:0}
.lp-radio-card b{display:block;font-size:1rem;font-weight:600;white-space:nowrap}
.lp-radio-card small{color:var(--text-muted);font-size:.85rem}
.lp-co-address{margin-top:1rem;display:grid;gap:1.1rem}
.lp-co-address[hidden]{display:none}
.lp-co-summary{position:sticky;top:130px;background:var(--bg-card);border:1px solid var(--border-color);border-radius:20px;padding:1.75rem}
.lp-co-summary h2{font-size:1.15rem;font-weight:600;margin:0 0 1.25rem}
.lp-woo-table{width:100%;border-collapse:collapse;font-size:.95rem}
.lp-woo-table th{text-align:left;font-size:.74rem;text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted);border-bottom:2px solid var(--border-color);padding:0 0 10px;font-weight:700}
.lp-woo-table th:last-child,.lp-woo-table td:last-child{text-align:right}
.lp-woo-table td{padding:.7rem 0;border-bottom:1px solid var(--border-color)}
.lp-co-qty{color:var(--text-muted);font-size:.85em}
.lp-woo-total td{font-family:var(--font-serif);font-style:italic;font-weight:700;font-size:1.3rem;color:var(--primary);border-bottom:none;padding-top:1rem}
.lp-pay-note{font-size:.8rem;color:var(--text-muted);background:rgba(255,255,255,.03);border:1px dashed var(--border-color);border-radius:10px;padding:.85rem 1rem;margin:1.25rem 0;line-height:1.5}
.lp-co-empty{color:var(--text-muted);text-align:center;padding:1.5rem 0}
.lp-co-empty a{color:var(--primary);font-weight:600}
.lp-co-received{max-width:640px;text-align:center;margin:10px auto 3rem}
.lp-co-received__badge{width:64px;height:64px;border-radius:50%;background:rgba(238,118,88,.14);color:var(--primary);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.lp-co-received__badge .lp-ic{width:28px;height:28px}
.lp-co-received h2{font-size:clamp(1.5rem,3vw,2rem);margin-bottom:1rem}
.lp-co-received p{color:var(--text-muted);margin:0 auto 1.5rem;max-width:48ch}
.lp-co-received__table{text-align:left;max-width:420px;margin:0 auto 1.75rem}
.lp-pay-methods{display:flex;flex-direction:column;gap:10px;margin-top:14px}
.lp-pay-method{display:flex;align-items:center;gap:10px;border:1px solid var(--border-color);border-radius:10px;padding:12px 16px;color:var(--text-main);text-decoration:none;font-weight:600;transition:border-color .2s,background .2s}
.lp-pay-method:hover{border-color:var(--primary);background:rgba(238,118,88,.08)}
.lp-pay-method img{height:22px;width:auto}
.lp-cta-actions{display:flex;gap:1rem;flex-wrap:wrap}

/* ---------- Responsive ---------- */
@media (max-width:1200px){
  .lp-hero-content{grid-template-columns:1fr;gap:3rem}
  .lp-info-panel{max-width:800px;display:flex;gap:2rem;padding:2rem}
  .lp-info-item{margin-bottom:0;flex:1}
  .lp-divider{width:1px;height:auto;margin:0}
  .lp-about-grid{grid-template-columns:1fr;gap:4rem}
  .lp-gallery{grid-template-columns:repeat(2,1fr)}
  .lp-gallery-item:nth-child(1){grid-column:span 1;grid-row:span 1;aspect-ratio:1}
  .lp-section-head{flex-direction:column;align-items:flex-start;gap:2rem;border-bottom:none}
  .lp-service-row{min-height:180px}
  .lp-service-text,.lp-service-row.lp-is-reverse .lp-service-text{width:100%;margin-left:0;padding:2rem 5%;text-align:left;display:flex;align-items:flex-end;justify-content:flex-start}
  .lp-service-title{font-size:2.2rem}
  .lp-service-media{width:100%}
  .lp-service-row:not(.lp-is-reverse) .lp-service-media,.lp-service-row.lp-is-reverse .lp-service-media{left:0;right:0;-webkit-mask-image:linear-gradient(to top,transparent,black 60%);mask-image:linear-gradient(to top,transparent,black 60%)}
  .lp-footer{flex-direction:column}
  .lp-footer-info{padding:1.25rem 5%}
  .lp-footer-map{height:250px;border-left:none;border-top:1px solid var(--border-color)}
  .lp-contact-grid{grid-template-columns:1fr;gap:.75rem}
  .lp-f-bottom{flex-direction:column;align-items:flex-start;gap:1rem}
  .lp-feat-layout{grid-template-columns:1fr;gap:3rem}
  .lp-feat-info{padding-right:0}
  .lp-shop__layout{grid-template-columns:1fr}
  .lp-shop__sidebar{position:static}
  .lp-product{grid-template-columns:1fr}
  .lp-product__info{position:static}
  .lp-checkout__grid{grid-template-columns:1fr}
  .lp-co-row{grid-template-columns:1fr}
  .lp-co-summary{position:static}
}
@media (max-width:768px){
  .lp-wrap,.lp-header-container{width:90%;max-width:none;padding:0}
  .lp-header{padding:.6rem 0;background:linear-gradient(to bottom,rgba(13,12,11,.95) 0%,rgba(13,12,11,.65) 65%,transparent 100%)}
  .lp-logo-img{height:52px}
  .lp-header.lp-is-scrolled{padding:.45rem 0}
  .lp-header.lp-is-scrolled .lp-logo-img{height:44px}
  .lp-nav{position:fixed;top:0;right:-100%;width:80%;max-width:300px;height:100vh;background:var(--bg-darker);padding:6rem 2rem;transition:right .4s ease;border-left:1px solid var(--border-color);overflow-y:auto}
  .lp-nav.lp-is-active{right:0}
  .lp-nav .lp-nav-list{flex-direction:column;gap:2rem}
  .lp-has-dropdown .lp-dropdown{position:static;transform:none;max-height:0;overflow:hidden;padding:0;border:none;background:transparent;border-left:2px solid var(--primary);margin:0 0 0 1rem;opacity:0;visibility:hidden;min-width:100%;transition:max-height .4s ease,margin-top .4s ease,opacity .4s ease}
  .lp-has-dropdown:focus-within .lp-dropdown,.lp-has-dropdown.lp-is-open .lp-dropdown{max-height:500px;margin-top:1rem;opacity:1;visibility:visible;padding:.5rem 0}
  .lp-dropdown li a{padding:.5rem 1rem}
  .lp-burger{display:flex}
  .lp-hero{height:auto;min-height:100vh;min-height:100dvh;justify-content:flex-start;padding-top:100px}
  .lp-hero-content{padding-top:2rem;padding-bottom:2rem}
  .lp-title{font-size:clamp(2.5rem,10vw,3.5rem)}
  .lp-info-panel{flex-direction:column;gap:1.5rem}
  .lp-divider{width:100%;height:1px;margin:0}
  .lp-actions{flex-direction:column;align-items:flex-start}
  .lp-btn{width:100%;text-align:center;justify-content:center}
  .lp-section{padding:5rem 5%}
  .lp-stats{flex-direction:column;gap:2rem}
  .lp-grid--store{grid-template-columns:1fr}
  .lp-other-services{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important}
  .lp-hero-bg.lp-is-active{animation:none}
  html.js .lp-reveal{transform:none;transition:opacity .3s ease}
  .lp-service-row:hover,.lp-other-service:hover,.lp-card:hover,.lp-btn:hover,.lp-cart-btn:hover{transform:none}
}
