:root {
  --black: #111;
  --bar: #141414;
  --bar-2: #1c1c1c;
  --white: #fff;
  --gray: #f4f4f4;
  --muted: #666;
  --border: #ddd;
  --cyan: #00bcd4;
  --cyan-dark: #0097a7;
  --cyan-soft: rgba(0, 188, 212, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; width: 100%; font-family: var(--font); color: var(--card-text, var(--black)); background: var(--page-bg, var(--white)); }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-wrap { width: 100%; max-width: none; }
.container { width: min(1200px, 94vw); margin: 0 auto; }
.site-header__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

/* Header */
.site-header { width: 100%; color: var(--white); position: sticky; top: 0; z-index: 100; }
.site-header__top { width: 100%; background: var(--bar); border-bottom: 1px solid #2a2a2a; }
.site-header__top-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
}
.site-logo img { height: 48px; width: auto; max-width: 200px; object-fit: contain; }
.site-search { display: flex; gap: 0; max-width: 520px; width: 100%; margin: 0 auto; }
.site-search__input {
  flex: 1; border: 1px solid #333; border-right: 0; padding: 0.55rem 0.75rem;
  background: #0f0f0f; color: var(--white); border-radius: 4px 0 0 4px;
}
.site-search__btn {
  border: 1px solid var(--white); background: var(--white); color: var(--black);
  padding: 0.55rem 1rem; font-weight: 600; cursor: pointer; border-radius: 0 4px 4px 0;
}
.site-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--white);
  text-align: right;
  padding: 0.35rem 0.65rem;
  border: 1px solid #444;
  border-radius: 6px;
}
.site-cart:hover { border-color: var(--cyan); }
.site-cart__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.site-cart__icon svg {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
}
.site-cart__text { display: flex; flex-direction: column; line-height: 1.25; }
.site-cart__label { display: block; font-weight: 700; font-size: 0.85rem; }
.site-cart__count { font-size: 0.75rem; opacity: 0.85; }

.site-header__bottom {
  width: 100%;
  background: var(--cyan);
  border-top: 2px solid var(--cyan-dark);
}
.site-header__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem; padding: 0.5rem 0;
}
.site-categories {
  flex: 1;
  min-width: 0;
}
.site-categories__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-categories__item {
  position: relative;
  flex-shrink: 0;
}
.site-categories__btn {
  display: inline-block;
  background: var(--category-btn, var(--black));
  color: var(--category-btn-text, var(--white));
  border: 0;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-categories__btn:hover,
.site-categories__btn[aria-expanded="true"] {
  background: var(--category-btn-hover, var(--bar));
}
.site-categories__btn--toggle::after {
  content: " ▾";
  font-size: 0.75em;
  opacity: 0.85;
}
.site-categories__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 200px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 60;
  max-height: 60vh;
  overflow: auto;
}
.site-categories__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}
.site-categories__list a {
  display: block;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  font-weight: 500;
}
.site-categories__list a:hover {
  background: var(--cyan-soft);
  color: var(--cyan-dark);
}
.site-categories__all {
  font-weight: 700 !important;
  border-bottom: 1px solid var(--border);
}

.subcategory-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.25rem;
}
.subcategory-chips__link {
  display: inline-block; padding: 0.35rem 0.75rem;
  border: 1px solid var(--cyan); border-radius: 999px;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  color: var(--cyan-dark);
}
.subcategory-chips__link:hover {
  background: var(--cyan); color: var(--black); border-color: var(--cyan-dark);
}
.category-breadcrumb { margin: 0 0 0.5rem; font-size: 0.9rem; color: inherit; }
.category-breadcrumb a { color: var(--cyan-dark); font-weight: 600; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; margin-left: auto; }
.site-nav__link {
  color: var(--nav-link, var(--black));
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav__link:hover,
.site-nav__link.is-active { border-bottom-color: var(--nav-link, var(--black)); }

.site-main { min-height: 50vh; padding-bottom: 2rem; }

/* Hero */
.hero-slider { position: relative; background: #000; overflow: hidden; }
.hero-slider__track { display: flex; transition: transform 0.45s ease; }
.hero-slider__slide { flex: 0 0 100%; min-width: 100%; }
.hero-slider__slide img { width: 100%; max-height: 420px; object-fit: cover; }
.hero-slider__prev, .hero-slider__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9); border: 0; width: 40px; height: 40px;
  font-size: 1.5rem; cursor: pointer; border-radius: 50%; color: var(--black);
}
.hero-slider__prev { left: 0.75rem; }
.hero-slider__next { right: 0.75rem; }

.home-tagline { padding: 2rem 0; text-align: center; font-size: 1.15rem; }

.section { padding: 2rem 0 0; }
.section__title {
  font-size: 1.35rem; margin: 0 0 1.25rem; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 2px solid var(--cyan); padding-bottom: 0.35rem;
  color: inherit;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
}
.section__head .section__title {
  margin-bottom: 0;
  flex: 1 1 auto;
}
.section__more {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--cyan-dark);
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 0.1rem;
}
.section__more:hover { color: var(--card-text, var(--black)); border-bottom-color: var(--card-text, var(--black)); }

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.home-blog-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--card-text, var(--black));
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.home-blog-tile:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 188, 212, 0.2);
}
.home-blog-tile__img {
  display: block;
  aspect-ratio: 4 / 3;
  background: #e8e8e8;
  overflow: hidden;
}
.home-blog-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-blog-tile__title {
  display: block;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
  color: var(--card-text, var(--black));
}

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem;
}

.product-carousel {
  position: relative;
  padding: 0 2.75rem;
}
.product-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-carousel__viewport::-webkit-scrollbar { display: none; }
.product-carousel__track {
  display: flex;
  gap: 1.25rem;
  padding: 0.15rem 0;
}
.product-carousel__slide {
  flex: 0 0 200px;
  width: 200px;
  max-width: 200px;
}
.product-carousel__slide .product-card { height: 100%; }
.product-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-carousel__arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan-dark);
  color: var(--black);
}
.product-carousel__arrow--prev { left: 0; }
.product-carousel__arrow--next { right: 0; }
.product-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 520px) {
  .product-carousel { padding: 0 2.25rem; }
  .product-carousel__arrow { width: 2rem; height: 2rem; font-size: 1.15rem; }
}
.product-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--white);
  display: flex; flex-direction: column;
}
.product-card__img {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray);
}
.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-card__body { padding: 0.85rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.product-card__title { margin: 0; font-size: 0.95rem; color: var(--card-text, var(--black)); }
.product-card__title a { text-decoration: none; color: inherit; }
.product-card__price { margin: 0; font-weight: 700; color: inherit; }
.product-card__btn {
  margin-top: auto; display: inline-block; text-align: center; padding: 0.45rem 0.75rem;
  border: 1px solid var(--black); text-decoration: none; font-weight: 600; font-size: 0.85rem;
  border-radius: 4px;
}
.product-card__btn:hover {
  background: var(--cyan);
  border-color: var(--cyan-dark);
  color: var(--black);
}

.page-inner { padding: 2rem 0; color: inherit; }
.page-title {
  margin: 0 0 1rem; font-size: 1.75rem;
  border-bottom: 2px solid var(--cyan); padding-bottom: 0.35rem;
  color: inherit;
}
.muted { color: inherit; opacity: 0.65; }

.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .product-detail__grid { grid-template-columns: 1fr; } }
.product-detail__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--gray);
}
.product-detail__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-gallery {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}
.product-gallery__main {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}
.product-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}
.product-gallery__thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}
.product-gallery__thumb.is-active {
  border-color: var(--cyan-dark);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
}
.product-badge--sold-out {
  background: #1d2327;
  color: #fff;
}
.product-card--out-of-stock .product-card__img img {
  opacity: 0.88;
}
.product-detail__stock--out {
  padding: 0.65rem 0.85rem;
  background: var(--cyan-soft);
  border-left: 3px solid var(--cyan-dark);
  font-weight: 600;
  color: inherit;
}
.product-detail { color: inherit; }
.product-detail__info h1,
.product-detail__price,
.product-detail__desc,
.product-detail__stock,
.quote-add-form label {
  color: inherit;
}
.product-detail__price { font-size: 1.25rem; font-weight: 700; }
.product-detail__cat a { color: inherit; opacity: 0.7; }
.quote-add-form label { display: block; margin-bottom: 0.75rem; font-weight: 500; }
.quote-add-form input { width: 100%; max-width: 280px; padding: 0.45rem; border: 1px solid var(--border); }

.btn, .btn-primary {
  display: inline-block; padding: 0.55rem 1.1rem; border: 1px solid var(--black);
  background: var(--black); color: var(--white); font-weight: 600; cursor: pointer;
  text-decoration: none; font-size: 0.95rem; border-radius: 4px;
}
.btn-primary:hover, .btn:hover { opacity: 0.9; }
.btn-link { background: none; border: 0; color: var(--card-text, var(--black)); text-decoration: underline; cursor: pointer; padding: 0; }

.alert { padding: 0.75rem 1rem; border-radius: 6px; margin-bottom: 1rem; }
.alert-ok { background: #eee; border: 1px solid var(--black); }
.alert-err { background: #fff; border: 1px solid #c00; color: #900; }

.form-stack label { display: block; margin-bottom: 0.85rem; font-weight: 500; }
.form-stack input, .form-stack textarea {
  display: block; width: 100%; max-width: 480px; margin-top: 0.25rem; padding: 0.5rem;
  border: 1px solid var(--border); font: inherit;
}

.cms-content { color: inherit; }
.cms-content .cms-body { line-height: 1.65; max-width: 72ch; color: inherit; }
.cms-content .cms-body h2, .cms-content .cms-body h3, .cms-content .cms-body h4 {
  margin-top: 1.5rem; margin-bottom: 0.65rem; line-height: 1.25;
  color: inherit;
}
.cms-content .cms-body p { margin: 0 0 1rem; color: inherit; }
.cms-content .cms-body ul, .cms-content .cms-body ol { margin: 0 0 1rem; padding-left: 1.35rem; color: inherit; }
.cms-content .cms-body li { margin-bottom: 0.35rem; color: inherit; }
.cms-content .cms-body img {
  max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0;
}
.cms-content .cms-body a { color: var(--cyan-dark); font-weight: 600; }
.cms-content .cms-body blockquote {
  margin: 1rem 0; padding: 0.75rem 1rem; border-left: 4px solid var(--cyan);
  background: var(--cyan-soft); color: inherit;
}
.cms-content > p a,
.page-inner > p a {
  color: inherit;
  text-decoration: underline;
}
.blog-date { color: inherit; opacity: 0.75; font-size: 0.9rem; }
.cms-content .cms-body table {
  width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem;
}
.cms-content .cms-body th, .cms-content .cms-body td {
  border: 1px solid var(--border); padding: 0.5rem 0.65rem; text-align: left;
}
.cms-content .cms-body th { background: var(--gray); }
.cms-content .cms-body hr { border: 0; border-top: 2px solid var(--cyan); margin: 1.5rem 0; }

.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.25rem; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
@media (max-width: 640px) { .blog-card { grid-template-columns: 1fr; } }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; }
.blog-card__body { padding: 1rem; color: var(--card-text, var(--black)); }
.blog-card__body p { color: inherit; }
.blog-card__body h2,
.blog-card__body h2 a { color: inherit; text-decoration: none; }
.blog-card__more { font-weight: 600; color: var(--card-text, var(--black)); }
.blog-hero img { border-radius: 8px; }

/* Nuestro Trabajo — Somos */
.pedidos-section { padding-top: 2.5rem; }
.pedidos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .pedidos-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.15rem; }
}
.pedidos-grid__item {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.pedidos-grid__item:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.18);
  transform: translateY(-2px);
}
.pedidos-grid__thumb {
  display: block;
  aspect-ratio: 1;
  background: var(--gray);
  overflow: hidden;
}
.pedidos-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pedidos-grid__name {
  display: block;
  padding: 0.55rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

body.pedidos-stories-open { overflow: hidden; }
.pedidos-stories {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pedidos-stories[hidden] { display: none !important; }
.pedidos-stories__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.pedidos-stories__progress {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  gap: 4px;
}
.pedidos-stories__seg {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  overflow: hidden;
}
.pedidos-stories__seg-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--white);
  border-radius: 2px;
}
.pedidos-stories__close {
  position: absolute;
  top: 1.35rem;
  right: 0.85rem;
  z-index: 4;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.pedidos-stories__close:hover { background: rgba(255, 255, 255, 0.28); }
.pedidos-stories__tap {
  position: absolute;
  top: 4rem;
  bottom: 0;
  z-index: 2;
  width: 28%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.pedidos-stories__tap--prev { left: 0; }
.pedidos-stories__tap--next { right: 0; }
.pedidos-stories__frame {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  max-height: min(88vh, 780px);
  margin-top: 1.5rem;
}
.pedidos-stories__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.pedidos-stories__img {
  display: block;
  width: 100%;
  max-height: min(72vh, 640px);
  object-fit: contain;
  background: #000;
}
.pedidos-stories__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--white);
}
.pedidos-stories__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.pedidos-stories__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.92;
  white-space: pre-wrap;
}

.contact-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .contact-page__grid { grid-template-columns: 1fr; } }
.social-icons {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.social-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.social-icons__link:hover {
  background: var(--cyan);
  border-color: var(--cyan-dark);
  color: var(--black);
  transform: translateY(-2px);
}
.social-icons__link:focus-visible {
  outline: 2px solid var(--cyan-dark);
  outline-offset: 2px;
}
.social-icon__svg { display: block; }
.social-icons--footer .social-icons__link {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.social-icons--footer .social-icons__link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
}
.contact-social { margin-top: 0.75rem; }

.quote-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.quote-table th, .quote-table td { border: 1px solid var(--border); padding: 0.5rem 0.65rem; text-align: left; }
.quote-table th { background: var(--gray); }
.quote-submit { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--cyan); }
.inline-form { display: inline; }

/* Footer */
/* WebHk · HKProyect — Footer del sitio */
.site-footer {
  background: var(--bar); color: var(--white); margin-top: 2rem; padding-top: 2rem;
  border-top: 3px solid var(--cyan);
}
.site-footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;
  padding-bottom: 1.5rem;
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--cyan); }
.site-footer__links { display: flex; flex-direction: column; gap: 0.35rem; }
.site-footer__map iframe { width: 100%; height: 180px; border: 0; }
.site-footer__copy {
  border-top: 1px solid #333;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  opacity: 0.92;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.site-footer__webhk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}
.site-footer__webhk-tag {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-weight: 700;
}

.wsp-widget-root {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  font-family: var(--font);
}

.wsp-widget {
  position: absolute;
  right: 0;
  bottom: calc(58px + 0.85rem);
  width: min(340px, calc(100vw - 2rem));
  max-height: min(480px, calc(100vh - 7rem));
  display: flex;
  flex-direction: column;
  background: #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  border: 1px solid #d4d4d4;
  animation: wsp-widget-in 0.22s ease;
}

.wsp-widget[hidden] {
  display: none !important;
}

@keyframes wsp-widget-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wsp-widget__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #075e54;
  color: #fff;
}

.wsp-widget__header-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.wsp-widget__header-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.wsp-widget__status {
  font-size: 0.75rem;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wsp-widget__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
}

.wsp-widget__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.wsp-widget__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.wsp-widget__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  background: #e5ddd5;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 50%);
}

.wsp-widget__bubble {
  max-width: 92%;
  padding: 0.55rem 0.75rem;
  border-radius: 8px 8px 8px 2px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wsp-widget__bubble--in {
  align-self: flex-start;
  background: #fff;
  color: #111;
}

.wsp-widget__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
}

.wsp-widget__input {
  width: 100%;
  resize: vertical;
  min-height: 72px;
  padding: 0.55rem 0.65rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  background: #fff;
}

.wsp-widget__input:focus {
  outline: 2px solid #25d366;
  outline-offset: 1px;
}

.wsp-widget__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.wsp-widget__send:hover {
  background: #20bd5a;
}

.wsp-float {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wsp-float:hover {
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.wsp-float:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.wsp-float img,
.wsp-float__svg {
  display: block;
  pointer-events: none;
}

@media (max-width: 480px) {
  .wsp-widget-root {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .wsp-widget {
    right: 0;
    width: min(340px, calc(100vw - 1.5rem));
  }
}

@media (max-width: 768px) {
  .site-header__top-inner { grid-template-columns: 1fr; }
  .site-search { max-width: none; order: 3; grid-column: 1 / -1; }
  .site-cart { text-align: left; }
  .site-nav { margin-left: 0; width: 100%; }
  .site-categories { width: 100%; }
  .site-categories__bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
  }
}
