/*
Theme Name: iCando Lite
Theme URI: https://www.icando.my/
Author: iCando
Description: Lightweight WooCommerce-ready redesign theme for iCando.my.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: icando-lite
*/

:root {
  --bg: #ffffff;
  --ink: #101114;
  --muted: #626875;
  --line: #e7e9ee;
  --soft: #f6f7f9;
  --soft-green: #eef8f4;
  --soft-gold: #fff7df;
  --accent: #21a67a;
  --accent-dark: #13795a;
  --warning: #f4b740;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 46px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #2e3238;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.nav li {
  position: relative;
}

.nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  display: none;
  min-width: 260px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 17, 20, 0.12);
}

.nav .menu-item-has-children::after {
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  display: block;
  height: 14px;
  content: "";
}

.nav li:hover > .sub-menu,
.nav li:focus-within > .sub-menu {
  display: flex;
}

.nav .sub-menu a {
  display: block;
  padding: 12px 14px;
  white-space: nowrap;
}

.nav .sub-menu a:hover {
  background: var(--soft);
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1.2;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.accent {
  border-color: var(--accent);
  background: var(--accent);
}

.hero {
  padding: 58px 0 46px;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  padding: 54px 0 46px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.home-hero h1 {
  max-width: 620px;
  font-size: clamp(34px, 3.1vw, 46px);
}

.page-hero {
  padding-top: 74px;
}

.service-hero {
  padding: 56px 0 46px;
}

.service-hero h1 {
  max-width: 720px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.service-hero .hero-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.service-hero .hero-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 920;
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 920;
}

h3 {
  font-size: 22px;
  font-weight: 900;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--ink);
  margin-right: 4px;
}

.hero-panel {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 26px;
}

.home-hero .hero-showcase {
  display: none;
}

.home-hero .legacy-motion {
  display: block;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, #ffffff 0%, var(--soft-green) 58%, var(--soft-gold) 100%);
  padding: 28px;
}

.showcase-topline {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.showcase-topline span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-topline strong {
  font-size: clamp(24px, 2.45vw, 32px);
  font-weight: 920;
  line-height: 1.08;
}

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

.showcase-tile {
  display: grid;
  min-height: 192px;
  align-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px;
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-tile:hover {
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(16, 17, 20, 0.13);
}

.showcase-thumb {
  display: grid;
  aspect-ratio: 1.35 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-tile strong,
.showcase-tile small {
  display: block;
}

.showcase-tile strong {
  font-size: 15px;
  font-weight: 920;
  line-height: 1.18;
}

.showcase-tile small {
  margin-top: 6px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.showcase-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.showcase-note span {
  border: 1px solid rgba(19, 121, 90, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.signal-motion {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(33, 166, 122, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbf9 62%, #fffaf0 100%);
  padding: 28px;
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.07);
}

.signal-motion::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 121, 90, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(19, 121, 90, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.signal-motion::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 166, 122, 0.42));
  content: "";
}

.signal-header,
.signal-flow,
.signal-footer {
  position: relative;
  z-index: 2;
}

.signal-header {
  display: grid;
  gap: 6px;
  margin-bottom: 28px;
}

.signal-header span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-header strong {
  font-size: clamp(23px, 2.35vw, 31px);
  font-weight: 920;
  line-height: 1.05;
}

.signal-flow {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}

.signal-line {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 26px;
  width: 2px;
  overflow: hidden;
  background: rgba(19, 121, 90, 0.16);
}

.signal-line::after {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  content: "";
  animation: signal-flow 5.2s ease-in-out infinite;
}

.signal-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num desc";
  column-gap: 14px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  padding: 15px;
  box-shadow: 0 14px 32px rgba(16, 17, 20, 0.06);
  transform: translateX(0);
  animation: signal-card 7s ease-in-out infinite;
}

.step-trust {
  animation-delay: 0.4s;
}

.step-reach {
  animation-delay: 0.8s;
}

.step-enquiry {
  animation-delay: 1.2s;
}

.signal-step span {
  grid-area: num;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(33, 166, 122, 0.18);
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.signal-step strong {
  grid-area: title;
  align-self: end;
  font-size: 17px;
  font-weight: 920;
  line-height: 1.1;
}

.signal-step small {
  grid-area: desc;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.signal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(16, 17, 20, 0.08);
  padding-top: 18px;
}

.signal-footer strong,
.signal-footer span {
  display: block;
}

.signal-footer strong {
  font-size: 14px;
  font-weight: 950;
}

.signal-footer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.signal-footer a {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes signal-flow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(330%);
  }
}

@keyframes signal-card {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-visual {
  border: 1px solid rgba(33, 166, 122, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, var(--soft-green) 66%, #fffaf0 100%);
  padding: 24px;
  box-shadow: 0 22px 58px rgba(16, 17, 20, 0.07);
}

.service-visual-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.service-visual-copy span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-visual-copy strong {
  max-width: 360px;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 920;
  line-height: 1.08;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-visual-tile {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  padding: 12px;
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.055);
}

.service-visual-tile:first-child {
  grid-row: span 2;
}

.service-visual-tile img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-visual-tile span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding-top: 14px;
}

.service-card-media {
  display: block;
  margin: -14px -14px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fafb;
}

.service-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.stat {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.045);
}

.card:hover,
.product-card:hover {
  border-color: rgba(33, 166, 122, 0.34);
}

.card p,
.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 900;
}

.feature-block {
  border-top: 4px solid var(--ink);
  padding-top: 22px;
}

.feature-block + .feature-block {
  margin-top: 34px;
}

.feature-block-primary {
  border-top-color: var(--accent);
}

.feature-block p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-content,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: start;
}

.service-main {
  min-width: 0;
}

.service-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.mini-panel,
.compact-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.04);
}

.mini-panel h3 {
  margin-bottom: 14px;
}

.plain-list,
.step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.step-list li::marker {
  color: var(--accent-dark);
  font-weight: 900;
}

.compact-card {
  min-height: 96px;
}

.compact-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px 14px 42px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--accent-dark);
  content: "+";
  font-size: 15px;
  font-weight: 900;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-image {
  display: grid;
  aspect-ratio: 1 / 1;
  max-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--soft);
  margin-bottom: 18px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .price {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 9px 14px;
  color: #30343a;
  font-weight: 800;
}

.cta-band {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 42px;
}

.cta-band p {
  color: #d7dbe2;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: #fff;
}

.woocommerce .woocommerce-products-header,
.woocommerce div.product,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  width: min(100% - 32px, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-notices-wrapper {
  width: min(100% - 32px, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.woocommerce .woocommerce-breadcrumb {
  padding-top: 18px;
  color: var(--muted);
}

.woocommerce .woocommerce-products-header {
  padding-top: 46px;
}

.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 950;
  line-height: 1.08;
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: end;
  width: min(100% - 32px, var(--max));
  margin: 16px auto 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, #fff 0%, var(--soft-green) 100%);
  padding: 28px;
}

.shop-intro h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.shop-intro p {
  margin: 0;
  color: var(--muted);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
}

.woocommerce .woocommerce-result-count {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.woocommerce .woocommerce-ordering {
  margin-top: 0;
  margin-bottom: 28px;
  text-align: right;
}

.woocommerce .woocommerce-ordering select {
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 9px 10px;
  color: var(--ink);
  font: inherit;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  display: flex;
  width: auto;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.woocommerce ul.products li.product .button {
  align-self: flex-start;
  margin-top: auto;
}

.woocommerce nav.woocommerce-pagination {
  width: min(100% - 32px, var(--max));
  margin: 34px auto 0;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--line);
  border-radius: 4px;
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ink);
  font-weight: 900;
}

.woocommerce div.product {
  padding-top: 54px;
  padding-bottom: 64px;
}

.woocommerce div.product div.summary {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: 30px;
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.08);
}

.woocommerce div.product div.images img {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.woocommerce div.product .summary .price {
  margin: 18px 0;
  font-size: clamp(22px, 2.2vw, 30px);
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related {
  clear: both;
  padding-top: 38px;
}

.single-product .product_meta .sku_wrapper {
  display: none;
}

.product-telegram {
  margin: 18px 0 0;
}

.product-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-assurance span {
  border: 1px solid rgba(33, 166, 122, 0.2);
  border-radius: 999px;
  background: var(--soft-green);
  padding: 7px 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-social-share {
  float: left;
  width: 98px;
  margin: 0 16px 24px 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}

.product-social-share + div.images {
  width: calc(42% - 114px) !important;
  margin-right: 3% !important;
}

.woocommerce div.product div.summary {
  width: 55% !important;
}

.product-share-item {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.product-share-item:last-child {
  margin-bottom: 0;
}

.product-share-count {
  position: relative;
  display: block;
  min-height: 50px;
  border: 1px solid #cfd5de;
  border-radius: 4px;
  background: #fff;
  color: #3d4550;
  padding: 13px 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.product-share-count::before,
.product-share-count::after {
  position: absolute;
  top: 100%;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
}

.product-share-count::before {
  border-width: 7px 7px 0;
  border-color: #cfd5de transparent transparent;
}

.product-share-count::after {
  margin-top: -1px;
  margin-left: 1px;
  border-width: 6px 6px 0;
  border-color: #fff transparent transparent;
}

.product-share-button {
  display: block;
  min-height: 28px;
  margin-top: 8px;
  border-radius: 4px;
  color: #fff;
  padding: 5px 7px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.product-share-facebook .product-share-button {
  background: #3b5998;
}

.product-share-twitter .product-share-button {
  background: #3aa3f3;
}

.product-share-pinterest .product-share-button {
  background: #bd081c;
}

.product-share-item:hover {
  color: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 26px;
}

.woocommerce table.shop_table,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register {
  border-radius: 6px;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  padding-top: 34px;
  padding-bottom: 58px;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-cart .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce form.checkout {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 17, 20, 0.05);
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  padding: 22px;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 26px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce-checkout form.checkout #customer_details {
  grid-column: 1;
}

.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout form.checkout #order_review_heading {
  margin: 0;
  align-self: end;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-cart .cart_totals h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 920;
  line-height: 1.15;
}

.woocommerce-checkout #payment {
  border: 1px solid rgba(33, 166, 122, 0.16);
  border-radius: 6px;
  background: var(--soft-green);
}

.woocommerce-checkout #payment div.payment_box {
  background: #fff;
  color: var(--muted);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fff;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  width: 100%;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
  background: var(--accent-dark);
  color: #fff;
}

.entry-content {
  max-width: 920px;
}

.entry-content p,
.entry-content li {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .section-head,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-row {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 17, 20, 0.1);
  }

  .nav-open .nav {
    display: block;
  }

  .nav > ul {
    display: flex;
    width: min(100% - 28px, var(--max));
    margin: 0 auto;
    padding: 14px 0 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .nav .button.accent {
    width: min(100% - 28px, var(--max));
    margin: 8px auto 16px;
  }

  .nav .sub-menu {
    position: static;
    display: flex !important;
    min-width: 100%;
    margin-top: 0;
    border: 0;
    box-shadow: none;
  }

  .nav .sub-menu a {
    min-height: 40px;
    padding: 9px 0 9px 16px;
    color: var(--muted);
  }

  .shop-intro,
  .service-content,
  .contact-grid,
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout form.checkout #customer_details,
  .woocommerce-checkout form.checkout #order_review_heading,
  .woocommerce-checkout form.checkout #order_review {
    grid-column: 1;
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce .woocommerce-ordering {
    text-align: left;
  }

  .product-social-share {
    float: none;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px;
  }

  .product-social-share + div.images {
    width: 100% !important;
  }

  .product-share-item {
    margin-bottom: 0;
  }

  .product-share-count {
    min-height: 42px;
    padding: 10px 4px;
    font-size: 14px;
  }

  .product-share-button {
    min-height: 26px;
    font-size: 11px;
  }

  .hero {
    padding-top: 44px;
  }

  .signal-motion {
    min-height: auto;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-aside {
    position: static;
  }
}

@media (min-width: 901px) {
  .nav ul {
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand img {
    max-width: 128px;
    max-height: 42px;
  }

  h1,
  .service-hero h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .home-hero {
    padding-top: 38px;
  }

  .signal-motion {
    padding: 20px;
  }

  .service-visual-grid {
    grid-template-columns: 1fr;
  }

  .service-visual-tile:first-child {
    grid-row: auto;
  }

  .hero-showcase {
    padding: 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .single-product .related.products {
    width: 100%;
  }

  .single-product .related.products ul.products {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 18px;
    margin: 0 !important;
  }

  .single-product .related.products ul.products li.product {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .single-product .related.products ul.products li.product img {
    grid-row: span 3;
    width: 96px;
    margin: 0;
  }

  .single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .single-product .related.products ul.products li.product .price,
  .single-product .related.products ul.products li.product .star-rating {
    grid-column: 2;
  }

  .single-product .related.products ul.products li.product .button {
    width: 100%;
    margin-top: 12px;
  }

  .signal-header {
    margin-bottom: 20px;
  }

  .signal-header strong {
    font-size: 27px;
  }

  .signal-step {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 13px;
  }

  .signal-step span {
    width: 34px;
    height: 34px;
  }

  .signal-step strong {
    font-size: 18px;
  }

  .signal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  h1,
  .service-hero h1 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-line::after,
  .signal-step {
    animation: none;
  }
}
