/*
 * TogetherGY homepage and product catalog components.
 */
.tgy-hero {
  background:
    linear-gradient(180deg, #f8fbfb 0%, #edf3f3 100%);
  border-bottom: 1px solid var(--tgy-line)
}
.tgy-hero-inner {
  width: min(var(--tgy-max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 46px;
  padding: 50px 0 42px
}
.tgy-page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--tgy-ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0
}
.tgy-shop-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--tgy-ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0
}
.tgy-page-title h1 {
  margin: 0;
  max-width: 760px;
  color: var(--tgy-ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0
}
.tgy-hero-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--tgy-muted);
  font-size: 18px
}
.tgy-page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--tgy-muted);
  font-size: 18px
}
.tgy-shop-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--tgy-muted);
  font-size: 18px
}
.tgy-search-control input {
  width: 100%;
  min-width: 0;
  min-height: var(--tgy-touch-target);
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--tgy-ink);
  font: inherit;
  font-size: 16px
}
.tgy-search-control button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--tgy-green);
  color: var(--tgy-on-brand);
  padding: 0 22px;
  font-weight: 850;
  cursor: pointer
}
.tgy-search-control button:hover {
  background: var(--tgy-brand-dark)
}
.tgy-whatsapp-button:hover {
  background: #115e59;
  color: var(--tgy-on-brand)
}
.tgy-hero-carousel-track {
  display: grid
}
.tgy-hero-slide {
  grid-area: 1 / 1;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(0);
  transition:
    opacity 280ms var(--tgy-ease-standard),
    visibility 0s linear 280ms
}
.tgy-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s
}
.tgy-hero-carousel[data-slide-direction] .tgy-hero-slide.is-active {
  animation: tgy-hero-enter 280ms cubic-bezier(.22, .61, .36, 1) both;
}
.tgy-hero-carousel[data-slide-direction="backward"] {
  --tgy-hero-enter-offset: -24px;
}
.tgy-hero-carousel[data-slide-direction="forward"] {
  --tgy-hero-enter-offset: 24px;
}
@keyframes tgy-hero-enter {
  from { opacity: 0; transform: translateX(var(--tgy-hero-enter-offset, 24px)); }
  to { opacity: 1; transform: translateX(0); }
}
.tgy-hero-carousel-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  width: calc(var(--tgy-touch-target) * 5);
  align-items: center;
  justify-content: flex-start;
  gap: 0
}
.tgy-hero-carousel-dots [data-tgy-hero-dot] {
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition:
    background-color var(--tgy-motion-feedback) var(--tgy-ease-standard),
    box-shadow var(--tgy-motion-feedback) var(--tgy-ease-standard)
}
.tgy-hero-carousel-dots [data-tgy-hero-dot]:focus-visible {
  outline: var(--tgy-focus-width) solid var(--tgy-on-brand);
  outline-offset: -3px
}
.tgy-hero-carousel-toggle {
  display: inline-flex;
  width: var(--tgy-touch-target);
  height: var(--tgy-touch-target);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(17, 64, 70, 0.5);
  color: var(--tgy-on-brand);
  padding: 0;
  cursor: pointer;
  transition:
    background-color var(--tgy-motion-feedback) var(--tgy-ease-standard),
    border-color var(--tgy-motion-feedback) var(--tgy-ease-standard)
}
.tgy-hero-carousel-toggle:hover {
  border-color: var(--tgy-on-brand);
  background: rgba(17, 64, 70, 0.82)
}
.tgy-hero-carousel-toggle:focus-visible {
  border-color: var(--tgy-on-brand);
  background: rgba(17, 64, 70, 0.82);
  outline: var(--tgy-focus-width) solid var(--tgy-on-brand);
  outline-offset: 2px
}
.tgy-hero-carousel-toggle .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1
}

@media (min-width: 681px) {
  .tgy-hero-carousel-dots {
    width: auto;
    max-width: none;
    flex-wrap: nowrap;
    gap: 0
  }

  .tgy-hero-carousel-dots [data-tgy-hero-dot],
  .tgy-hero-carousel-dots [data-tgy-hero-dot].is-active {
    position: relative;
    width: var(--tgy-touch-target);
    height: var(--tgy-touch-target);
    background: transparent;
    box-shadow: none
  }

  .tgy-hero-carousel-dots [data-tgy-hero-dot]::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    content: "";
    transform: translate(-50%, -50%);
    transition:
      width var(--tgy-motion-feedback) var(--tgy-ease-standard),
      background-color var(--tgy-motion-feedback) var(--tgy-ease-standard),
      box-shadow var(--tgy-motion-feedback) var(--tgy-ease-standard)
  }

  .tgy-hero-carousel-dots [data-tgy-hero-dot].is-active::before {
    width: 18px;
    background: var(--tgy-canvas);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28)
  }

  .tgy-hero-carousel-dots [data-tgy-hero-dot]:focus-visible {
    outline-offset: -2px
  }
}
.tgy-display-card {
  display: grid;
  min-height: 180px;
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-canvas);
  padding: 18px;
  box-shadow: var(--tgy-shadow)
}
.tgy-feature-tag {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase
}
.tgy-hero-carousel .tgy-feature-tag {
  display: none
}
.tgy-product-stage-link {
  display: block;
  border-radius: 8px;
  color: inherit;
  text-decoration: none
}
.tgy-product-stage-link .tgy-product-stage {
  cursor: pointer
}
.tgy-product-stage-link:hover .tgy-product-stage {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 36px rgba(4, 14, 20, 0.16);
  transform: translateY(-2px)
}
.tgy-product-stage-link:focus-visible .tgy-product-stage {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 36px rgba(4, 14, 20, 0.16);
  transform: translateY(-2px)
}
.tgy-product-stage-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px
}
.tgy-feature-content {
  display: grid;
  gap: 8px
}
.tgy-feature-content > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase
}
.tgy-feature-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px
}
.tgy-feature-prices b {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase
}
.tgy-display-card.accent {
  background: #fff8ec
}
.tgy-display-card span {
  color: inherit;
  opacity: 0.78
}
.tgy-display-card small {
  color: inherit;
  opacity: 0.78
}
.tgy-display-card strong {
  margin-top: 5px;
  font-size: 22px;
  line-height: 1.1
}
.tgy-product-device {
  position: relative;
  z-index: 1;
  display: block;
  width: 76%;
  max-width: 260px;
  aspect-ratio: 1 / 1.15;
  margin: 0 auto 26px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #e9eef2, #9db4c0);
  box-shadow: 0 22px 42px rgba(9, 24, 33, 0.24)
}
.tgy-product-device::before {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  width: 58%;
  height: 18%;
  top: 14%;
  left: 21%
}
.tgy-product-device::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  width: 44%;
  height: 6%;
  bottom: 12%;
  left: 28%;
  background: rgba(23, 107, 92, 0.55)
}
.tgy-product-grid.catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}
.tone-green .tgy-product-image {
  background: var(--tgy-canvas)
}
.tone-green.tgy-product-gallery {
  background: var(--tgy-canvas)
}
.tone-blue .tgy-product-image {
  background: var(--tgy-canvas)
}
.tone-blue.tgy-product-gallery {
  background: var(--tgy-canvas)
}
.tone-gold .tgy-product-image {
  background: var(--tgy-canvas)
}
.tone-gold.tgy-product-gallery {
  background: var(--tgy-canvas)
}
.tone-slate .tgy-product-image {
  background: var(--tgy-canvas)
}
.tone-slate.tgy-product-gallery {
  background: var(--tgy-canvas)
}
.tgy-shipping-card p {
  color: var(--tgy-muted);
  font-size: 14px
}
.tgy-detail-panels p {
  color: var(--tgy-muted);
  font-size: 14px
}
.tgy-contact-grid span {
  color: var(--tgy-muted);
  font-size: 14px
}
.tgy-product-body p {
  color: var(--tgy-muted);
  font-size: 14px;
  min-height: 44px;
  margin: 0 0 14px
}
.tgy-product-meta {
  color: var(--tgy-muted);
  font-size: 14px;
  display: grid;
  gap: 4px;
  margin-bottom: 14px
}
.tgy-detail-rates small {
  color: var(--tgy-muted);
  font-size: 12px
}
.tgy-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--tgy-green);
  font-size: 14px;
  font-weight: 850
}
.tgy-shipping-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}
.tgy-detail-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}
.tgy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}
.tgy-detail-panels article {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-canvas);
  padding: 20px
}
.tgy-contact-grid article {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-canvas);
  padding: 20px
}
.tgy-shipping-card.sea {
  background: var(--tgy-green-soft)
}
.tgy-shipping-card.air {
  background: var(--tgy-gold-soft)
}
.tgy-shipping-card h2 {
  margin: 0 0 8px
}
.tgy-shipping-card h3 {
  margin: 0 0 8px
}
.tgy-step h3 {
  margin: 0 0 8px
}
.tgy-shipping-price {
  margin-top: 14px;
  color: var(--tgy-ink);
  font-size: 24px;
  font-weight: 900
}
.tgy-shipping-eta {
  color: var(--tgy-navy);
  font-weight: 900
}
.tgy-steps.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}
.tgy-step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--tgy-green);
  color: var(--tgy-on-brand);
  font-weight: 900
}
.tgy-step p {
  margin: 0;
  color: var(--tgy-muted);
  font-size: 14px
}
.tgy-page-hero {
  border-bottom: 1px solid var(--tgy-line);
  background: #eef4f4
}
.tgy-shop-hero {
  border-bottom: 1px solid var(--tgy-line);
  background: #eef4f4
}
.tgy-page-hero.compact .tgy-container {
  padding: 54px 0
}
.tgy-shop-hero-grid {
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 24px
}
.tgy-shop-filter-card {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  color: var(--tgy-muted);
  font-size: 13px;
  display: grid;
  gap: 6px;
  background: var(--tgy-canvas)
}
.tgy-shop-filter-card strong {
  color: var(--tgy-ink)
}
.tgy-catalog-sidebar a {
  display: flex;
  min-height: var(--tgy-touch-target);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--tgy-muted);
  font-size: 14px;
  font-weight: 700
}
.tgy-catalog-filter-chip small {
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--tgy-blue-soft);
  color: var(--tgy-muted);
  font-size: 12px;
  font-weight: 850
}
.tgy-catalog-sidebar a:hover {
  background: var(--tgy-blue-soft);
  color: var(--tgy-ink)
}
.tgy-gallery-note {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  color: var(--tgy-muted);
  font-size: 13px;
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.86)
}
.tgy-product-summary h1 {
  margin: 0;
  max-width: 760px;
  color: var(--tgy-ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  font-size: clamp(30px, 4vw, 46px)
}
.tgy-detail-rates {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0
}
.tgy-detail-rates article {
  display: grid;
  gap: 3px;
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-surface-soft);
  padding: 8px 9px;
  font-size: 12px;
  padding: 16px
}
.tgy-detail-rates strong {
  color: var(--tgy-ink);
  font-size: 15px;
  font-size: 25px
}
.home .tgy-hero {
  border-bottom-color: var(--tgy-border);
  background: var(--tgy-canvas)
}
.home .tgy-hero-inner {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: var(--tgy-space-10);
  padding: var(--tgy-space-10) 0 var(--tgy-space-8)
}
.home .tgy-hero--no-carousel .tgy-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0
}
.tgy-hero-copy h1 {
  margin: 0;
  color: var(--tgy-ink);
  max-width: 660px;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance
}
.tgy-hero-copy > p {
  max-width: 510px;
  margin-top: var(--tgy-space-4);
  color: var(--tgy-text-soft);
  font-size: 16px;
  line-height: 1.6
}
.tgy-product-search {
  max-width: 510px;
  margin-top: 26px;
  margin-top: var(--tgy-space-6)
}
.tgy-search-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 2px solid var(--tgy-green);
  border-radius: 8px;
  background: var(--tgy-canvas);
  padding: 6px 7px 6px 15px;
  box-shadow: 0 18px 38px var(--tgy-shadow-color-soft);
  min-height: 56px;
  border-width: 1px;
  border-color: var(--tgy-border-strong);
  box-shadow: none
}
.tgy-search-control > .dashicons {
  width: 20px;
  height: 20px;
  color: var(--tgy-text-soft);
  font-size: 20px;
  line-height: 1
}
.tgy-search-control:focus-within {
  border-color: var(--tgy-brand);
  box-shadow: 0 0 0 3px rgba(23, 107, 92, 0.12)
}
.tgy-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  gap: 10px;
  margin-top: 30px;
  display: flex;
  max-width: 640px;
  gap: 0;
  margin-top: var(--tgy-space-6);
  border-top: 1px solid var(--tgy-border);
  border-bottom: 1px solid var(--tgy-border)
}
.tgy-hero-proof span {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  color: var(--tgy-muted);
  font-size: 13px;
  min-width: 0;
  flex: 1 1 0;
  border: 0;
  border-right: 1px solid var(--tgy-border);
  border-radius: 0;
  background: transparent;
  padding: 13px 16px
}
.tgy-hero-proof span:first-child {
  padding-left: 0
}
.tgy-hero-proof span:last-child {
  border-right: 0
}
.tgy-hero-proof strong {
  display: block;
  color: var(--tgy-ink);
  font-size: 20px;
  font-size: 19px
}
.tgy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tgy-space-6);
  margin-top: var(--tgy-space-5)
}
.tgy-hero-action-link {
  display: inline-flex;
  min-height: var(--tgy-touch-target);
  align-items: center;
  gap: var(--tgy-space-2);
  color: var(--tgy-text);
  font-size: 14px;
  font-weight: 750
}
.tgy-hero-action-link .dashicons {
  width: 20px;
  height: 20px;
  color: var(--tgy-brand);
  font-size: 20px;
  line-height: 1
}
.tgy-hero-action-link:hover {
  color: var(--tgy-brand-dark)
}
.tgy-hero-action-link:focus-visible {
  border-radius: 4px;
  outline: var(--tgy-focus-width) solid var(--tgy-focus-ring);
  outline-offset: var(--tgy-focus-offset)
}
.tgy-hero-browse-link {
  color: var(--tgy-brand-dark);
  text-decoration: underline;
  text-underline-offset: 4px
}
.tgy-hero-visual {
  height: 530px;
  min-height: 530px
}
.tgy-display-shelf {
  position: relative;
  display: block;
  height: 530px;
  min-height: 530px
}
.tgy-display-card.primary {
  height: 530px;
  min-height: 530px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  color: var(--tgy-text);
  border: 0;
  border-radius: 0;
  background: #faf7f4;
  box-shadow: none;
  padding: 0
}
.tgy-product-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 16px 0 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96) 0 28%, rgba(235, 246, 248, 0.74) 49%, rgba(180, 213, 221, 0.38) 72%, rgba(20, 71, 63, 0.1) 100%),
    linear-gradient(145deg, #eaf4f6 0%, #d7e8ed 100%);
  isolation: isolate;
  transition:
    border-color var(--tgy-motion-feedback) var(--tgy-ease-standard),
    box-shadow var(--tgy-motion-feedback) var(--tgy-ease-standard),
    transform var(--tgy-motion-feedback) var(--tgy-ease-standard);
  aspect-ratio: 16 / 10;
  margin: 14px 0 16px;
  border: 0;
  background: #e8f1f2
}
.home .tgy-product-stage {
  aspect-ratio: 2 / 1
}
.home .tgy-hero + .tgy-band {
  padding-top: 20px
}
.tgy-product-stage::before {
  inset: 18px 70px 30px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
  content: "";
  position: absolute;
  pointer-events: none;
  display: none
}
.tgy-product-stage::after {
  left: 50%;
  bottom: 31px;
  z-index: 1;
  width: min(250px, 58%);
  height: 28px;
  border-radius: 999px;
  background: rgba(10, 37, 48, 0.18);
  filter: blur(14px);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  pointer-events: none;
  display: none
}
.tgy-product-stage__image {
  position: relative;
  z-index: 2;
  width: auto;
  height: 86%;
  min-height: 0;
  max-width: 86%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 25px 30px rgba(4, 14, 20, 0.24));
  transform: translateY(-4px);
  width: 88%;
  height: 88%;
  max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(10, 37, 48, 0.18));
  transform: none
}
.home .tgy-product-stage--hero {
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  isolation: auto
}
.tgy-hero-picture {
  display: contents
}
.home .tgy-product-stage--hero .tgy-hero-product-image {
  width: 88%;
  height: 88%;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: multiply;
  transition: transform var(--tgy-motion-panel) var(--tgy-ease-standard)
}
.home .tgy-product-stage-link,
.home .tgy-hero-carousel-track,
.home .tgy-hero-slide {
  height: 100%
}
.home .tgy-product-stage-link:hover .tgy-hero-product-image,
.home .tgy-product-stage-link:focus-visible .tgy-hero-product-image {
  transform: scale(1.015)
}
.home .tgy-product-stage-link:focus-visible {
  outline-color: var(--tgy-focus-ring)
}
.home .tgy-feature-content {
  display: grid;
  gap: var(--tgy-space-2);
  border-top: 1px solid var(--tgy-border);
  padding: var(--tgy-space-4) var(--tgy-space-6);
  background: var(--tgy-canvas)
}
.tgy-feature-title {
  color: var(--tgy-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3
}
.tgy-feature-title:hover {
  color: var(--tgy-brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px
}
.tgy-feature-title:focus-visible {
  outline: var(--tgy-focus-width) solid var(--tgy-focus-ring);
  outline-offset: var(--tgy-focus-offset)
}
@media (max-width: 900px) {
  .home .tgy-hero-visual {
    width: min(100%, 560px);
    margin-inline: auto
  }
}
.tgy-display-card.primary .tgy-feature-content > strong {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 0;
  color: var(--tgy-on-brand);
  font-size: 34px;
  line-height: 1.05;
  font-size: 28px;
  line-height: 1.1
}
.tgy-feature-prices span {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 10px;
  color: var(--tgy-on-brand);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08)
}
.home .tgy-band:nth-of-type(3) {
  background: var(--tgy-surface-soft)
}
.home .tgy-band:nth-of-type(5) {
  background: var(--tgy-surface-soft)
}
.tgy-hero-trust {
  display: grid;
  width: min(var(--tgy-max), calc(100% - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  padding: var(--tgy-space-7) 0;
  list-style: none;
  background: var(--tgy-surface-soft);
  box-shadow: 0 0 0 100vmax var(--tgy-surface-soft);
  clip-path: inset(0 -100vmax)
}
.tgy-hero-trust li {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: var(--tgy-space-4);
  padding: 0 var(--tgy-space-8)
}
.tgy-hero-trust li + li {
  border-left: 1px solid var(--tgy-border)
}
.tgy-hero-trust li > span:last-child {
  display: grid;
  gap: 2px
}
.tgy-hero-trust strong,
.tgy-hero-trust small {
  display: block
}
.tgy-hero-trust strong {
  color: var(--tgy-text);
  font-size: 15px
}
.tgy-hero-trust small {
  color: var(--tgy-text-soft);
  font-size: 13px
}
.tgy-hero-trust .tgy-hero-trust__icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid var(--tgy-brand-border-soft);
  border-radius: 50%;
  background: var(--tgy-surface-mint);
  color: var(--tgy-brand);
  font-size: 24px;
  line-height: 1
}
.home .tgy-home-products {
  padding: var(--tgy-space-12) 0 var(--tgy-space-16)
}
.home .tgy-home-products .tgy-section-head {
  margin-bottom: var(--tgy-space-6)
}
.home .tgy-home-products .tgy-section-head h2 {
  font-size: 30px
}
.home .tgy-home-product-grid {
  gap: var(--tgy-space-4)
}
.home .tgy-product-card--compact {
  border-color: #e4eaeb;
  border-radius: 14px
}
.home .tgy-product-card--compact:hover {
  border-color: var(--tgy-border-strong);
  box-shadow: 0 10px 26px var(--tgy-shadow-color-subtle);
  transform: translateY(-2px)
}
.home .tgy-product-card--compact .tgy-product-image {
  aspect-ratio: 1 / 1;
  background: #fbfbfa
}
.home .tgy-product-card--compact .tgy-product-photo {
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  transition: transform var(--tgy-motion-feedback) var(--tgy-ease-standard)
}
.home .tgy-product-card--compact:hover .tgy-product-photo,
.home .tgy-product-card--compact > a:focus-visible .tgy-product-photo {
  transform: scale(1.015)
}
.home .tgy-product-card--compact > a:focus-visible {
  outline: var(--tgy-focus-width) solid var(--tgy-focus-ring);
  outline-offset: -3px
}
.tgy-home-values {
  border-top: 1px solid var(--tgy-border);
  background: var(--tgy-surface-soft);
  padding: var(--tgy-space-10) 0
}
.tgy-home-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr))
}
.tgy-home-value-grid article {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--tgy-space-4);
  align-items: start;
  padding: 0 var(--tgy-space-6)
}
.tgy-home-value-grid article:first-child {
  padding-left: 0
}
.tgy-home-value-grid article:last-child {
  padding-right: 0
}
.tgy-home-value-grid article + article {
  border-left: 1px solid var(--tgy-border)
}
.tgy-home-value-grid .dashicons {
  width: 34px;
  height: 34px;
  color: var(--tgy-brand);
  font-size: 34px;
  line-height: 1
}
.tgy-home-value-grid h2 {
  margin: 0 0 var(--tgy-space-2);
  color: var(--tgy-text);
  font-size: 15px;
  line-height: 1.3
}
.tgy-home-value-grid p {
  margin: 0;
  color: var(--tgy-text-soft);
  font-size: 13px;
  line-height: 1.5
}
@media (min-width: 1181px) {
  .home .tgy-site-header > .tgy-header-inner,
  .home .tgy-topbar .tgy-header-inner,
  .home .tgy-hero-inner,
  .home .tgy-hero-trust,
  .home .tgy-container {
    width: min(1320px, calc(100% - 64px));
    max-width: none
  }
}
.tgy-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  gap: var(--tgy-space-5)
}
.home .tgy-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}
.tgy-home-product-grid > .tgy-home-product--mobile-only {
  display: none
}
.tgy-product-card {
  container-name: tgy-product-card;
  container-type: inline-size;
  overflow: hidden;
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-panel);
  box-shadow: 0 12px 26px var(--tgy-shadow-color-subtle);
  transition:
    transform var(--tgy-motion-feedback) var(--tgy-ease-standard),
    box-shadow var(--tgy-motion-feedback) var(--tgy-ease-standard);
  height: 100%;
  border-color: var(--tgy-border);
  box-shadow: none
}
.tgy-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--tgy-shadow);
  border-color: var(--tgy-border-strong);
  box-shadow: var(--tgy-shadow-soft);
  transform: translateY(-3px)
}
.tgy-product-card > a {
  display: flex;
  height: 100%;
  flex-direction: column
}
.tgy-product-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  align-content: center;
  overflow: hidden;
  padding: 0;
  background: var(--tgy-canvas);
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid #edf1f2;
  background: var(--tgy-canvas)
}
.tgy-product-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px)
}
.tgy-product-brand {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 9px;
  color: var(--tgy-soft-ink);
  font-size: 12px;
  font-weight: 800;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(216, 226, 228, 0.88);
  background: rgba(255, 255, 255, 0.94);
  padding: 5px 8px;
  font-size: 11px
}
.tgy-product-body {
  padding: 15px 16px 16px;
  display: flex;
  min-height: 168px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px
}
.tgy-product-body h3 {
  min-height: 46px;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.15;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 42px;
  margin-bottom: var(--tgy-space-3);
  font-size: 18px;
  line-height: 1.2
}
.tgy-mini-rates {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  gap: var(--tgy-space-2);
  margin-top: var(--tgy-space-4)
}
.tgy-mini-rates span {
  display: grid;
  gap: 3px;
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-surface-soft);
  padding: 8px 9px;
  font-size: 12px;
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
  white-space: nowrap;
  line-height: 1.2;
  display: grid;
  gap: 2px;
  border-color: var(--tgy-border);
  background: var(--tgy-surface-soft);
  padding: 8px 9px;
  white-space: normal
}
.tgy-mini-rates small {
  color: var(--tgy-muted);
  font-size: 12px;
  color: var(--tgy-text-soft);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase
}
.tgy-mini-rates strong {
  color: var(--tgy-ink);
  font-size: 15px;
  flex: 0 0 auto;
  font-size: 14px;
  color: var(--tgy-text);
  font-size: 12px;
  line-height: 1.3
}
.tgy-product-card--compact .tgy-product-body {
  min-height: 112px;
  gap: var(--tgy-space-2);
  padding: 14px 16px 15px
}
.tgy-product-card--compact .tgy-product-body h3 {
  margin-bottom: 0
}
.tgy-product-lowest-price {
  margin-top: auto;
  padding-top: 2px
}
.tgy-product-card--compact .tgy-product-lowest-price {
  margin-top: 0;
  padding-top: 0
}
.tgy-product-lowest-price strong {
  display: block;
  color: var(--tgy-price-accent);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0.01em
}
.tgy-shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  gap: var(--tgy-space-4)
}
.tgy-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  gap: var(--tgy-space-4)
}
.tgy-shipping-card {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-canvas);
  padding: 20px;
  border-color: var(--tgy-border);
  box-shadow: none
}
.tgy-step {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-canvas);
  padding: 20px;
  border-color: var(--tgy-border);
  box-shadow: none
}
.tgy-shop-results {
  padding-top: 34px;
  padding-bottom: 54px;
  padding-top: var(--tgy-space-12)
}
.tgy-shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--tgy-space-8);
  margin-bottom: var(--tgy-space-8);
  border-bottom: 1px solid var(--tgy-border);
  padding-bottom: var(--tgy-space-6)
}
.tgy-shop-header .tgy-page-intro {
  margin-bottom: 0
}
.tgy-shop-tools {
  display: flex;
  align-items: center;
  gap: var(--tgy-space-3)
}
.tgy-shop-search {
  display: grid;
  grid-template-columns: minmax(210px, 320px) auto;
  gap: var(--tgy-space-2)
}
.tgy-shop-search input {
  min-height: 44px;
  border: 1px solid var(--tgy-border-strong);
  border-radius: 8px;
  background: var(--tgy-canvas);
  padding: 0 13px;
  color: var(--tgy-text);
  font: inherit;
  font-size: 16px
}
.tgy-shop-search input:focus-visible {
  border-color: var(--tgy-brand);
  outline: 3px solid rgba(23, 107, 92, 0.12);
  outline-offset: 0
}
.tgy-shop-search button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--tgy-brand);
  color: var(--tgy-on-brand);
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer
}
.tgy-catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: var(--tgy-space-8)
}
.tgy-catalog-results {
  min-width: 0
}
.tgy-catalog-result-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tgy-space-4);
  margin-bottom: var(--tgy-space-4);
  color: var(--tgy-text-soft);
  font-size: 13px;
  font-weight: 750
}
.tgy-catalog-result-count > span {
  display: grid;
  gap: var(--tgy-space-1)
}
.tgy-catalog-result-count strong {
  color: var(--tgy-text);
  font-size: 15px
}
.tgy-catalog-result-count a {
  display: inline-flex;
  min-height: var(--tgy-touch-target);
  align-items: center;
  color: var(--tgy-brand);
  font-weight: 800
}
.tgy-catalog-sidebar {
  border: 1px solid var(--tgy-line);
  border-radius: var(--tgy-radius);
  background: var(--tgy-canvas);
  padding: 20px;
  position: sticky;
  top: 126px;
  display: grid;
  gap: 9px;
  position: sticky;
  top: calc(var(--tgy-sticky-top) + 12px);
  border: 0;
  border-right: 1px solid var(--tgy-border);
  border-radius: 0;
  background: transparent;
  padding: 0 var(--tgy-space-6) 0 0;
  box-shadow: none
}
.tgy-catalog-sidebar h2 {
  margin: 0 0 8px;
  margin: 0 0 var(--tgy-space-4);
  font-size: 15px
}
.tgy-catalog-filter-list {
  display: grid;
  gap: 8px;
  gap: var(--tgy-space-1)
}
.tgy-catalog-filter-chip {
  display: flex;
  min-height: var(--tgy-touch-target);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--tgy-muted);
  font-size: 14px;
  font-weight: 700;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 0 10px
}
.tgy-catalog-filter-chip:hover {
  background: var(--tgy-surface-soft)
}
.tgy-catalog-filter-chip.is-active {
  background: var(--tgy-blue-soft);
  color: var(--tgy-ink);
  background: var(--tgy-green);
  color: var(--tgy-on-brand);
  background: var(--tgy-surface-mint);
  color: var(--tgy-brand-dark)
}
.tgy-catalog-filter-chip.is-active small {
  background: rgba(255, 255, 255, 0.18);
  color: var(--tgy-on-brand);
  background: var(--tgy-canvas);
  color: var(--tgy-brand)
}
.tgy-product-grid.catalog .tgy-product-card {
  border-color: #e4eaeb;
  border-radius: 14px
}
.tgy-product-grid.catalog .tgy-product-card:hover {
  border-color: var(--tgy-border-strong);
  box-shadow: 0 10px 26px var(--tgy-shadow-color-subtle);
  transform: translateY(-2px)
}
.tgy-product-grid.catalog .tgy-product-image {
  aspect-ratio: 1 / 1;
  background: #fbfbfa
}
.tgy-product-grid.catalog .tgy-product-photo {
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px)
}
.tgy-product-grid.catalog .tgy-product-body {
  min-height: 120px;
  padding: var(--tgy-space-4)
}
.tgy-product-grid.catalog .tgy-product-body h3 {
  min-height: 0;
  margin-bottom: var(--tgy-space-3)
}
.tgy-product-grid.catalog .tgy-mini-rates {
  margin-top: auto;
  border-top: 1px solid var(--tgy-border);
  padding-top: var(--tgy-space-3)
}
.tgy-product-grid.catalog .tgy-mini-rates span {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0
}
.tgy-product-grid.catalog .tgy-mini-rates small {
  font-size: 11px
}
.tgy-product-grid.catalog .tgy-mini-rates strong {
  color: var(--tgy-price-accent);
  font-size: 15px
}
.tgy-product-grid.catalog .tgy-product-card > a:focus-visible {
  outline: var(--tgy-focus-width) solid var(--tgy-focus-ring);
  outline-offset: -3px
}
.tgy-catalog-pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--tgy-space-8)
}
.tgy-catalog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--tgy-space-2);
  margin: 0;
  padding: 0;
  list-style: none
}
.tgy-catalog-pagination a.page-numbers,
.tgy-catalog-pagination span.page-numbers {
  display: inline-flex;
  min-width: var(--tgy-touch-target);
  height: var(--tgy-touch-target);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tgy-border-strong);
  border-radius: 6px;
  background: var(--tgy-canvas);
  padding: 0 12px;
  color: var(--tgy-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none
}
.tgy-catalog-pagination a.page-numbers:hover {
  border-color: var(--tgy-brand);
  color: var(--tgy-brand-dark)
}
.tgy-catalog-pagination a.page-numbers:focus-visible {
  border-color: var(--tgy-brand);
  outline: 3px solid var(--tgy-focus-ring);
  outline-offset: 2px
}
.tgy-catalog-pagination span.page-numbers.current {
  border-color: var(--tgy-brand);
  background: var(--tgy-brand);
  color: var(--tgy-on-brand)
}

@media (prefers-reduced-motion: reduce) {
  .tgy-hero-carousel[data-slide-direction] .tgy-hero-slide.is-active {
    animation: none;
  }
  .tgy-hero-slide,
  .tgy-hero-carousel-dots [data-tgy-hero-dot],
  .tgy-hero-carousel-dots [data-tgy-hero-dot]::before,
  .tgy-hero-carousel-toggle,
  .tgy-product-stage,
  .tgy-hero-product-image,
  .tgy-product-photo,
  .tgy-product-card {
    transition: none;
  }
}

.tgy-hero-carousel-dots {
  max-width: calc(100% - 36px);
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.tgy-hero-carousel-dots::-webkit-scrollbar {
  display: none;
}

.tgy-hero-carousel-dots [data-tgy-hero-dot],
.tgy-hero-carousel-dots [data-tgy-hero-dot].is-active {
  position: relative;
  width: var(--tgy-touch-target);
  height: var(--tgy-touch-target);
  flex: 0 0 var(--tgy-touch-target);
  background: transparent;
  box-shadow: none;
}

.tgy-hero-carousel-dots [data-tgy-hero-dot]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  content: "";
  transform: translate(-50%, -50%);
  transition:
    width var(--tgy-motion-feedback) var(--tgy-ease-standard),
    background-color var(--tgy-motion-feedback) var(--tgy-ease-standard),
    box-shadow var(--tgy-motion-feedback) var(--tgy-ease-standard);
}

.tgy-hero-carousel-dots [data-tgy-hero-dot].is-active::before {
  width: 20px;
  background: var(--tgy-canvas);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.tgy-hero-carousel-toggle {
  flex: 0 0 var(--tgy-touch-target);
}

.home .tgy-hero-carousel-dots [data-tgy-hero-dot]::before {
  background: rgba(17, 42, 56, 0.24);
}

.home .tgy-hero-carousel-dots [data-tgy-hero-dot].is-active::before {
  background: var(--tgy-brand);
  box-shadow: none;
}

.home .tgy-hero-carousel-toggle {
  border-color: var(--tgy-border-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--tgy-brand-dark);
}

.home .tgy-hero-carousel-toggle:hover,
.home .tgy-hero-carousel-toggle:focus-visible {
  border-color: var(--tgy-brand);
  background: var(--tgy-canvas);
  color: var(--tgy-brand-dark);
}

@container tgy-product-card (max-width: 190px) {
  .tgy-product-photo {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  .tgy-product-brand {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 4px 6px;
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tgy-product-body,
  .tgy-product-card--compact .tgy-product-body {
    min-height: 0;
    padding: 12px;
  }

  .tgy-product-body h3 {
    min-height: 36px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.2;
  }

  .tgy-mini-rates {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  .tgy-product-grid.catalog .tgy-mini-rates {
    grid-template-columns: 1fr;
    gap: var(--tgy-space-2);
  }

  .tgy-product-grid.catalog .tgy-mini-rates span {
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr);
    align-items: baseline;
    gap: var(--tgy-space-2);
  }

  .tgy-mini-rates span {
    padding: 7px 8px;
  }
}
