/* Shared editorial motion system. It activates only after JavaScript is ready. */
.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: #f10e00;
  box-shadow: 0 0 14px rgba(241, 14, 0, .45);
}

.whatsapp-contact {
  position: fixed;
  z-index: 110;
  right: 26px;
  bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 18px 9px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .26);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.96);
  transition: opacity .35s ease, background .3s ease, box-shadow .3s ease, transform .4s cubic-bezier(.2, .75, .2, 1);
}

.whatsapp-contact.is-active { opacity: 1; pointer-events: auto; transform: none; }
.whatsapp-contact.is-contact-hidden { opacity: 0; pointer-events: none; transform: translateY(18px); }

.whatsapp-contact:hover,
.whatsapp-contact:focus-visible {
  background: #f10e00;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
  transform: translateY(-4px);
}

.whatsapp-contact:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #f10e00;
}

.whatsapp-icon svg { width: 27px; height: 27px; fill: #fff; }
.whatsapp-copy { display: grid; gap: 2px; }
.whatsapp-copy small { color: rgba(255, 255, 255, .78); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.whatsapp-copy strong { color: #fff; font-size: 14px; font-weight: 700; white-space: nowrap; }

.contact-details { gap: 0 !important; }
.contact-details li { padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .24); }
.contact-details li:first-child { padding-top: 0; }
.contact-details li:last-child { border-bottom: 0; }
.contact-details li > span { margin-bottom: 8px; }
.contact-detail-link { display: inline-flex; align-items: flex-start; gap: 12px; text-decoration: none; }
.contact-detail-link svg { width: 22px; height: 22px; margin-top: 1px; fill: #fff; flex: 0 0 22px; }
.contact-detail-link strong { color: #fff; font-size: 18px; font-weight: 600; line-height: 1.45; }
a.contact-detail-link:hover strong { text-decoration: underline; text-underline-offset: 5px; }

.motion-ready [data-motion] {
  opacity: 0;
  transition-duration: .9s;
  transition-delay: var(--motion-delay, 0ms);
  transition-property: opacity, transform, clip-path, filter;
  transition-timing-function: cubic-bezier(.2, .75, .2, 1);
  will-change: opacity, transform;
}

.motion-ready [data-motion="title"] {
  transform: translateY(44px);
  clip-path: inset(0 0 35% 0);
}

.motion-ready [data-motion="text"] { transform: translateY(28px); }
.motion-ready [data-motion="card"] { transform: translateY(52px) scale(.985); }

.motion-ready [data-motion="image"] {
  transform: translateY(24px) scale(1.025);
  clip-path: inset(0 0 18% 0);
  filter: saturate(.82) contrast(.96);
}

.motion-ready [data-motion="line"] {
  transform: scaleX(0);
  transform-origin: left center;
}

.motion-ready [data-motion].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  filter: none;
}

.motion-ready .site-header,
.motion-ready .legal-header {
  animation: motionHeader .85s cubic-bezier(.2, .75, .2, 1) both;
}

.motion-ready .page-hero,
.motion-ready .sub-hero,
.motion-ready .door-hero,
.motion-ready .shade-hero,
.motion-ready .legal-hero {
  animation: motionHero 1.15s cubic-bezier(.2, .75, .2, 1) both;
}

/* Product-card accent inspired by the original WordPress interaction. */
.product-card strong::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  margin-top: 14px;
  background: #f10e00;
  box-shadow: 0 0 12px rgba(241, 14, 0, .3);
  transition: width .5s cubic-bezier(.2, .75, .2, 1);
}

.product-card b {
  transition: color .35s ease, transform .45s cubic-bezier(.2, .75, .2, 1);
}

.product-card:hover strong::after,
.product-card:focus-visible strong::after {
  width: 78px;
}

.product-card:hover b,
.product-card:focus-visible b {
  color: #f10e00;
  transform: translateX(8px);
}

.product-card:focus-visible {
  outline: 2px solid #f10e00;
  outline-offset: 5px;
}

@keyframes motionHeader {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: none; }
}

@keyframes motionHero {
  from { opacity: .55; filter: saturate(.65); transform: scale(1.025); }
  to { opacity: 1; filter: none; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .motion-ready [data-motion],
  .motion-ready [data-motion].is-visible {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
    transition: none;
  }
  .motion-ready .site-header,
  .motion-ready .legal-header,
  .motion-ready .page-hero,
  .motion-ready .sub-hero,
  .motion-ready .door-hero,
  .motion-ready .shade-hero,
  .motion-ready .legal-hero { animation: none; }
}

@media (max-width: 580px) {
  .whatsapp-contact { right: 14px; bottom: 14px; min-height: 54px; padding: 7px 14px 7px 8px; }
  .whatsapp-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .whatsapp-copy strong { font-size: 13px; }
}

/* Navigation typography and branded mobile contact panel. */
.site-header .nav > a { font-size: 15px; letter-spacing: .2px; }
.nav-mobile-contact { display: none; }

@media (max-width: 980px) {
  .site-header .nav {
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    padding: 22px 24px 28px;
    text-align: center;
  }
  .site-header .nav > a {
    width: min(100%, 340px);
    margin-inline: auto;
    padding: 13px 8px;
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: .5px;
  }
  .nav-mobile-contact {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: min(100%, 340px);
    margin: 19px auto 0;
    padding-top: 20px;
    border-top: 2px solid #f10e00;
  }
  .nav-mobile-contact > span {
    color: rgba(255,255,255,.58);
    font: 700 10px/1 'Fira Sans Extra Condensed', sans-serif;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }
  .site-header .nav .nav-phone {
    padding: 0;
    border: 0;
    color: #fff;
    font: 700 21px/1.2 'Fira Sans Extra Condensed', sans-serif;
    letter-spacing: .7px;
  }
  .site-header .nav .nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    margin-top: 4px;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: #f10e00;
    color: #fff;
    font: 700 15px/1 'Fira Sans Extra Condensed', sans-serif;
    letter-spacing: .7px;
    text-transform: uppercase;
  }
  .nav-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
  .nav-whatsapp:hover, .nav-whatsapp:focus-visible { background: #fff; color: #111; }
}
