/*
Theme Name: lc-theme
*/

/* =====================================================
   Base / Tokens
===================================================== */

:root{
  --container: 1320px;
  --g: 24px;

  --radius: 22px;
  --radius-sm: 14px;

  --text: #111;
  --muted: #6b6b6b;
  --bg: #eef8fb;
  --border: #ececec;

  --accent: #f28c00;
  --accent-hover: #d97700;

  --padding: 120px;
  --padding_grid: 100px;
}

   @media (max-width: 1100px){
    :root{
      --padding: 40px;
      --padding_grid: 24px;
    }
  }
  @media (max-width: 560px){
    :root{
      --padding: 16px;
      --padding_grid: 16px;
    }
  }
  

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.lc-main{ padding-bottom: 80px; }

.section-title{
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =====================================================
   Buttons / Inputs
===================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 2px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
  user-select: none;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover{ background: var(--accent-hover); }

.btn--sm{
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

.input{
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: #fafafa;
  outline: none;
  font-size: 15px;
}

.input:focus{
  border-color: rgba(242,140,0,0.5);
  box-shadow: 0 0 0 4px rgba(242,140,0,0.14);
  background: #fff;
}

.form{
  display: grid;
  gap: 12px;
}

/* =====================================================
   Shared slider styles
===================================================== */

.slider__track{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar{ display:none; }

.slider__slide{ scroll-snap-align: start; }

.slider__dots{ display: inline-flex; gap: 8px; }

.slider__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.18);
  cursor: pointer;
}

.slider__dot.is-active{ background: rgba(255,255,255,0.95); }
.slider__range{ width: 100%; margin-top: 12px; }

/* =====================================================
   HERO (match mock: sharp, left & low, outlined dots)
===================================================== */

.hero{
  position: relative;
  height: 960px;
  overflow: hidden;
}

.hero__track{ height: 100%; }
.hero__slide{
  position: relative;
  flex: 0 0 100%;
  height: auto;
}

.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.10) 64%,
    rgba(0,0,0,0.00) 80%
  );
}

.hero__content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  z-index: 2;
  padding-left: clamp(10px, 6vw, 120px);
  padding-right: 24px;
  padding-left: var(--padding);
}

.hero__content-inner{ 
  max-width: 740px; }

.hero__title{
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 700;
}

.hero__btn{
  width: fit-content;
  border-radius: 2px;
  padding: 0 22px;
  height: 44px;
  font-size: 16px;
  font-weight: 600;
}

.hero__dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
}

.hero .slider__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.9);
  background: transparent;
  padding: 0;
}
.hero .slider__dot.is-active{
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.95);
}

@media (max-width: 1500px){
  .hero{ height: 800px; }
  .hero__content{ bottom: 86px; }
}

.hero__slide, .hero__track{ touch-action: pan-y; }

/* =====================================================
   CUSTOM ORDER (desktop)
===================================================== */

.custom-order{
  padding: 56px 0 80px;
  background:#eef8fb;
}

.custom-order__inner{
  width:100%;
  max-width:none;
  padding: 0 var(--padding);
}

.custom-order__title{
  font-size: 40px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #111;
  max-width: 750px;
}

.custom-order__gallery{
  cursor: default;
  touch-action: pan-y;
  overflow:hidden;
  width:100%;
}
.custom-order__gallery.is-grabbing{ cursor: default; }

.custom-order__track{
  transition: transform 360ms ease;
  display:flex;
  gap: 14px;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.custom-order__track.is-dragging{
  transition: none;
  cursor: grabbing;
}

.custom-order__item{
  margin:0;
  position:relative;
  flex: 0 0 clamp(860px, 62vw, 1180px);
  height: 600px;
  border:1px solid #111;
  background:#111;
}

.custom-order__img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: center center;
  user-select:none;
  pointer-events:none;
}

.custom-order__caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 70px;
  display:flex;
  align-items:center;
  padding: 0 26px;
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

/* Progress (bar only) */
.custom-order__progress{
  margin-top: 22px;
  height: 8px;
  background: #d6e8f0;
}
.custom-order__progress-fill{
  display:block;
  height:100%;
  width: 140px;
  background:#2b8fb8;
}

/* Card */
.custom-order__card{
  margin-top: 44px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  display:grid;
  grid-template-columns: 620px 1fr;
  gap: 56px;
  align-items: stretch;
}

.custom-order__card-left{
  max-width: 620px;
  padding: 44px 0 44px 44px;
}

.custom-order__subtitle{
  margin:0 0 26px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  color:#111;
}

.custom-order__form{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.custom-order__input{
  width:100%;
  height: 56px;
  border: 1px solid #d9d9d9;
  background:#fff;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  border-radius: 0;
  box-shadow: none;
}
.custom-order__input::placeholder{ color: rgba(0,0,0,0.45); }
.custom-order__input:focus{ border-color:#2b8fb8; }

.custom-order__submit{
  margin-top: 10px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  background: var(--accent, #f59a00);
  color:#fff;
  border:none;
  border-radius: 0;
  font-weight: 600;
  font-size: 18px;
  cursor:pointer;
  width: fit-content;
}
.custom-order__submit:hover{ filter: brightness(0.95); }
.custom-order__arrow{ font-size: 18px; line-height: 1; }

.custom-order__card-right{
  min-width: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.custom-order__card-img{
  position: absolute;
  inset: 0;
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position:center center;
}

@media (max-width: 980px){
  .custom-order{ padding: 44px 0 70px; }
  .custom-order__inner{ padding: 0 var(--padding); }

  .custom-order__title{
    font-size: 34px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .custom-order__item{ flex: 0 0 86vw; height: 380px; }
  .custom-order__caption{ height: 56px; font-size: 18px; padding: 0 18px; }
  .custom-order__progress{ margin-top: 16px; }

  .custom-order__card{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .custom-order__card-left{
    max-width: none;
    padding: 28px 20px 22px;
  }
  .custom-order__subtitle{ font-size: 30px; }
  .custom-order__submit{ width: 100%; justify-content: center; height: 72px; }

  .custom-order__card-right{ height: 260px; }
  .custom-order__card-img{ position: static; height: 100%; }
}

@media (max-width: 560px){
  .custom-order__title{ font-size: 32px; }
  .custom-order__item{ flex-basis: 90vw; height: 320px; }
  .custom-order__subtitle{ font-size: 28px; }
}

.custom-order__item--single{
  margin: 0;
}

.custom-order__textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,.12);
  padding: 12px 14px;
  font-size: 14px;
  resize: vertical;
  min-height: 88px;
  background: #fff;
}

.form-ok{ margin-top: 12px; color:#0b7a3c; font-weight:600; }
.form-fail{ margin-top: 12px; color:#b00020; font-weight:600; }

/* =====================================================
   HEADER
===================================================== */

.site-header--overlay{
  position:absolute;
  left:0;
  right:0;
  top:24px;
  z-index:50;
  pointer-events:none;
}
.site-header--overlay .header__bar{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
  padding:0 var(--padding);
  box-sizing:border-box;
  pointer-events:auto;
}

.site-header--overlay .header__bar{
  --gap-left: clamp(20px, 20.7vw, 56px);
  --gap-right: clamp(8px, 4vw, 12px);
}

.site-header--overlay .header__logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  height:48px;
}
.site-header--overlay .header__logo a{
  display:block;
  text-decoration:none;
}
.site-header--overlay .header__logoText{
  display:block;
  text-align:right;
  line-height:1.05;
  letter-spacing:0.08em;
  font-weight:800;
  color:#fff;
  text-transform:uppercase;
  margin:0;
}

/* Main menu */
.site-header--overlay .header__navMain{
  flex:1 1 auto;
  min-width:0;
  padding-left:var(--gap-left);
  padding-right:var(--gap-right);
  box-sizing:border-box;
}
.site-header--overlay .header__menu--main{
  list-style:none;
  margin:0;
  padding:0;
  height:48px;
  display:flex;
  align-items:stretch;
  width:100%;
  background:rgba(90,90,90,0.72);
  backdrop-filter: blur(2px);
}
.site-header--overlay .header__menu--main > li{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  border-left:0px;
}
.site-header--overlay .header__menu--main > li:first-child{
  border-left:none;
}
.site-header--overlay .header__menu--main a{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:16px;
  white-space:nowrap;
}
.site-header--overlay .header__menu--main a:hover,
.site-header--overlay .header__menu--main .current-menu-item > a,
.site-header--overlay .header__menu--main .current_page_item > a{
  background:rgba(255,153,0,0.95);
  color:#fff;
}

.site-header--overlay .header__navCta{
  flex:0 0 auto;
  min-width:0;
}
.site-header--overlay .header__menu--cta{
  list-style:none;
  margin:0;
  padding:0;
  height:48px;
  display:flex;
  align-items:stretch;
  gap:0;
}
.site-header--overlay .header__menu--cta > li{
  display:flex;
}
.site-header--overlay .header__menu--cta a{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  height:48px;
  text-decoration:none;
  font-weight:500;
  font-size:20px;
  white-space:nowrap;
}
.site-header--overlay .header__menu--cta .menu-btn-outline > a{
  background:#fff;
  color:#f39b12;
}
.site-header--overlay .header__menu--cta .menu-btn-fill > a{
  background:#f39b12;
  color:#fff;
}
/* CTA hover */
.site-header--overlay .header__menu--cta .menu-btn-outline > a:hover{
  background:rgba(255,255,255,0.92);
}
.site-header--overlay .header__menu--cta .menu-btn-fill > a:hover{
  filter:brightness(0.92);
}

.site-header--overlay .header__navCta{
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.site-header--overlay .header__menu--cta{
  display: flex;
  align-items: stretch;
  height: 48px;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-header--overlay .header__menu--cta > li{
  display: flex;
  align-items: stretch;
  height: 48px;
  flex: 0 0 auto;
}

.site-header--overlay .header__menu--cta > li + li{
  border-left: 0;
}

.site-header--overlay .header__menu--cta > li > a{
  display: inline-flex;
  align-items: right;
  justify-content: right;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header--overlay .header__menu--cta > li.menu-btn-outline > a{
  background: #fff;
  color: var(--accent);
  border: 0;
}
.site-header--overlay .header__menu--cta > li.menu-btn-outline > a:hover{
  background: var(--accent);
  color: #fff;
}

.site-header--overlay .header__menu--cta > li.menu-btn-fill > a{
  background: var(--accent);
  color: #fff;
  border: 0;
}
.site-header--overlay .header__menu--cta > li.menu-btn-fill > a:hover{
  background: var(--bg);
  color: #e68b00;
}

/* =====================================================
   Footer
===================================================== */

.site-footer{
  background: #F79A0D;
  color: #fff;
}

.site-footer__inner{
  /* Keep horizontal paddings consistent with the rest of the layout */
  padding: 120px var(--padding) 140px;
  max-width: 100%;
}

.site-footer__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
}

.site-footer__tagline{
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  max-width: 1050px;
  text-wrap: pretty;
}

.site-footer__brand{
  text-align: right;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 70px;
  line-height: 0.95;
  white-space: nowrap;
}

.site-footer__brand-line{
  display: block;
}

.site-footer__cols{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  column-gap: 140px;
  row-gap: 40px;
  align-items: start;
}

.site-footer__title{
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
}

.site-footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li{
  margin: 0 0 18px;
}

.site-footer__list a{
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 2px;
  margin-left: -18px; 
}

.site-footer__list a:hover{
  background: rgba(255,255,255,0.15);
}

.site-footer__contact{
  justify-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-top: 48px;
}

.site-footer__email{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.site-footer__email:hover{
  text-decoration: underline;
}

.site-footer__social{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
}

.site-footer__social:hover{
  background: rgba(255,255,255,0.28);
}

/* Desktop scaling */
@media (max-width: 1600px){
  .site-footer__inner{ padding: 100px var(--padding) 120px; }
  .site-footer__tagline{ font-size: 38px; 
                         max-width: 920px; }
  .site-footer__brand{ font-size: 62px; }
  .site-footer__cols{ column-gap: 120px; }
}

@media (max-width: 1440px){
  .site-footer__tagline{ font-size: 30px;
                          max-width: 860px; }
  .site-footer__brand{ font-size: 56px; }
  .site-footer__cols{ column-gap: 90px; }
}

@media (max-width: 1200px){
  .site-footer__cols{ grid-template-columns: 1fr 1fr; }
  .site-footer__contact{ grid-column: 2; margin-top: 0; }
}

@media (max-width: 980px){
  .site-footer__inner{ padding: 70px var(--padding) 80px; }
  .site-footer__top{ flex-direction: column; gap: 28px; margin-bottom: 48px; }
  .site-footer__tagline{ font-size: 34px; max-width: 100%; }
  .site-footer__brand{ text-align: left; font-size: 44px; white-space: normal; }
  .site-footer__cols{ grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .site-footer__contact{ justify-self: start; text-align: left; align-items: flex-start; grid-column: 1 / -1; }
}

@media (max-width: 560px){
  .site-footer__inner{ padding: 60px var(--padding) 70px; }
  .site-footer__tagline{ font-size: 30px; }
  .site-footer__cols{ grid-template-columns: 1fr; row-gap: 28px; }
  .site-footer__title{ font-size: 28px; }
  .site-footer__list a{ font-size: 22px; padding: 12px 12px; margin-left: -12px; }
  .site-footer__contact{ margin-top: 10px; }
}

/* =====================================================
   Every light you need (Light Types grid)
===================================================== */

.light-types{
  padding: 72px var(--padding_grid) 28px;
}

.light-types__title{
  margin-bottom: 26px;
  font-size: 34px;
}

.light-types__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.light-types__card{
  display: grid;
  grid-template-rows: 1fr 54px;
  border: 1px solid #d9eef6;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.light-types__imgwrap{
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.light-types__img{
  width: 100%;
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
}

.light-types__bar{
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #d9eef6;
  color: #4a8da6;
  font-weight: 600;
  font-size: 18px;
  transition: background-color .15s ease, color .15s ease;
}

.light-types__card:hover .light-types__bar,
.light-types__card:focus-visible .light-types__bar,
.light-types__card.is-active .light-types__bar{
  background: #000;
  color: #fff;
}

.light-types__card:hover,
.light-types__card:focus-visible{
  border-color: #b9dbe7;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.light-types__card:focus-visible{
  outline: 2px solid rgba(242,140,0,0.55);
  outline-offset: 3px;
}

@media (max-width: 1440px){
  .light-types__title{ font-size: 32px; }
  .light-types__imgwrap{ min-height: 240px; }
}

@media (max-width: 1100px){
  .light-types__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .light-types{ padding: 44px 0 14px; }
  .light-types__grid{ grid-template-columns: 1fr; gap: 16px; }
  .light-types__bar{ font-size: 16px; height: 50px; }
}

/* =====================================================
   Popular Products
===================================================== */

.popular-products{
  padding: 56px 0 90px;
  background:#eef8fb;
}

.popular-products__inner{
  width:100%;
  max-width:none;
  padding: 0 var(--padding);
}

.popular-products__title{
  font-size: 34px;
  margin-bottom: 26px;
}

.popular-products__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pp-card--featured{
  grid-row: span 2;
}

.pp-card{
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid #d9eef6;
  background: #fff;
  overflow: hidden;
  min-height: 360px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.pp-card__imgwrap{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  min-height: 260px;
}

.pp-card__img{
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.pp-card__bar{
  background:#d9eef6;
  color:#4a8da6;
  padding: 14px 16px 12px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color .15s ease, color .15s ease;
}

.pp-card__name{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.pp-card__price{
  font-size: 20px;
  font-weight: 700;
}

.pp-card:hover .pp-card__bar,
.pp-card:focus-visible .pp-card__bar{
  background:#000;
  color:#fff;
}

.pp-card:hover,
.pp-card:focus-visible{
  border-color:#b9dbe7;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.pp-card:focus-visible{
  outline: 2px solid rgba(242,140,0,0.55);
  outline-offset: 3px;
}

.popular-products__cta{
  display:flex;
  justify-content:center;
  margin-top: 22px;
}

@media (max-width: 1100px){
  .popular-products__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-card--featured{ grid-row: span 1; }
}

@media (max-width: 560px){
  .popular-products__inner{ padding: 0 20px; }
  .popular-products__grid{ grid-template-columns: 1fr; gap: 16px; }
}

/* =====================================================
   Our Projects (slider)
===================================================== */
.our-projects{
  padding: 56px 0 80px;
}
.our-projects__inner{
  padding: 0 var(--padding);
}
.our-projects__title{
  font-size: 34px;
  margin-bottom: 26px;
}

.our-projects__gallery{
  overflow: hidden;
  width: 100%;
}
.our-projects__track{
  display: flex;
  gap: 14px;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 360ms ease;
}
.our-projects__track.is-dragging{ transition: none; }

.our-projects__item{
  margin: 0;
  position: relative;
  flex: 0 0 clamp(860px, 62vw, 1180px);
  height: 520px;
  border: 1px solid #111;
  background: #111;
}

.our-projects__link{
  position:absolute;
  inset:0;
  display:block;
}

.our-projects__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-projects__caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  background: rgba(0,0,0,.35);
  color: #fff;
  z-index: 2;
}

.our-projects__cap-text{
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.our-projects__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.our-projects__progress{
  margin-top: 18px;
  height: 8px;
  background: #d6e8f0;
}
.our-projects__progress-fill{
  display: block;
  height: 100%;
  width: 140px;
  background: #2b8fb8;
}

.our-projects__cta{
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 560px){
  .our-projects__inner{ padding: 0 20px; }
}

.our-projects__item--single{
  flex: none;
  width: 100%;
}

/* =====================================================
   Home Blog (CPT post_item)
===================================================== */
.home-blog{
  padding: 56px 0 90px;
}
.home-blog__inner{
  padding: 0 var(--padding);
}
.home-blog__title{
  margin-bottom: 26px;
}

.home-blog__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-blog__card{
  display: block;
  border: 1px solid #d9eef6;
  background: #fff;
  overflow: hidden;
}

.home-blog__imgwrap{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 18px;
  background: #fff;
}
.home-blog__img{
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: scale-down;
}

.home-blog__bar{
  background: #d9eef6;
  color: #4a8da6;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color .15s ease, color .15s ease;
}

.home-blog__name{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.home-blog__text{
  font-size: 13px;
  line-height: 1.35;
  opacity: .95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog__date{
  font-size: 12px;
  opacity: .95;
}

.home-blog__card:hover .home-blog__bar{
  background: #000;
  color: #fff;
}

.home-blog__cta{
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 900px){
  .home-blog__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .home-blog__inner{ padding: 0 20px; }
  .home-blog__grid{ grid-template-columns: 1fr; gap: 16px; }
}


.blog-archive{
  padding: 120px 0 90px;
  background:#fff;
}

/* =========================
   SINGLE BLOG (post_item)
   ========================= */
   .post-single{
    padding: 120px 0 40px;
  }
  
  .post-title{
    font-size: 56px;
    line-height: 1.05;
    margin: 0 0 14px;
  }
  
  .post-intro{
    font-size: 18px;
    line-height: 1.6;
    margin: 16px 0 0;
    opacity: .85;
  }
  
  /* top slider */
  .post-hero{
    margin-top: 18px;
    border: 1px solid #d9eef6;
    background: #fff;
    overflow: hidden;
  }
  
  .post-hero__mainbtn{
    width: 100%;
    border: 0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
  }
  
  .post-hero__mainimg{
    width: 100%;
    max-height: 520px;
    cursor: inherit;
  }
  
  .post-hero__dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px 18px;
    border-top: 1px solid #d9eef6;
    background: #fff;
  }
  
  .post-hero__dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.25);
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  
  .post-hero__dot.is-active{
    background: #000;
    border-color: #000;
  }
  
  .post-content{
    margin-top: 22px;
    max-width: 980px;
  }
  
  .post-content p{
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 14px;
  }
  
  .post-content h2{
    font-size: 28px;
    margin: 28px 0 14px;
  }
  
  .post-content h3{
    font-size: 22px;
    margin: 22px 0 12px;
  }
  
  .post-products{
    padding: 56px 0 90px;
    background: #fff;
  }
  
  .post-products__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
  }
  
  @media (max-width: 1100px){
    .post-title{ font-size: 44px; }
    .post-products__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 560px){
    .post-title{ font-size: 36px; }
    .post-products__grid{ grid-template-columns: 1fr; gap: 16px; }
  }

.post-hero__mainbtn{
  position: relative;
  overflow: hidden;

  padding: 0 !important;    
  height: 520px;           
  display: block;
  width: 100%;
}

@media (max-width: 560px){
  .post-hero__mainbtn{ height: 300px; }
}

.post-hero__layer{
  position: absolute;
  inset: 0;                  
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.post-hero__layer img{
  width: 100%;
  height: 100%;
  object-fit:scale-down;
  display: block;
}

.post-hero__layer--current{ transform: translateX(0); }
.post-hero__layer--next{ transform: translateX(100%); }

.post-hero__layer.is-enter-from-right{ transform: translateX(100%); }
.post-hero__layer.is-enter-from-left{  transform: translateX(-100%); }

.post-hero__layer.is-exit-to-left{     transform: translateX(-100%); }
.post-hero__layer.is-exit-to-right{    transform: translateX(100%); }

.post-hero__layer.is-animating{ transition: transform .50s ease; }

/* =========================
   Delivery Information
========================= */
.delivery{ padding: 34px 0 90px; }
.delivery__inner{ padding: 0 var(--padding); }
.delivery__title{ margin-bottom: 22px; }

.delivery__top{
  display:grid;
  grid-template-columns: 240px 240px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.delivery__mini, .delivery__big{
  background:#fff;
  padding: 18px 20px;
}
.delivery__mini-title{
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.delivery__mini-sub{
  font-size: 13px;
  opacity:.75;
}
.delivery__big-title{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.delivery__big-text{
  font-size: 13px;
  line-height: 1.35;
  opacity:.8;
  max-width: 560px;
}

.delivery__bottom{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  background:#fff;
}
.delivery__formwrap{
  padding: 40px 44px;
}
.delivery__formtitle{
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 520px;
}

.delivery__form{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.delivery__input,
.delivery__textarea{
  width:100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.18);
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
}
.delivery__textarea{ min-height: 72px; resize: vertical; }

.delivery__submit{
  margin-top: 10px;
  height: 56px;
  display:inline-flex;
  align-items:center;
  padding: 0 28px;
  border: none;
  border-radius: 0;
  background: #f39a00;
  color:#fff;
  font-weight: 600;
  font-size: 18px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  width: fit-content;
  gap:10px;
}

.delivery__imgwrap{
  max-height: 500px;
  position:relative;
  overflow:hidden;
}
.delivery__img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.delivery__ok{ margin-top: 14px; color: #0b7a3c; font-weight: 600; }
.delivery__fail{ margin-top: 14px; color: #b00020; font-weight: 600; }
.delivery__warn{ margin-top: 14px; color: #8a5a00; font-size: 12px; }

@media (max-width: 980px){
  .trust__grid{ grid-template-columns: 1fr; }
  .delivery__top{ grid-template-columns: 1fr; }
  .delivery__bottom{ grid-template-columns: 1fr; }
  .delivery__imgwrap{ min-height: 260px; }
}

.delivery__textarea,
.custom-order__textarea{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);

  width: 100%;
  display: block;

  border: none;
  border-bottom: 1px solid rgba(0,0,0,.18);
  background: transparent;

  padding: 10px 0;
  outline: none;

  min-height: 72px;
  resize: none;
}

.delivery__textarea::placeholder,
.custom-order__textarea::placeholder{
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: rgba(0,0,0,.45);
}

.delivery__input,
.delivery__textarea{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important; 
  line-height: 1.25 !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text);
}

.delivery__input::placeholder,
.delivery__textarea::placeholder{
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 600 !important;     
  line-height: inherit !important;
  color: rgba(0,0,0,.45) !important;
  opacity: 1 !important;         
}

/* =====================================================
   FORMS: Delivery + Custom Order (unify typography + UX)
   Put this block at the VERY END of style.css
===================================================== */

.delivery__input,
.delivery__textarea{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: #111 !important;
  -webkit-text-fill-color: #111; /* Safari */
}

.delivery__input::placeholder,
.delivery__textarea::placeholder{
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 600 !important;
  line-height: inherit !important;
  color: rgba(0,0,0,.45) !important;
  opacity: 1 !important; /* Firefox */
}

.delivery__textarea{
  resize: none;          
  min-height: 72px;     
  max-height: 110px;     
  overflow: auto;      
}


.custom-order__input,
.custom-order__textarea{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  -webkit-text-fill-color: #111;

  width: 100%;
  display: block;

  background: transparent;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,.18) !important;

  padding: 10px 0 !important;
  outline: none;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.custom-order__input{
  height: 44px;
}

.custom-order__textarea{
  min-height: 72px;
  max-height: 110px;
  resize: none;
  overflow: auto;
}

.custom-order__input::placeholder,
.custom-order__textarea::placeholder{
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  color: rgba(0,0,0,.45);
  opacity: 1;
}

.custom-order__input:focus,
.custom-order__textarea:focus,
.delivery__input:focus,
.delivery__textarea:focus{
  border-bottom-color: rgba(43,143,184,0.9) !important;
}

.delivery-info__card{ max-height: 520px; overflow: hidden; }


/* =========================
   PRODUCTS ARCHIVE (scoped)
   ========================= */
.products-archive{
  padding: 120px 0 90px;
  background:#fff;
}

.products-archive .container{
  /* keep same gutters as other pages */
  width: 100%;
  max-width: none;
  padding: 0 var(--padding);
}

@media (max-width: 1440px){
  .products-archive .container{ padding: 0 var(--padding); }
}
@media (max-width: 1100px){
  .products-archive .container{ padding: 0 40px; }
}
@media (max-width: 560px){
  .products-archive .container{ padding: 0 16px; }
}

.products-toolbar{
  display:grid;
  grid-template-columns: 1fr 260px;
  gap: 16px;
  align-items:center;
  margin: 18px 0 18px;
}
@media (max-width: 900px){
  .products-toolbar{ grid-template-columns: 1fr; }
}

.products-toolbar__search,
.products-toolbar__sort{
  height: 44px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #d9e7ef;
  background:#fff;
  border-radius: 0;
  font-size: 16px;
  outline: none;
}
.products-toolbar__search:focus,
.products-toolbar__sort:focus{ border-color: #2b8fb8; }

.products-layout{
  display:grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items:start;
}
@media (max-width: 1100px){
  .products-layout{ grid-template-columns: 1fr; }
  .filters{ border-right: 0; padding-right: 0; }
}

.products-layout > section{
  min-width: 0;
}

.filters{
  border-right: 1px solid rgba(0,0,0,0.06);
  padding-right: 18px;
}

.filter-box{
  border: 1px solid #e7eef3;
  background:#fff;
  margin-bottom: 14px;
}
.filter-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 14px 14px;
  cursor:pointer;
  user-select:none;
  font-weight: 700;
}


/* =========================
   SINGLE PRODUCT
   ========================= */
.product-single{ padding: 120px 0 90px; background:#fff; }
.product-single .container{
  width: 100%;
  max-width: none;
  padding: 0 var(--padding);
}
@media (max-width: 1440px){
  .product-single .container{ padding: 0 var(--padding); }
}
@media (max-width: 1100px){
  .product-single .container{ padding: 0 40px; }
}
@media (max-width: 560px){
  .product-single .container{ padding: 0 16px; }
}

.breadcrumbs{
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,.55);
  display:flex;
  flex-wrap:wrap;
  gap: 6px;
  margin: 0 0 18px;
}
.breadcrumbs a{ color: rgba(0,0,0,.55); text-decoration: none; }
.breadcrumbs a:hover{ color: #000; }
.breadcrumbs__current{ color:#000; }

.product-single__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:start;
}
@media (max-width: 960px){
  .product-single__grid{ grid-template-columns: 1fr; }
}

.product-gallery{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items:start;
}
@media (max-width: 960px){
  .product-gallery{ grid-template-columns: 1fr; }
}

.product-gallery__thumbs{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
@media (max-width: 960px){
  .product-gallery__thumbs{ flex-direction:row; overflow:auto; padding-bottom: 6px; }
}

.product-gallery__thumb{
  width: 92px;
  height: 72px;
  padding: 0;
  border: 1px solid #d9e7ef;
  background:#fff;
  cursor:pointer;
}
.product-gallery__thumb img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: contain;
}
.product-gallery__thumb.is-active,
.product-gallery__thumb[aria-current="true"]{
  border-color: #2b8fb8;
}

.product-gallery__main{
  position:relative;
  width:100%;
  border: 1px solid #d9e7ef;
  background:#fff;
  padding: 0;
  cursor: zoom-in;
  overflow:hidden;
}
.product-gallery__main:focus{ outline: none; border-color: #2b8fb8; }
.product-gallery__main-img{
  width: 100%;
  height: 520px;
  display:block;
  object-fit: contain;
  background:#fff;
}
@media (max-width: 560px){
  .product-gallery__main-img{ height: 380px; }
}

.product-gallery__placeholder{
  height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(0,0,0,.45);
  font-weight: 700;
}

.product-gallery__hint{
  position:absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.72);
  color:#fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.product-info{
  border: 1px solid #e7eef3;
  padding: 18px 18px 22px;
}
.product-info__title{
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 12px;
}
@media (max-width: 560px){
  .product-info__title{ font-size: 28px; }
}

.product-info__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 12px 18px;
  align-items:baseline;
  margin: 0 0 14px;
}
.product-info__price{ font-size: 40px; font-weight: 800; }
.product-info__sku{ color: rgba(0,0,0,.55); font-weight: 700; }
.product-info__desc{ 
  color: rgba(0,0,0,.72);
  margin: 0 0 18px; 
  font-weight: 500;      
  line-height: 1.5;
  text-transform: none;
}
.product-info__desc p{ margin: 0 0 .8em; }
.product-info__desc p:last-child{ margin-bottom: 0; }

.product-info__specs{ border-top: 1px solid rgba(0,0,0,.08); margin-top: 8px; padding-top: 12px; }
.spec{ display:grid; grid-template-columns: 140px 1fr; gap: 12px; padding: 8px 0; }
.spec__k{ color: rgba(0,0,0,.55); font-weight: 700; }
.spec__v{ color: #000; font-weight: 700; }

.product-info__content{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.product-info__content p{ margin: 0 0 12px; }

.product-info__actions{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.product-quote-btn{
  display: inline-flex;    
  width: auto;            
  min-width: 320px;         
  height: 56px;            
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 2px;
}

.lc-no-scroll{ overflow: hidden; }
.zoom-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
}
.zoom-modal.is-open{ opacity: 1; visibility: visible; }
.zoom-modal__stage{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
  z-index: 1;
}
.zoom-modal__img{
  max-width: 92vw;
  max-height: 92vh;
  cursor: grab;
  user-select: none;
  transform-origin: center center;
}
.zoom-modal.is-dragging .zoom-modal__img{ cursor: grabbing; }
.zoom-modal__close{
  position:absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255,255,255,.14);
  color:#fff;
  font-size: 20px;
  cursor:pointer;
}
.zoom-modal__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  background: rgba(255,255,255,.14);
  color:#fff;
  font-size: 30px;
  cursor:pointer;
}
.zoom-modal__nav--prev{ left: 16px; }
.zoom-modal__nav--next{ right: 16px; }

.order-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
  z-index: 9998;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.order-modal.is-open{ opacity: 1; visibility: visible; }
.order-modal__dialog{
  width: min(560px, 100%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  padding: 18px 18px 16px;
  position: relative;
}
.order-modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor:pointer;
}
.order-modal__title{ margin: 6px 0 14px; font-size: 20px; }
.field{ display:block; margin: 0 0 12px; }
.field__label{ display:block; font-size: 12px; opacity: .8; margin: 0 0 6px; }
.field__input{ width:100%; border:1px solid #d9e7ef; height: 40px; padding: 0 10px; outline:none; font-size: 14px; }
.field__textarea{ height: auto; padding: 10px; resize: none; }
.order-form__status{ margin: 10px 0 0; font-size: 13px; opacity: .85; }

.product-related{ padding: 34px 0 52px; }
.product-related .section-title{ margin: 0 0 16px; font-size: 22px; }

.filter-chevron{ transition: transform .15s ease; }
.filter-box.is-open .filter-chevron{ transform: rotate(180deg); }

.filter-body{ display:none; padding: 0 14px 14px; }
.filter-box.is-open .filter-body{ display:block; }

.filter-search{
  width: 100%;
  height: 38px;
  border: 1px solid #d9e7ef;
  padding: 0 10px;
  margin: 0 0 10px;
  font-size: 14px;
  outline: none;
}

.filter-list{
  max-height: 220px;
  overflow:auto;
  padding:0;
  margin:0;
  list-style:none;
}
.filter-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 8px 2px;
  font-size: 15px;
}
.filter-item input{
  width:16px;
  height:16px;
  flex: 0 0 16px;
}
.filter-item__term-link{
  color: inherit;
  text-decoration: none;
}
.filter-item__term-link:hover{
  text-decoration: underline;
}

.filters__actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}
.filters__actions .btn{
  width: 100%;
  justify-content:center;
  height: 46px;
}
.filters__reset{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  width: 100%;
  border: 1px solid #d9e7ef;
  background:#fff;
  font-weight: 700;
}

.products-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1280px){
  .products-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .products-grid{ grid-template-columns: 1fr; }
}

.product-card{
  display:flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #d9eef6;
  background:#fff;
  overflow:hidden;
  min-height: 300px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.product-card__link{
  display:flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 100%;
}

.product-card__imgwrap{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px;
  min-height: 180px;
  flex: 1 1 auto;
}
.product-card__img,
.product-card__imgwrap img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  display:block;
}
.product-card__bar{
  background:#d9eef6;
  color:#4a8da6;
  padding: 16px 18px 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color .15s ease, color .15s ease;
}
.product-card__title{
  margin:0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
}
.product-card__arrow{ font-size: 20px; line-height: 1; }
.product-card__price{
  font-size: 22px;
  font-weight: 700;
}

.product-card:hover .product-card__bar,
.product-card:focus-visible .product-card__bar{
  background:#000;
  color:#fff;
}
.product-card:hover,
.product-card:focus-visible{
  border-color:#b9dbe7;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.product-card:focus-visible{
  outline: 2px solid rgba(242,140,0,0.55);
  outline-offset: 3px;
}

.products-empty{
  padding: 18px;
  border: 1px solid #e7eef3;
  background:#fff;
}

.products-pagination{
  margin-top: 26px;
  display:flex;
  justify-content:center;
}
.products-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  margin: 0 6px;
  border: 1px solid #d9e7ef;
  text-decoration:none;
  color:#111;
  background:#fff;
}
.products-pagination .page-numbers.current{
  background:#000;
  color:#fff;
  border-color:#000;
}

.pp-card__bar,
.product-card__bar,
.products-grid .card__bar{
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pp-card__title,
.product-card__title,
.products-grid .card__title{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pp-card__price,
.product-card__price,
.products-grid .card__price{
  margin-top: 10px;
}

.product-related .products-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1280px){
  .product-related .products-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px){
  .product-related .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .product-related .products-grid{ grid-template-columns: 1fr; }
}

.product-related .products-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card__bar,
.product-related .product-card__bar{
  min-height: 108px;
}

@media (max-width: 980px){
  .product-card{ min-height: 290px; }
  .product-card__imgwrap{ min-height: 165px; }
  .product-card__img,
  .product-card__imgwrap img{ max-height: 175px; }
}

/* =====================================================
   HEADER(other pages)
===================================================== */

.site-header--light{
  position:absolute;
  left:0;
  right:0;
  top:24px;
  z-index:50;
  pointer-events:none;
}
.site-header--light .header__bar{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
  padding:0 var(--padding);
  box-sizing:border-box;
  pointer-events:auto;
}

.site-header--light .header__bar{
  --gap-left: clamp(20px, 20.7vw, 56px);
  --gap-right: clamp(8px, 4vw, 12px);
}

.site-header--light .header__logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  height:48px;
}
.site-header--light .header__logo a{
  display:block;
  text-decoration:none;
}
.site-header--light .header__logoText{
  display:block;
  text-align:right;
  line-height:1.05;
  letter-spacing:0.08em;
  font-weight:800;
  color:#000;
  text-transform:uppercase;
  margin:0;
}

.site-header--light .header__navMain{
  flex:1 1 auto;
  min-width:0;
  padding-left:var(--gap-left);
  padding-right:var(--gap-right);
  box-sizing:border-box;
}
.site-header--light .header__menu--main{
  list-style:none;
  margin:0;
  padding:0;
  height:48px;
  display:flex;
  align-items:stretch;
  width:100%;
  background:rgba(151, 151, 151, 0.72);
  backdrop-filter: blur(2px);
}
.site-header--light .header__menu--main > li{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  border-left:0px;
}
.site-header--light .header__menu--main > li:first-child{
  border-left:none;
}
.site-header--light .header__menu--main a{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:16px;
  white-space:nowrap;
}
.site-header--light .header__menu--main a:hover,
.site-header--light .header__menu--main .current-menu-item > a,
.site-header--light .header__menu--main .current_page_item > a{
  background:rgba(255,153,0,0.95);
  color:#fff;
}

.site-header--light .header__navCta{
  flex:0 0 auto;
  min-width:0;
}
.site-header--light .header__menu--cta{
  list-style:none;
  margin:0;
  padding:0;
  height:48px;
  display:flex;
  align-items:stretch;
  gap:0;
}
.site-header--light .header__menu--cta > li{
  display:flex;
}
.site-header--light .header__menu--cta a{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  height:48px;
  text-decoration:none;
  font-weight:500;
  font-size:20px;
  white-space:nowrap;
}
.site-header--light .header__menu--cta .menu-btn-outline > a{
  background:#fff;
  color:#f39b12;
}
.site-header--light .header__menu--cta .menu-btn-fill > a{
  background:#f39b12;
  color:#fff;
}
/* CTA hover */
.site-header--light .header__menu--cta .menu-btn-outline > a:hover{
  background:rgba(255,255,255,0.92);
}
.site-header--light .header__menu--cta .menu-btn-fill > a:hover{
  filter:brightness(0.92);
}

.site-header--light .header__navCta{
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.site-header--light .header__menu--cta{
  display: flex;
  align-items: stretch;
  height: 48px;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-header--light .header__menu--cta > li{
  display: flex;
  align-items: stretch;
  height: 48px;
  flex: 0 0 auto;
}

.site-header--light .header__menu--cta > li + li{
  border-left: 0;
}

.site-header--light .header__menu--cta > li > a{
  display: inline-flex;
  align-items: right;
  justify-content: right;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header--light .header__menu--cta > li.menu-btn-outline > a{
  background: #fff;
  color: var(--accent);
  border: 2px solid #f39b12;
  box-sizing: border-box;
}
.site-header--light .header__menu--cta > li.menu-btn-outline > a:hover{
  background: var(--accent);
  color: #fff;
}

.site-header--light .header__menu--cta > li.menu-btn-fill > a{
  background: var(--accent);
  color: #fff;
  border: 0;
}
.site-header--light .header__menu--cta > li.menu-btn-fill > a:hover{
  background: var(--bg);
  color: #e68b00;
}

.project-caption{
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.55;
  opacity: .85;
  max-width: 980px;
}

.project-cta{
  margin: 12px 0 18px;
}

.project-description{
  margin-top: 18px;
  max-width: 980px;
  font-size: 18px;
  line-height: 1.65;
  opacity: .92;
}

/* simple primary button if lc-btn missing */
.lc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.lc-btn--primary{
  background: #f18a00;
  color: #fff;
}

.lc-btn--primary:hover{
  background: #000;
  color: #fff;
}

.home-blog__card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-blog__imgwrap{
  height: 320px;          
  min-height: 320px;
  padding: 18px;
}

.home-blog__img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  max-height: none;       
}

.home-blog__bar{
  min-height: 140px;
}

.home-blog__name{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pp-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pp-card__imgwrap{
  height: 320px;
  padding: 18px;
}
.pp-card__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pp-card__bar{
  min-height: 110px;
}

/* Payment & Delivery page (text-only, in site style) */
.page-text{
  padding: 120px 0 90px;
  background:#fff;
}

.page-text .container{
  width: 100%;
  max-width: none;
  padding: 0 var(--padding);
}

.page-text__header{
  margin-bottom: 26px;
}

.page-text__title{
  margin: 0 0 10px;
}

.page-text__lead{
  margin: 0;
  max-width: 980px;
  font-size: 18px;
  line-height: 1.6;
  opacity: .85;
}

/* layout */
.page-text__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px){
  .page-text__grid{ grid-template-columns: 1fr; }
}

/* cards */
.info-card, .side-card{
  border: 1px solid #d9eef6;
  background:#fff;
  padding: 18px 18px 16px;
}

.info-card + .info-card{ margin-top: 18px; }

.info-card__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.info-card__text{
  margin: 0;
  line-height: 1.7;
  opacity: .92;
}

.info-card__note{
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  opacity: .75;
}

.info-card__actions{
  margin-top: 12px;
}

/* list like a spec table */
.info-list{
  display: grid;
  gap: 10px;
}

.info-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 10px 12px;
  background: #d9eef6;
  color: #4a8da6;
}

.info-row__label{
  font-weight: 700;
}

.info-row__value{
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

/* side card */
.side-card__title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}

.side-card__list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
  opacity: .9;
}

/* optional editor content */
.page-text__content{
  margin-top: 26px;
  max-width: 980px;
}

/* link style */
.lc-link{
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.lc-link:hover{
  color: #000;
}

/* responsive gutters like other pages */
@media (max-width: 1100px){
  .page-text .container{ padding: 0 40px; }
}
@media (max-width: 560px){
  .page-text{ padding: 90px 0 70px; }
  .page-text .container{ padding: 0 16px; }
  .info-row{ grid-template-columns: 1fr; }
  .info-row__value{ text-align: left; white-space: normal; }
}

/* Contact us */
.contact-page__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px){
  .contact-page__grid{ grid-template-columns: 1fr; }
}

.contact-page__mail{
  margin: 10px 0 0;
  opacity: .9;
}

.contact-page__formcard{
  border: 1px solid #d9eef6;
  background: #fff;
  padding: 18px;
}

.contact-form__row{ margin-bottom: 14px; }

.contact-form__label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea{
  width: 100%;
  border: 1px solid #d9eef6;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.contact-form__textarea{
  resize: none;
}

.contact-form__actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form__status{
  font-size: 13px;
  opacity: .85;
}

.lc-btn.lc-btn--primary{
  background: #f28c00;
  color: #fff;
  border: 0;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 2px;
}
.lc-btn.lc-btn--primary:hover{ filter: brightness(.95); }

/* Custom order page */
.custom-order-page__mail{
  margin: 10px 0 0;
  opacity: .9;
}

.custom-order-page__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px){
  .custom-order-page__grid{ grid-template-columns: 1fr; }
}

.bullets{
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
}

.steps{
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
}

.info-split{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px){
  .info-split{ grid-template-columns: 1fr; }
}

.info-split__item{
  border: 1px solid #d9eef6;
  padding: 12px 12px 10px;
  background: #fff;
}

.info-split__title{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.info-split__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: .9;
}

.about-page__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px){
  .about-page__grid{ grid-template-columns: 1fr; }
}

.about-page__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* optional ghost button (if not exists) */
.lc-btn--ghost{
  background: transparent;
  border: 1px solid #d9eef6;
  color: #000;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lc-btn--ghost:hover{
  background: #d9eef6;
}

/* =====================================================
   Mobile header + drawer
===================================================== */

.header__burger{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.22);
  border-radius: 2px;
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.header__burgerLines{
  position:relative;
  display:block;
  width:22px;
  height:2px;
  background:#fff;
}
.header__burgerLines::before,
.header__burgerLines::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:#fff;
}
.header__burgerLines::before{ top:-7px; }
.header__burgerLines::after{ top:7px; }

.site-header--light .header__burger{
  border-color: rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.06);
}
.site-header--light .header__burgerLines,
.site-header--light .header__burgerLines::before,
.site-header--light .header__burgerLines::after{ background:#111; }

@media (max-width: 960px){
  .site-header--overlay{ top: 14px; }
  .site-header--overlay .header__bar{ padding: 0 16px; }
  .site-header--light .header__bar{ padding: 16px; }

.header__navMain{ display:none; }
.header__navCta{ display:none; } /* <- важно */

  .header__burger{ display:inline-flex; }
}

.mobile-drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--accent);
}
.mobile-drawer[hidden]{ display:none !important; }

.mobile-drawer__panel{
  height: 100%;
  display:flex;
  flex-direction:column;
}

.mobile-drawer__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding: 34px 24px 18px;
}

.mobile-drawer__logoText{
  display:block;
  line-height:1.05;
  letter-spacing:0.08em;
  font-weight:800;
  color:#fff;
  text-transform:uppercase;
}

.mobile-drawer__close{
  width: 70px;
  height: 70px;
  border: 0;
  background: rgba(0,0,0,0.18);
  color:#fff;
  border-radius: 2px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mobile-drawer__closeIcon{
  font-size: 44px;
  line-height: 1;
}

.mobile-drawer__nav{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 10px 20px 60px;
  gap: 32px;
}

.mobile-nav{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
}

.mobile-nav--main a{
  display:block;
  color:#fff;
  font-weight:500;
  font-size: clamp(22px, 6.2vw, 34px);
  padding: 16px 0;
  text-align:center;
}

.mobile-nav--cta{
  gap: 8px;
}

.mobile-nav--cta a{
  display:block;
  text-align:center;
  font-weight:500;
  font-size: clamp(20px, 5.4vw, 30px);
  padding: 14px 0;
  color:#fff;
}

/* Mobile bottom contact link (no button) */
.mobile-nav--contact a{
  display:block;
  text-align:center;
  font-weight:500;
  font-size: clamp(20px, 5.4vw, 30px);
  padding: 14px 0;
  color:#fff;
}

.mobile-nav--cta .menu-btn-outline > a{
  background:#fff;
  color: var(--accent);
  border: 2px solid #fff;
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  width: min(360px, 100%);
  padding: 0 18px;
}

.mobile-nav--cta .menu-btn-outline > a:hover{
  background: rgba(255,255,255,0.92);
}

body.lc-no-scroll{ overflow:hidden; }

html, body{
  width: 100%;
  overflow-x: hidden;
}

.site-header--overlay{
  left: 0;
  right: 0;
  width: 100%;
}

[class*="__inner"], .container, .wrap{
  max-width: 100%;
}

/* =====================================================
   MOBILE HEADER: force-hide desktop menus + premium drawer animation
   (PUT THIS AT THE VERY END OF style.css)
===================================================== */

@media (max-width: 960px){
  /* IMPORTANT: override more specific rules below in file */
  .site-header--overlay .header__navMain,
  .site-header--overlay .header__navCta,
  .site-header--light .header__navMain,
  .site-header--light .header__navCta{
    display: none !important;
  }

  /* symmetric padding to avoid "left offset" feeling */
  .site-header--overlay .header__bar,
  .site-header--light .header__bar{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* burger always visible on mobile */
  .site-header .header__burger{
    display: inline-flex !important;
  }
}

/* Drawer base */
.mobile-drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s cubic-bezier(.2,.8,.2,1), visibility .28s cubic-bezier(.2,.8,.2,1);
}

/* Backdrop */
.mobile-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
}

/* Panel (the orange layer) */
.mobile-drawer__panel{
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translate3d(0, 10px, 0) scale(0.985);
  opacity: 0;
  transition:
    transform .34s cubic-bezier(.2,.9,.2,1),
    opacity .28s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

/* Open state */
.mobile-drawer.is-open{
  opacity: 1;
  visibility: visible;
}
.mobile-drawer.is-open .mobile-drawer__panel{
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

/* Staggered menu items (expensive feel) */
.mobile-drawer .mobile-nav > li{
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    transform .42s cubic-bezier(.2,.9,.2,1),
    opacity .32s cubic-bezier(.2,.8,.2,1);
}
.mobile-drawer.is-open .mobile-nav > li{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mobile-drawer.is-open .mobile-nav > li:nth-child(1){ transition-delay: 40ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(2){ transition-delay: 70ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(3){ transition-delay: 100ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(4){ transition-delay: 130ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(5){ transition-delay: 160ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(6){ transition-delay: 190ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(7){ transition-delay: 220ms; }
.mobile-drawer.is-open .mobile-nav > li:nth-child(8){ transition-delay: 250ms; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .mobile-drawer,
  .mobile-drawer__panel,
  .mobile-drawer .mobile-nav > li{
    transition: none !important;
  }
}

.custom-order__gallery,
.our-projects__gallery{
  cursor: grab;
}
.custom-order__gallery.is-grabbing,
.our-projects__gallery.is-grabbing{
  cursor: grabbing;
}

/* =====================================================
   404 page
===================================================== */
.lc-404{
  padding: 80px 0 110px;
  background:
    radial-gradient(1200px 500px at 70% 10%, rgba(242,140,0,0.18), rgba(242,140,0,0) 60%),
    radial-gradient(900px 420px at 20% 80%, rgba(0,0,0,0.06), rgba(0,0,0,0) 55%),
    #fff;
}

.lc-404__inner{
  display:flex;
  justify-content:center;
}

.lc-404__card{
  width: min(760px, 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  padding: 36px 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
}

.lc-404__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .08em;
  background: rgba(242,140,0,0.14);
  color: #000;
}

.lc-404__title{
  margin: 14px 0 10px;
  font-size: clamp(30px, 5.2vw, 46px);
  line-height: 1.05;
}

.lc-404__text{
  margin: 0 0 18px;
  font-size: 18px;
  color: rgba(0,0,0,0.68);
  max-width: 54ch;
}

.lc-404__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.lc-404__btnGhost{
  background: transparent;
  border: 1px solid rgba(0,0,0,0.14);
  color: #000;
}

.lc-404__btnGhost:hover{
  border-color: rgba(0,0,0,0.24);
}

.lc-404__search{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 10px;
}

@media (max-width: 560px){
  .lc-404{ padding: 60px 0 90px; }
  .lc-404__card{ padding: 28px 18px; }
  .lc-404__search{ flex-direction: column; align-items: stretch; }
}

/* Breadcrumbs */
/* Breadcrumbs: safe inner padding on small screens */
/* Breadcrumbs */
.lc-bc{
  margin: 14px 0 18px;
}

.lc-bc__list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
  font-size: 14px;
  color: rgba(0,0,0,0.62);
}

.lc-bc__link{
  color: rgba(0,0,0,0.78);
  text-decoration:none;
}

.lc-bc__link:hover{ text-decoration:underline; }
.lc-bc__sep{ margin-left: 8px; opacity: .5; }
.lc-bc__current{ color: rgba(0,0,0,0.9); }

@media (max-width: 560px){
  .lc-bc__list{ font-size: 13px; }
}

/* ==============================
   Taxonomy index pages (safe, theme-aligned)
   ============================== */

   .taxonomy-index-archive__breadcrumbs{
    margin-bottom: 8px;
  }
  .taxonomy-index-archive__breadcrumbs .container{
    padding: 0 !important;
    max-width: none;
  }
  
  .taxonomy-index-archive__head{
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d9e7ef;
  }
  
  .taxonomy-index-archive__title{
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  
  .products-grid.taxonomy-index-grid{
    gap: 12px;
    align-items: stretch;
  }
  
  a.product-card.taxonomy-index-card{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    will-change: transform;
    min-height: auto;
  }
  
  a.product-card.taxonomy-index-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
  }
  
  .taxonomy-index-card__imgwrap{
    min-height: 0 !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .taxonomy-index-card__imgwrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
  }
  a.product-card.taxonomy-index-card:hover .taxonomy-index-card__imgwrap img{
    transform: scale(1.02);
  }
  
  .taxonomy-index-card .product-card__meta,
  .taxonomy-index-card__meta{
    display: grid;
    gap: 8px;
    padding: 10px 12px !important;
  }
  
  .taxonomy-index-card__row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }
  
  .taxonomy-index-card .product-card__title{
    font-size: 16px;
    line-height: 1.15;
  }
  
  .taxonomy-index-card__count{
    flex: 0 0 auto;
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9e7ef;
    background: #fff;
    font-weight: 700;
    font-size: 11px;
    color: rgba(0,0,0,.65);
  }
  
  .taxonomy-index-card__desc{
    font-size: 13px;
    line-height: 1.35;
    margin-top: 2px;
    color: rgba(0,0,0,.62);
  }

  .taxonomy-index-card__brand{
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    color: rgba(0,0,0,.72);
  }
  
  .taxonomy-index-card .product-card__link{
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.2;
  }
  
  /* SEO text on selected taxonomy term page only */
  .taxonomy-seo-text{
    margin: 16px 0 20px;
    border: 1px solid #e7eef3;
    background: #fff;
  }
  .taxonomy-seo-text__inner{
    padding: 16px;
    color: rgba(0,0,0,.78);
    line-height: 1.6;
    font-size: 15px;
  }
  .taxonomy-seo-text__inner > *:first-child{ margin-top: 0; }
  .taxonomy-seo-text__inner > *:last-child{ margin-bottom: 0; }
  .taxonomy-seo-text__inner p{ margin: 0 0 .8em; }
  .taxonomy-seo-text__inner h2,
  .taxonomy-seo-text__inner h3{
    margin: 1em 0 .5em;
    line-height: 1.2;
  }
  .taxonomy-seo-text__inner ul,
  .taxonomy-seo-text__inner ol{ margin: 0 0 .8em 1.2em; }
  
  @media (max-width: 640px){
    .products-grid.taxonomy-index-grid{ gap: 10px; }
    .taxonomy-index-card .product-card__meta,
    .taxonomy-index-card__meta{ padding: 10px !important; }
  }

  /* ===================================
   Taxonomy index cards: compact, theme-native hover
   =================================== */

.products-archive.taxonomy-index-archive .products-grid.taxonomy-index-grid{
  gap: 12px;
}

.products-archive.taxonomy-index-archive .product-card.taxonomy-index-card{
  min-height: 300px; /* меньше стандартных 360 */
}

.products-archive.taxonomy-index-archive .taxonomy-index-card__imgwrap{
  min-height: 180px;
  padding: 14px;
}

.products-archive.taxonomy-index-archive .taxonomy-index-card__bar{
  min-height: 96px; /* компактнее стандартного bar */
  padding: 12px 14px 12px;
  gap: 8px;
}

/* описание внутри нижней плашки */
.products-archive.taxonomy-index-archive .taxonomy-index-card__desc{
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  opacity: .95;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.products-archive.taxonomy-index-archive .taxonomy-index-card__desc--empty{
  min-height: 0;
  display: none;
}

/* чуть компактнее title */
.products-archive.taxonomy-index-archive .product-card.taxonomy-index-card .product-card__title{
  font-size: 15px;
}

/* на мобилке ещё компактнее */
@media (max-width: 560px){
  .products-archive.taxonomy-index-archive .taxonomy-index-card__imgwrap{
    min-height: 150px;
    padding: 12px;
  }

  .products-archive.taxonomy-index-archive .taxonomy-index-card__bar{
    padding: 10px 12px;
    min-height: 88px;
  }
}


/* =========================
   Visible H1/H2 page headings
   ========================= */
.archive-head{
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.archive-head__title{
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.archive-head__subtitle{
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(0,0,0,.62);
}

.archive-head__meta{
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(0,0,0,.72);
}

/* Taxonomy index subtitle */
.taxonomy-index-archive__subtitle{
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(0,0,0,.62);
}

/* Home hero subtitle */
.hero__subtitle{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}

/* 404 subtitle */
.lc-404__subtitle{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0,0,0,.65);
}

@media (max-width: 640px){
  .archive-head__subtitle,
  .archive-head__meta,
  .taxonomy-index-archive__subtitle,
  .lc-404__subtitle{
    font-size: 14px;
  }
  .hero__subtitle{
    font-size: 14px;
  }
}

/* ==============================
   Home SEO content (editor output)
   Placed before footer
   ============================== */
.home-seo{ padding: 34px 0 90px; }
.home-seo__inner{ padding: 0 var(--padding); }

.home-seo__card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
}

/* readable text width + centered block */
.home-seo__card > *{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* Force left align for headings that Gutenberg may center */
.home-seo__card .has-text-align-center{ text-align: left !important; }
.home-seo__card h1,
.home-seo__card h2,
.home-seo__card h3{ text-align: left; }

/* Gutenberg typography inside */
.home-seo__card h1{
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.home-seo__card h2{
  margin: 34px 0 14px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.home-seo__card p{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0,0,0,.82);
}
.home-seo__card p:last-child{ margin-bottom: 0; }

.home-seo__card ul,
.home-seo__card ol{
  margin: 0 0 16px 1.2em;
  padding: 0;
}
.home-seo__card li{ margin: 0 0 8px; }

.home-seo__card a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px){
  .home-seo__inner{ padding: 0 24px; }
  .home-seo__card{ padding: 22px 20px; border-radius: var(--radius-sm); }
  .home-seo__card h1{ font-size: 40px; }
  .home-seo__card h2{ font-size: 26px; }
}
@media (max-width: 520px){
  .home-seo{ padding: 26px 0 70px; }
  .home-seo__inner{ padding: 0 16px; }
  .home-seo__card h1{ font-size: 32px; }
  .home-seo__card h2{ font-size: 22px; }
}

/* Home SEO: fix Gutenberg headings alignment */
.home-seo__card .wp-block-heading{
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* extra safety for the specific heading */
.home-seo__card #h-kitchen-lighting{
  text-align: left !important;
}
.our-projects{
  padding: 56px 0 80px;
}

.our-projects__inner{
  padding: 0 var(--padding);
}

.our-projects__title{
  font-size: 34px;
  margin-bottom: 26px;
}

.our-projects__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.our-projects__card{
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 360px;
  border: 1px solid #d9eef6;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.our-projects__imgwrap{
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  min-height: 260px;
}

.our-projects__img{
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.our-projects__bar{
  background: #d9eef6;
  color: #4a8da6;
  padding: 16px 18px 14px;
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  transition: background-color .15s ease, color .15s ease;
}

.our-projects__name{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.our-projects__card:hover .our-projects__bar,
.our-projects__card:focus-visible .our-projects__bar{
  background: #000;
  color: #fff;
}

.our-projects__card:hover,
.our-projects__card:focus-visible{
  border-color: #b9dbe7;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.our-projects__cta{
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 1100px){
  .our-projects__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .our-projects__inner{ padding: 0 20px; }
  .our-projects__grid{ grid-template-columns: 1fr; gap: 16px; }
}

/* ==============================
   Widescreen containment
   Keep content centered on large displays
   ============================== */
@media (min-width: 1600px){
  .site-header--overlay .header__bar,
  .site-header--light .header__bar,
  .site-footer__inner,
  .hero__content,
  .custom-order__inner,
  .light-types > .container,
  .popular-products__inner,
  .our-projects__inner,
  .home-blog__inner,
  .delivery__inner,
  .home-seo__inner,
  .products-archive .container,
  .product-single .container,
  .page-text .container,
  .taxonomy-index-archive__breadcrumbs .container,
  .taxonomy-index-archive__head,
  .archive-head{
    width: min(var(--container), calc(100% - (var(--padding) * 2)));
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
  }

  .site-header--overlay .header__bar,
  .site-header--light .header__bar,
  .custom-order__inner,
  .light-types > .container,
  .popular-products__inner,
  .our-projects__inner,
  .home-blog__inner,
  .delivery__inner,
  .home-seo__inner,
  .products-archive .container,
  .product-single .container,
  .page-text .container,
  .taxonomy-index-archive__breadcrumbs .container{
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__inner{
    padding-left: 0;
    padding-right: 0;
  }

  .archive-head,
  .taxonomy-index-archive__head{
    width: min(var(--container), calc(100% - (var(--padding) * 2)));
    margin-left: 0px;
  }

  .hero__content{
    padding-left: 0px;
  }
}
