/*
 * TryyCart 1.9 compact sales experience.
 * Loaded last so the shared header, homepage hierarchy and side tools remain
 * consistent across Elementor, WooCommerce and Core-owned pages.
 */

/* A larger, calmer shared header without sacrificing the protected actions. */
body .tc-site-chrome.tc-site-chrome .tc-main-header,
body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
  height: 88px;
}

@media (min-width: 1121px) {
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    grid-template-columns: 180px minmax(0, 1fr) 270px;
    gap: 14px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-site-logo,
  body .tc-site-chrome.tc-site-chrome .tc-site-logo img {
    width: 172px;
    max-width: 172px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav {
    border-radius: 17px;
    min-height: 54px;
    padding: 6px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav a {
    min-height: 42px;
    padding-inline: 9px;
    font-size: 12.5px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav i {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    font-size: 11px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-actions,
  body .tc-site-chrome.tc-site-chrome .tc-nav-actions {
    width: 270px;
    min-width: 270px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-actions .icon-action,
  body .tc-site-chrome.tc-site-chrome .login-link {
    min-height: 42px;
  }

  body .tc-site-chrome.tc-site-chrome .nav-signup {
    min-height: 46px;
    padding-inline: 15px;
    font-size: 12.5px;
  }
}

/* One professional edge control replaces the separate floating wallet. */
.tc-site-chrome.tc-site-chrome .tc-side-tools {
  --tc-drawer-width: min(500px, calc(100vw - 110px));
  position: fixed;
  inset: 132px 0 auto auto;
  z-index: 520;
  color: #102848;
}

.admin-bar .tc-site-chrome.tc-site-chrome .tc-side-tools {
  top: 164px;
}

body.tc-side-tools-open {
  overflow: hidden;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs {
  position: absolute;
  right: 0;
  top: 28px;
  display: grid;
  gap: 5px;
  z-index: 3;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > button {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px;
  width: 94px;
  min-height: 66px;
  padding: 9px 8px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(145deg, #173d79 0%, #245cc3 56%, #ef6b24 155%);
  box-shadow: 0 12px 26px rgba(8, 34, 75, 0.22);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: width 180ms ease, transform 180ms ease, background 180ms ease;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > button:hover,
.tc-site-chrome.tc-site-chrome .tc-side-tabs > button:focus-visible,
.tc-site-chrome.tc-site-chrome .tc-side-tabs > button.is-active {
  width: 104px;
  outline: none;
  transform: translateX(-1px);
  background: linear-gradient(135deg, #0b2b59 0%, #315fd2 55%, #ff6a19 130%);
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > button > i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-style: normal;
  font-size: 16px;
  font-weight: 900;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs span,
.tc-site-chrome.tc-site-chrome .tc-side-tabs strong,
.tc-site-chrome.tc-site-chrome .tc-side-tabs small {
  display: block;
  color: inherit;
  line-height: 1.05;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs strong {
  font-size: 11px;
  letter-spacing: 0.055em;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 750;
  opacity: 0.88;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs em {
  position: absolute;
  top: 4px;
  right: 5px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff6516;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.tc-site-chrome.tc-site-chrome .tc-side-backdrop {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(4, 20, 47, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 1;
}

.tc-site-chrome.tc-site-chrome .tc-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: var(--tc-drawer-width);
  padding: 0 0 18px;
  overflow: auto;
  overscroll-behavior: contain;
  border-left: 1px solid #b7c9dc;
  background:
    radial-gradient(circle at 100% 0, rgba(73, 124, 231, 0.16), transparent 36%),
    #edf3f8;
  box-shadow: -30px 0 70px rgba(4, 24, 55, 0.24);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(0.22, 0.75, 0.25, 1), visibility 260ms;
}

.tc-site-chrome.tc-site-chrome .tc-side-tools.is-open .tc-side-drawer {
  transform: translateX(0);
  visibility: visible;
}

.tc-site-chrome.tc-site-chrome .tc-side-tools.is-open .tc-side-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.tc-site-chrome.tc-site-chrome .tc-side-drawer-head {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #0c2b56 0%, #1d4e91 64%, #315fd2 100%);
  color: #fff;
}

.tc-site-chrome.tc-site-chrome .tc-side-drawer-head small {
  display: block;
  margin-bottom: 4px;
  color: #8ce7d2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.tc-site-chrome.tc-site-chrome .tc-side-drawer-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
}

.tc-site-chrome.tc-site-chrome .tc-side-drawer-head > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
}

.tc-site-chrome.tc-site-chrome .tc-side-panel {
  padding: 20px 22px 4px;
}

.tc-site-chrome.tc-site-chrome .tc-side-panel[hidden] {
  display: none !important;
}

.tc-site-chrome.tc-site-chrome .tc-side-how-panel {
  min-height: calc(100vh - 120px);
}

.tc-site-chrome.tc-site-chrome .tc-side-empty {
  min-height: 420px;
  border: 1px dashed rgba(59, 92, 130, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
}

.tc-site-chrome.tc-site-chrome .tc-side-intro {
  margin: 0 0 15px;
  color: #516982;
  font-size: 13px;
  line-height: 1.5;
}

.tc-site-chrome.tc-site-chrome .tc-bag-destination {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.78fr;
  gap: 8px;
  padding: 14px;
  border: 1px solid #c3d3e3;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 47, 88, 0.08);
}

.tc-site-chrome.tc-site-chrome .tc-bag-destination label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.tc-site-chrome.tc-site-chrome .tc-bag-destination label > span,
.tc-site-chrome.tc-site-chrome .tc-custom-weight > span {
  color: #31506f;
  font-size: 10px;
  font-weight: 850;
}

.tc-site-chrome.tc-site-chrome .tc-bag-destination :is(select, input),
.tc-site-chrome.tc-site-chrome .tc-custom-weight input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  margin: 0;
  padding: 8px 9px;
  border: 1px solid #afc2d6;
  border-radius: 9px;
  background: #fff;
  color: #102848;
  font: inherit;
  font-size: 12px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-destination > button {
  grid-column: 1 / -1;
  min-height: 42px;
  margin: 2px 0 0;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(100deg, #ff6a18, #e64c00);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.tc-site-chrome.tc-site-chrome .tc-bag-planner,
.tc-site-chrome.tc-site-chrome .tc-bag-capacity {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid #c3d3e3;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 47, 88, 0.07);
}

.tc-site-chrome.tc-site-chrome .tc-bag-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-heading small,
.tc-site-chrome.tc-site-chrome .tc-bag-capacity-copy > small {
  color: #ff5f0f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.tc-site-chrome.tc-site-chrome .tc-bag-heading h3,
.tc-site-chrome.tc-site-chrome .tc-bag-capacity h3 {
  margin: 3px 0 0;
  color: #102848;
  font-size: 17px;
  line-height: 1.2;
}

.tc-site-chrome.tc-site-chrome .tc-bag-heading > span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf2f7;
  color: #60748b;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.tc-site-chrome.tc-site-chrome .tc-bag-heading > span.is-live {
  background: #dff8ed;
  color: #087755;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 13px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans > button {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 92px;
  padding: 10px 5px;
  border: 1px solid #bed0e2;
  border-radius: 13px;
  background: #f4f8fc;
  color: #173557;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans > button:hover,
.tc-site-chrome.tc-site-chrome .tc-bag-plans > button:focus-visible {
  transform: translateY(-2px);
  border-color: #4778de;
  outline: none;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans > button.is-selected {
  border-color: #ff6a18;
  background: #fff2e9;
  box-shadow: inset 0 0 0 1px #ff6a18;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans > button > i {
  position: relative;
  display: block;
  width: 32px;
  height: 29px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 3px 3px 9px 9px;
  color: #3767c9;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans > button > i::before {
  position: absolute;
  left: 8px;
  top: -8px;
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans strong {
  font-size: 14px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-plans small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #627991;
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tc-site-chrome.tc-site-chrome .tc-custom-weight {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 7px;
  margin-top: 10px;
}

.tc-site-chrome.tc-site-chrome .tc-custom-weight[hidden] {
  display: none;
}

.tc-site-chrome.tc-site-chrome .tc-custom-weight > span {
  grid-column: 1 / -1;
}

.tc-site-chrome.tc-site-chrome .tc-custom-weight button {
  border: 0;
  border-radius: 9px;
  background: #173f81;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.tc-site-chrome.tc-site-chrome .tc-bag-capacity {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  background: linear-gradient(135deg, #0c2c58, #173e79);
  color: #fff;
}

.tc-site-chrome.tc-site-chrome .tc-bag-visual {
  display: grid;
  place-items: center;
}

.tc-site-chrome.tc-site-chrome .tc-bag-visual > div {
  position: relative;
  display: grid;
  place-items: center;
  width: 57px;
  height: 67px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-top: 0;
  border-radius: 5px 5px 16px 16px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-visual > div::before {
  position: absolute;
  left: 16px;
  top: 0;
  width: 21px;
  height: 14px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
}

.tc-site-chrome.tc-site-chrome .tc-bag-visual i {
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(0deg, #ff6a18, #ffc25d);
  transition: height 350ms ease;
}

.tc-site-chrome.tc-site-chrome .tc-bag-visual span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
}

.tc-site-chrome.tc-site-chrome .tc-bag-capacity-copy > small,
.tc-site-chrome.tc-site-chrome .tc-bag-capacity h3 {
  color: #fff;
}

.tc-site-chrome.tc-site-chrome .tc-bag-selected-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 4px 0 6px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-selected-rate span {
  color: #b9cce3;
  font-size: 10px;
  font-weight: 750;
}

.tc-site-chrome.tc-site-chrome .tc-bag-selected-rate b {
  color: #ffbf72;
  font-size: 12px;
  white-space: nowrap;
}

.tc-site-chrome.tc-site-chrome .tc-bag-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-metrics span {
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #b8cce4;
  font-size: 8px;
  line-height: 1.2;
}

.tc-site-chrome.tc-site-chrome .tc-bag-metrics b {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 10px;
}

.tc-site-chrome.tc-site-chrome .tc-bag-track {
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.tc-site-chrome.tc-site-chrome .tc-bag-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #42d0b2, #ffbe55, #ff6a18);
  transition: width 350ms ease;
}

.tc-site-chrome.tc-site-chrome .tc-bag-capacity-copy p {
  margin: 8px 0 0;
  color: #c5d6e8;
  font-size: 10px;
  line-height: 1.45;
}

.tc-site-chrome.tc-site-chrome .tc-wallet-message {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #e6eef7;
  color: #3f5872;
  font-size: 11px;
  line-height: 1.4;
}

.tc-site-chrome.tc-site-chrome .tc-wallet-message[data-status="ready"] {
  background: #dff7ed;
  color: #09684e;
}

.tc-site-chrome.tc-site-chrome .tc-wallet-message[data-status="error"] {
  background: #fff0eb;
  color: #9c310e;
}

.tc-site-chrome.tc-site-chrome .tc-bag-safety {
  margin: 10px 0 0;
  color: #627991;
  font-size: 9.5px;
  line-height: 1.45;
}

.tc-site-chrome.tc-site-chrome .tc-side-cart-panel .tc-wallet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 13px;
}

.tc-site-chrome.tc-site-chrome .tc-side-cart-panel .tc-wallet-actions a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid #afc3d9;
  border-radius: 10px;
  background: #fff;
  color: #163b75;
  font-size: 12px;
  font-weight: 850;
}

.tc-site-chrome.tc-site-chrome .tc-side-cart-panel .tc-wallet-actions a.is-primary {
  border-color: #ff6516;
  background: #ff6516;
  color: #fff;
}

/* Homepage: a shorter, sales-led information hierarchy. */
#tc-page-home.tc-page-section {
  display: flex;
  flex-direction: column;
}

#tc-page-home > .hero { order: 10; }
#tc-page-home > .stats-bar { order: 20; }
#tc-page-home > .brand-marquee { order: 30; }
#tc-page-home > .services-section { order: 40; }
#tc-page-home > .combine-banner { order: 50; }
#tc-page-home > .steps-section { display: none !important; }
#tc-page-home > .problem-section { order: 60; }
#tc-page-home > .trending-section { order: 70; }
#tc-page-home > .faq-section { order: 80; }
#tc-page-home > .testimonials { order: 90; }
#tc-page-home > .contact-band { order: 100; }

#tc-page-home :is(.services-section, .problem-section, .trending-section, .faq-section, .testimonials) {
  padding-block: clamp(32px, 4vw, 54px);
}

#tc-page-home .services-section .section-intro,
#tc-page-home .trending-section .section-intro {
  margin-bottom: 18px;
}

#tc-page-home .service-network {
  margin-bottom: 12px;
}

#tc-page-home .service-card .service-art {
  min-height: 170px;
}

#tc-page-home .service-card .service-body {
  padding: 16px 17px 17px;
}

#tc-page-home .service-card .service-body p {
  margin-block: 6px 10px;
}

#tc-page-home .problem-section .why-layout {
  gap: 18px;
}

#tc-page-home .trending-rail {
  margin-bottom: 18px;
}

#tc-page-home .category-showcase {
  gap: 12px;
}

#tc-page-home .category-window {
  border-radius: 16px;
  overflow: hidden;
}

#tc-page-home .category-feature {
  min-height: 142px;
  padding: 18px 20px;
}

#tc-page-home .category-feature h3 {
  margin-block: 4px 5px;
  font-size: clamp(25px, 2vw, 32px);
}

#tc-page-home .category-feature p {
  min-height: 0;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.4;
}

#tc-page-home .category-feature > span {
  margin-top: auto;
}

#tc-page-home .category-mini-grid button {
  min-height: 78px;
  padding: 9px 11px;
}

#tc-page-home .category-mini-grid button:nth-child(n + 3) {
  display: none;
}

#tc-page-home .faq-section .faq-shell {
  gap: 24px;
}

#tc-page-home .faq-section .section-title h2 {
  font-size: clamp(31px, 4vw, 50px);
}

#tc-page-home .accordion button,
#tc-page-home .faq-explore {
  min-height: 48px;
}

#tc-page-home .testimonials .section-title {
  margin-bottom: 14px;
}

#tc-page-home .testimonials .section-title h2 {
  font-size: clamp(28px, 3vw, 42px);
}

#tc-page-home .review-grid {
  gap: 10px;
}

#tc-page-home .review-grid article {
  min-height: 0;
  padding: 15px 16px;
}

#tc-page-home .review-grid article p {
  display: -webkit-box;
  margin-block: 8px 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1120px) {
  body .tc-site-chrome.tc-site-chrome .tc-main-header,
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    height: 82px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-site-logo img {
    width: 150px;
    max-width: 150px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav {
    display: none;
  }

  body .tc-site-chrome.tc-site-chrome .menu-button {
    display: inline-flex;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tools {
    top: 126px;
  }

  .admin-bar .tc-site-chrome.tc-site-chrome .tc-side-tools {
    top: 158px;
  }
}

@media (max-width: 782px) {
  body .tc-site-chrome.tc-site-chrome .tc-main-header,
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    height: 74px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-site-logo img {
    width: 132px;
    max-width: 132px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tools,
  .admin-bar .tc-site-chrome.tc-site-chrome .tc-side-tools {
    --tc-drawer-width: 100vw;
    top: auto;
    bottom: 0;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: 16px;
    grid-template-columns: auto auto;
    gap: 7px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs > button,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > button:hover,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > button:focus-visible,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > button.is-active {
    grid-template-columns: 28px 1fr;
    width: auto;
    min-width: 88px;
    min-height: 54px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 15px;
    transform: none;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs > button > i {
    width: 28px;
    height: 28px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-drawer {
    top: auto;
    max-height: min(86vh, 760px);
    border: 1px solid #aebfd2;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    transform: translateY(105%);
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tools.is-open .tc-side-drawer {
    transform: translateY(0);
  }

  .tc-site-chrome.tc-site-chrome .tc-side-drawer-head {
    min-height: 80px;
    padding: 15px 18px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-panel {
    padding: 15px 14px 6px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-how-panel {
    min-height: 55vh;
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-destination {
    grid-template-columns: 1fr 1fr;
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-destination label:last-of-type {
    grid-column: 1 / -1;
  }

  #tc-page-home .category-showcase {
    grid-template-columns: 1fr;
  }

  #tc-page-home .category-window {
    display: grid;
    grid-template-columns: minmax(150px, 0.7fr) 1fr;
  }

  #tc-page-home .category-feature {
    min-height: 100%;
  }

  #tc-page-home .category-mini-grid {
    grid-template-columns: 1fr;
  }

  #tc-page-home .category-mini-grid button:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 520px) {
  .tc-site-chrome.tc-site-chrome .tc-bag-plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-plans > button {
    min-height: 74px;
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-capacity {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 12px;
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-visual > div {
    width: 48px;
    height: 58px;
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .tc-site-chrome.tc-site-chrome .tc-bag-metrics span:last-child {
    grid-column: 1 / -1;
  }

  #tc-page-home .category-window {
    display: block;
  }

  #tc-page-home .category-feature {
    min-height: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tc-site-chrome.tc-site-chrome .tc-side-drawer,
  .tc-site-chrome.tc-site-chrome .tc-side-backdrop,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > button,
  .tc-site-chrome.tc-site-chrome .tc-bag-visual i,
  .tc-site-chrome.tc-site-chrome .tc-bag-track i {
    transition: none !important;
  }
}

/*
 * TryyCart 1.10.1 — supplied service artwork, full-card editorial blend.
 * Text stays readable on the left; the image becomes part of the complete card.
 */
body.tryycart-global-theme .services-section .service-grid {
  gap: clamp(12px, 1.25vw, 18px);
}

body.tryycart-global-theme .services-section .service-card {
  min-height: 355px;
  border-color: color-mix(in srgb, var(--service-accent) 24%, #dfe3e8);
  background: linear-gradient(135deg, #fff 0%, #fff 55%, var(--service-soft) 100%);
}

body.tryycart-global-theme .services-section .service-card::after {
  top: auto;
  right: -28px;
  bottom: -85px;
  width: 67%;
  height: 80%;
  border-radius: 50%;
  background: var(--service-soft);
  opacity: 0.74;
  filter: blur(5px);
  transform: none;
}

body.tryycart-global-theme .services-section .service-art {
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  border-radius: 0 17px 17px 0;
}

body.tryycart-global-theme .services-section .service-art::before {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 16%, rgba(255, 255, 255, 0.77) 33%, rgba(255, 255, 255, 0.18) 62%, transparent 84%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 55%, rgba(255, 255, 255, 0.08));
}

body.tryycart-global-theme .services-section .service-primary-image {
  inset: -9%;
  width: 118%;
  height: 118%;
  object-position: center 57%;
  filter: saturate(0.92) contrast(0.96) brightness(1.02);
  transform: scale(1.02);
}

body.tryycart-global-theme .services-section .service-card:hover .service-primary-image,
body.tryycart-global-theme .services-section .service-card:focus-within .service-primary-image {
  transform: scale(1.055);
}

body.tryycart-global-theme .services-section .service-body {
  width: 61%;
  min-height: 355px;
  padding: 23px 14px 20px 22px;
  background: linear-gradient(90deg, #fff 0%, #fff 69%, rgba(255, 255, 255, 0.84) 84%, transparent 100%);
}

body.tryycart-global-theme .services-section .service-index {
  width: 40px;
  height: 40px;
  margin-bottom: 9px;
}

body.tryycart-global-theme .services-section .service-body h3 {
  max-width: 94%;
  margin-top: 5px;
  font-size: clamp(1.3rem, 1.55vw, 1.58rem);
}

body.tryycart-global-theme .services-section .service-body p {
  min-height: 56px;
  max-width: 94%;
  font-size: 0.74rem !important;
}

#tc-page-home .services-section .service-body ul {
  width: 101%;
  gap: 6px;
  margin: 10px 0 12px;
}

#tc-page-home .services-section .service-body li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.66rem;
}

#tc-page-home .services-section .service-body .text-link {
  min-height: 39px;
  padding-inline: 15px;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-body {
    min-height: 290px;
  }

  body.tryycart-global-theme .services-section .service-art {
    width: 49%;
  }

  body.tryycart-global-theme .services-section .service-body {
    width: 62%;
  }
}

@media (max-width: 620px) {
  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-body {
    min-height: 400px;
  }

  body.tryycart-global-theme .services-section .service-art {
    top: 138px;
    width: 86%;
    height: auto;
  }

  body.tryycart-global-theme .services-section .service-art::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 22%, rgba(255, 255, 255, 0.4) 51%, transparent 77%),
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.25) 21%, transparent 46%);
  }

  body.tryycart-global-theme .services-section .service-body {
    width: 82%;
    padding: 17px 10px 15px 16px;
  }

  body.tryycart-global-theme .services-section .service-body p {
    max-width: 100%;
    min-height: 0;
  }

  #tc-page-home .services-section .service-body ul {
    width: 100%;
  }
}

/*
 * TryyCart 1.10.2 — rebuilt Our Services wireframe.
 * A real two-column card prevents text/art overlap at every viewport size.
 */
body.tryycart-global-theme .services-section .services-heading {
  margin: 0 0 22px;
  border-bottom: 1px solid #b9c7d6;
  padding: 0 0 17px;
}

body.tryycart-global-theme .services-section .services-heading-line {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

body.tryycart-global-theme .services-section .services-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #102849;
  font-size: clamp(2.4rem, 4.6vw, 4.75rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

body.tryycart-global-theme .services-section .services-heading-promise {
  display: flex;
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: baseline;
  gap: 7px;
  border: 0;
  border-left: 4px solid #ff6a18;
  border-radius: 0;
  padding: 2px 0 2px 15px;
  background: transparent;
  box-shadow: none;
  text-transform: none;
}

body.tryycart-global-theme .services-section .services-heading-promise::before {
  display: none;
}

body.tryycart-global-theme .services-section .services-heading-promise small {
  color: #e6520a;
  font-size: clamp(0.61rem, 0.8vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

body.tryycart-global-theme .services-section .services-heading-promise b {
  color: #233754;
  font-size: clamp(0.9rem, 1.22vw, 1.18rem);
  font-weight: 850;
  letter-spacing: -0.015em;
}

body.tryycart-global-theme .services-section .services-heading .section-intro {
  max-width: none;
  margin: 12px 0 0;
  color: #52657e;
  font-size: clamp(0.82rem, 0.94vw, 0.96rem) !important;
  text-align: left;
}

body.tryycart-global-theme .services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 19px);
}

body.tryycart-global-theme .services-section .service-card,
body.tryycart-global-theme .services-section .service-card:hover,
body.tryycart-global-theme .services-section .service-card:focus-within {
  position: relative;
  display: grid !important;
  min-width: 0;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  grid-template-areas: "copy art";
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--service-accent) 28%, #cbd5e1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 43, 74, 0.13);
}

body.tryycart-global-theme .services-section .service-card:hover,
body.tryycart-global-theme .services-section .service-card:focus-within {
  box-shadow: 0 20px 42px rgba(18, 43, 74, 0.18);
  transform: translateY(-4px);
}

body.tryycart-global-theme .services-section .service-card::after {
  display: none;
}

body.tryycart-global-theme .services-section .service-body {
  position: relative;
  z-index: 3;
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 390px;
  grid-area: copy;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 19px 20px 22px;
  background:
    radial-gradient(circle at 12% 8%, var(--service-soft), transparent 23%),
    linear-gradient(90deg, #fff 0%, #fff 86%, rgba(255, 255, 255, 0.92) 100%);
}

body.tryycart-global-theme .services-section .service-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

body.tryycart-global-theme .services-section .service-index {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin: 0;
  place-items: center;
  border-radius: 10px;
  background: var(--service-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--service-accent) 28%, transparent);
}

body.tryycart-global-theme .services-section .card-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 36%, #fff);
  border-radius: 999px;
  padding: 0 10px;
  background: color-mix(in srgb, var(--service-accent) 9%, #fff);
  color: color-mix(in srgb, var(--service-accent) 82%, #102849);
  font-size: 0.58rem !important;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.1;
}

body.tryycart-global-theme .services-section .service-body h3 {
  max-width: none;
  margin: 0 0 8px;
  color: #102849;
  font-size: clamp(1.28rem, 1.55vw, 1.55rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

body.tryycart-global-theme .services-section .service-body p {
  max-width: none;
  min-height: 0;
  margin: 0;
  color: #4f6178;
  font-size: clamp(0.69rem, 0.75vw, 0.76rem) !important;
  line-height: 1.48 !important;
}

#tc-page-home .services-section .service-body ul {
  display: grid !important;
  width: 100%;
  gap: 8px;
  margin: 16px 0 17px;
  padding: 0;
}

#tc-page-home .services-section .service-body li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 5px;
  margin: 0;
  color: #30455f;
  font-size: clamp(0.64rem, 0.7vw, 0.7rem);
  font-weight: 750;
  line-height: 1.28;
}

#tc-page-home .services-section .service-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 50%, #fff);
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-accent) 10%, #fff);
  color: var(--service-accent);
  font-size: 0.62rem;
  font-weight: 900;
}

#tc-page-home .services-section .service-body .text-link {
  min-height: 41px;
  margin-top: auto;
  align-self: flex-start;
  border-radius: 10px;
  padding: 0 16px;
  background: var(--service-accent);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 850;
}

body.tryycart-global-theme .services-section .service-art {
  position: relative;
  z-index: 1;
  inset: auto;
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 100%;
  grid-area: art;
  overflow: hidden;
  border-radius: 0 21px 21px 0;
  background: var(--service-soft) !important;
  clip-path: none;
}

body.tryycart-global-theme .services-section .service-art::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.78) 32%, rgba(255, 255, 255, 0.24) 70%, transparent 100%);
  content: "";
  opacity: 1;
  pointer-events: none;
}

body.tryycart-global-theme .services-section .service-primary-image {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

body.tryycart-global-theme .services-section .service-card:hover .service-primary-image,
body.tryycart-global-theme .services-section .service-card:focus-within .service-primary-image {
  filter: saturate(1) contrast(1) brightness(1.03);
  transform: scale(1.045);
}

@media (max-width: 1180px) and (min-width: 901px) {
  body.tryycart-global-theme .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-card:hover,
  body.tryycart-global-theme .services-section .service-card:focus-within {
    min-height: 315px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  body.tryycart-global-theme .services-section .service-body {
    min-height: 315px;
    padding: 22px 24px;
  }

  body.tryycart-global-theme .services-section .service-body p {
    max-width: 620px;
  }

  #tc-page-home .services-section .service-body ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.tryycart-global-theme .services-section .services-heading-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  body.tryycart-global-theme .services-section .services-heading-promise {
    width: 100%;
  }

  body.tryycart-global-theme .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-card:hover,
  body.tryycart-global-theme .services-section .service-card:focus-within {
    min-height: 305px;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  }

  body.tryycart-global-theme .services-section .service-body {
    min-height: 305px;
  }
}

@media (max-width: 640px) {
  body.tryycart-global-theme .services-section .services-heading h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  body.tryycart-global-theme .services-section .services-heading-promise {
    display: grid;
    gap: 3px;
  }

  body.tryycart-global-theme .services-section .services-heading-promise small {
    white-space: normal;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-card:hover,
  body.tryycart-global-theme .services-section .service-card:focus-within {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art";
  }

  body.tryycart-global-theme .services-section .service-body {
    width: auto;
    min-height: 0;
    padding: 18px 16px 17px;
  }

  body.tryycart-global-theme .services-section .service-meta {
    margin-bottom: 12px;
  }

  body.tryycart-global-theme .services-section .service-art {
    width: auto;
    height: 235px;
    min-height: 235px;
    border-radius: 0 0 21px 21px;
  }

  body.tryycart-global-theme .services-section .service-art::before {
    inset: 0 0 auto;
    width: 100%;
    height: 28%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.65) 33%, transparent 100%);
  }

  body.tryycart-global-theme .services-section .service-primary-image {
    object-position: center 52%;
  }

  #tc-page-home .services-section .service-body ul {
    margin-block: 14px;
  }

  #tc-page-home .services-section .service-body .text-link {
    margin-top: 2px;
  }
}

/*
 * TryyCart 1.10.6 FINAL OVERRIDE — approved title, compact promise rail,
 * shorter service cards and a diagonal editorial photo blend.
 * Keep this block last so legacy service-card geometry cannot override it.
 */
body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
  align-items: center !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
  height: 52px !important;
  min-height: 52px !important;
  align-self: center !important;
  gap: 10px !important;
  border-radius: 13px !important;
  padding: 7px 17px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise::before {
  width: 4px !important;
  height: 30px !important;
  flex-basis: 4px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
  font-size: clamp(0.7rem, 0.8vw, 0.82rem) !important;
  letter-spacing: 0.07em !important;
  line-height: 1.08 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
  font-size: clamp(1rem, 1.15vw, 1.18rem) !important;
  letter-spacing: -0.026em !important;
  line-height: 1.06 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading .section-intro {
  color: #405774 !important;
  font-size: clamp(0.9rem, 1vw, 1.02rem) !important;
  font-weight: 590 !important;
  line-height: 1.42 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline),
body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):hover,
body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):focus-within {
  min-height: 350px !important;
  height: 350px !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  grid-template-areas: "copy art" !important;
  isolation: isolate !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body {
  z-index: 4 !important;
  min-height: 350px !important;
  height: 350px !important;
  padding: 18px 14px 16px 18px !important;
  background:
    radial-gradient(circle at 8% 6%, var(--service-soft), transparent 25%),
    linear-gradient(90deg, #fff 0%, #fff 65%, rgba(255, 255, 255, 0.965) 76%, rgba(255, 255, 255, 0.7) 89%, transparent 100%) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-meta {
  min-height: 40px !important;
  margin-bottom: 10px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-index {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  flex-basis: 40px !important;
  font-size: 1rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .card-kicker {
  min-height: 27px !important;
  padding: 0 10px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.06em !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body h3 {
  margin-bottom: 8px !important;
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(1.42rem, 1.67vw, 1.7rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body p {
  max-width: 96% !important;
  color: #40546e !important;
  font-size: clamp(0.81rem, 0.87vw, 0.89rem) !important;
  font-weight: 510 !important;
  line-height: 1.4 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body ul {
  gap: 6px !important;
  margin: 12px 0 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body li {
  grid-template-columns: 19px minmax(0, 1fr) !important;
  gap: 6px !important;
  color: #263d59 !important;
  font-size: clamp(0.74rem, 0.8vw, 0.81rem) !important;
  font-weight: 760 !important;
  line-height: 1.22 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-check {
  width: 19px !important;
  height: 19px !important;
  font-size: 0.68rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .text-link {
  min-height: 39px !important;
  padding: 0 15px !important;
  font-size: 0.77rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art {
  position: relative !important;
  inset: auto !important;
  left: -82px !important;
  z-index: 2 !important;
  width: calc(100% + 82px) !important;
  min-width: 0 !important;
  min-height: 350px !important;
  height: 350px !important;
  align-self: stretch !important;
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%) !important;
  border-radius: 0 21px 21px 0 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art::before {
  inset: 0 auto 0 0 !important;
  width: 44% !important;
  height: 100% !important;
  background:
    radial-gradient(ellipse at 0% 52%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.54) 38%, transparent 73%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.3) 49%, transparent 100%) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-primary-image {
  filter: saturate(1.08) contrast(1.035) brightness(1.035) !important;
  transform: scale(1.025) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):hover .service-primary-image,
body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):focus-within .service-primary-image {
  transform: scale(1.065) !important;
}

@media (max-width: 1180px) and (min-width: 761px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline),
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art {
    min-height: 330px !important;
    height: 330px !important;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
    height: auto !important;
    min-height: 58px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small,
  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
    white-space: normal !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline),
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):focus-within {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: "copy" "art" !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body {
    height: auto !important;
    min-height: 0 !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art {
    inset: auto !important;
    left: auto !important;
    width: 100% !important;
    min-height: 235px !important;
    height: 235px !important;
    clip-path: none !important;
    border-radius: 0 0 21px 21px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art::before {
    inset: 0 0 auto !important;
    width: 100% !important;
    height: 31% !important;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.58) 30%, transparent 100%) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-primary-image {
    transition: none;
  }
}

/* -------------------------------------------------------------------------
 * TryyCart 1.9.1 — readable sales hierarchy and movable edge tools.
 * ---------------------------------------------------------------------- */

/* Keep the complete shared header steady and use the available screen width. */
body .tc-site-chrome.tc-site-chrome {
  position: sticky;
  top: 0;
  z-index: 510;
}

body.admin-bar .tc-site-chrome.tc-site-chrome {
  top: 32px;
}

body .tc-site-chrome.tc-site-chrome .tc-utility-inner,
body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
  width: min(100%, 1680px);
  max-width: 1680px;
  padding-inline: clamp(18px, 2vw, 34px);
}

body .tc-site-chrome.tc-site-chrome .tc-main-header,
body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
  height: 96px;
}

body .tc-site-chrome.tc-site-chrome .tc-main-header {
  box-shadow: 0 8px 24px rgba(12, 39, 74, 0.1);
}

@media (min-width: 1321px) {
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    grid-template-columns: 192px minmax(0, 1fr) 292px;
    gap: 18px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-site-logo,
  body .tc-site-chrome.tc-site-chrome .tc-site-logo img {
    width: 184px;
    max-width: 184px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav {
    min-height: 58px;
    padding: 6px;
    gap: 3px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav a {
    min-height: 45px;
    padding-inline: 10px;
    gap: 7px;
    font-size: 13.5px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav i {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 12px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-actions {
    width: 292px;
    min-width: 292px;
    gap: 8px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-actions .icon-action,
  body .tc-site-chrome.tc-site-chrome .login-link {
    min-height: 46px;
    font-size: 13.5px;
  }

  body .tc-site-chrome.tc-site-chrome .nav-signup {
    min-height: 50px;
    padding-inline: 17px;
    font-size: 13.5px;
  }
}

body .tc-site-chrome.tc-site-chrome .tc-header-search {
  max-width: 380px;
  height: 30px;
}

body .tc-site-chrome.tc-site-chrome .tc-header-search input,
body .tc-site-chrome.tc-site-chrome .tc-utility-actions a {
  font-size: 13px;
}

/* The rail moves vertically and docks beside—not over—the open drawer. */
.tc-site-chrome.tc-site-chrome .tc-side-tabs {
  --tc-side-tab-shift: 0px;
  right: 0;
  transform: translateY(var(--tc-side-tab-shift));
  transition: right 240ms ease, transform 80ms linear;
  will-change: transform;
}

.tc-site-chrome.tc-site-chrome .tc-side-tools.is-open .tc-side-tabs {
  right: calc(var(--tc-drawer-width) + 8px);
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs.is-dragging {
  transition: right 240ms ease;
  user-select: none;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-drag,
.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-drag:hover,
.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-drag:focus-visible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 112px;
  min-height: 30px;
  padding: 4px 9px;
  border-right: 0;
  border-radius: 15px 0 0 15px;
  background: #0b2c59;
  color: #fff;
  cursor: ns-resize;
  touch-action: none;
  transform: none;
}

.tc-site-chrome.tc-site-chrome .tc-side-drag > span {
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.tc-site-chrome.tc-site-chrome .tc-side-drag > small {
  margin: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab {
  grid-template-columns: 42px minmax(0, 1fr);
  width: 112px;
  min-height: 76px;
  padding: 10px 9px 10px 11px;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab:hover,
.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab:focus-visible,
.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab.is-active {
  width: 122px;
}

.tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab > i {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.tc-site-chrome.tc-site-chrome .tc-side-tab i svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tc-site-chrome.tc-site-chrome .tc-side-tab strong {
  font-size: 12px;
}

.tc-site-chrome.tc-site-chrome .tc-side-tab small {
  font-size: 9.5px;
}

/* Match every public homepage chapter to the 1320px hero width. */
body.tryycart-global-theme #tc-page-home
  :is(.services-section, .problem-section, .trending-section, .faq-section, .testimonials, .contact-band)
  > .shell {
  width: min(1320px, calc(100% - 40px));
}

/* Main chapter names now lead; the explanatory line stays compact beneath. */
body.tryycart-global-theme #tc-page-home
  :is(.services-section, .problem-section, .trending-section, .testimonials)
  .section-title {
  margin-bottom: 12px;
}

body.tryycart-global-theme #tc-page-home
  :is(.services-section, .problem-section, .trending-section, .testimonials)
  .section-title > .eyebrow {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #0d2a50 !important;
  font-size: clamp(27px, 3vw, 38px) !important;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: none;
}

body.tryycart-global-theme #tc-page-home
  :is(.services-section, .problem-section, .trending-section, .testimonials)
  .section-title h2 {
  max-width: none;
  margin: 7px auto 8px;
  color: #203d61 !important;
  font-size: clamp(21px, 2.2vw, 31px) !important;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

body.tryycart-global-theme #tc-page-home
  :is(.services-section, .problem-section, .trending-section, .testimonials)
  .section-title .title-bar {
  width: 76px;
  height: 4px;
  margin-top: 9px;
}

@media (min-width: 901px) {
  body.tryycart-global-theme #tc-page-home
    :is(.services-section, .problem-section, .trending-section, .testimonials)
    .section-title h2 {
    white-space: nowrap;
  }
}

#tc-page-home .services-section .section-intro {
  max-width: 900px;
  margin: 0 auto 13px;
  padding: 10px 18px;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

#tc-page-home .service-network {
  max-width: 880px;
  margin-bottom: 11px;
  font-size: 12px;
  letter-spacing: 0.07em;
}

#tc-page-home .service-network b {
  font-size: 12.5px;
}

/* Shorter service cards with obvious action buttons. */
#tc-page-home .service-grid {
  gap: 14px;
}

#tc-page-home .service-card {
  display: grid;
  grid-template-rows: 150px 1fr;
}

#tc-page-home .service-card .service-art {
  height: 150px;
  min-height: 150px;
}

#tc-page-home .service-card .service-body {
  display: flex;
  flex-direction: column;
  padding: 13px 15px 14px;
}

#tc-page-home .service-body h3 {
  margin: 3px 0 4px;
  font-size: 22px;
}

#tc-page-home .service-card .service-body p {
  display: -webkit-box;
  min-height: 0;
  margin: 0 0 7px;
  overflow: hidden;
  font-size: 13.5px !important;
  line-height: 1.42 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#tc-page-home .service-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: auto 0 9px;
  padding: 7px 0 0;
}

#tc-page-home .service-body li {
  margin: 0;
  padding: 4px 7px;
  border: 1px solid #b7c8d9;
  border-radius: 999px;
  background: #eef5fa;
  font-size: 10.5px;
  line-height: 1.15;
}

#tc-page-home .service-body .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 10px;
  background: #dc4c00;
  color: #fff !important;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(184, 63, 3, 0.2);
}

#tc-page-home .service-card.teal .text-link {
  background: #087a6b;
}

#tc-page-home .service-card.purple .text-link {
  background: #285ed0;
}

/* One-line, interactive product categories replace the long explanation. */
#tc-page-home .product-category-tabs {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 2px auto 18px;
  overflow-x: auto;
  padding: 3px 2px 8px;
  scrollbar-width: thin;
}

#tc-page-home .product-category-tabs button {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #aebfd2;
  border-radius: 999px;
  background: #f8fbfd;
  color: #294968;
  font-size: 13px;
  font-weight: 850;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

#tc-page-home .product-category-tabs button:hover,
#tc-page-home .product-category-tabs button:focus-visible {
  transform: translateY(-2px);
  border-color: #356fe0;
  outline: none;
}

#tc-page-home .product-category-tabs button.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, #ec6b2d, #566fd9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(64, 92, 179, 0.22);
}

#tc-page-home .product-category-tabs i {
  font-style: normal;
  font-size: 16px;
}

/* Compact blue category headers; six products render as three rows. */
#tc-page-home .category-window {
  display: grid;
  grid-template-rows: 112px auto;
}

#tc-page-home .category-feature {
  min-height: 112px;
  padding: 13px 16px;
  color: #fff;
}

#tc-page-home .category-feature :is(small, h3, p, span) {
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 16, 44, 0.32);
}

#tc-page-home .category-feature h3 {
  margin: 2px 0 3px;
  font-size: 22px;
}

#tc-page-home .category-feature p {
  margin: 0 0 4px;
  overflow: hidden;
  font-size: 12.5px !important;
  line-height: 1.3 !important;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#tc-page-home .category-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#tc-page-home .category-mini-grid button,
#tc-page-home .category-mini-grid button:nth-child(n + 3) {
  display: grid;
  min-height: 72px;
  padding: 8px 10px;
}

#tc-page-home .category-mini-grid button span b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11.5px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

#tc-page-home .category-mini-grid button span :is(small, em) {
  font-size: 10px;
}

/* Customer stories and contact chapter use space, but not empty height. */
#tc-page-home .review-grid article p {
  font-size: 13.5px !important;
}

body.tryycart-global-theme #tc-page-home .contact-band {
  padding-block: 12px !important;
}

body.tryycart-global-theme #tc-page-home .contact-band > .shell {
  padding: 24px 30px !important;
}

#tc-page-home .contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr);
  gap: 34px;
}

#tc-page-home .contact-grid h2 {
  margin: 3px 0 4px;
  font-size: clamp(29px, 3vw, 40px);
}

#tc-page-home .contact-grid > div:first-child > p {
  margin: 0;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

#tc-page-home .seller-points {
  margin-top: 11px;
}

#tc-page-home .contact-card {
  padding: 17px 19px;
}

#tc-page-home .contact-card h3 {
  margin: 3px 0 8px;
}

#tc-page-home .contact-card a {
  margin: 5px 0;
  padding: 9px 12px;
  font-size: 13px;
}

#tc-page-home .contact-card p {
  margin-top: 7px;
  font-size: 11px;
}

/* A clear reading floor in the shared footer. */
body .tc-site-footer {
  padding-top: 48px;
}

body .tc-site-footer p,
body .tc-site-footer .footer-grid a:not(.logo-lockup) {
  font-size: 15px;
  line-height: 1.55;
}

body .tc-site-footer h4 {
  font-size: 14px;
}

body .tc-site-footer .footer-bottom {
  min-height: 64px;
  font-size: 11px;
}

@media (max-width: 1320px) {
  body .tc-site-chrome.tc-site-chrome .tc-desktop-nav {
    display: none;
  }

  body .tc-site-chrome.tc-site-chrome .menu-button {
    display: inline-flex;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    grid-template-columns: minmax(155px, 1fr) auto;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-actions {
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  body.admin-bar .tc-site-chrome.tc-site-chrome {
    top: 46px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-main-header,
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    height: 78px;
  }

  body.tryycart-global-theme #tc-page-home
    :is(.services-section, .problem-section, .trending-section, .faq-section, .testimonials, .contact-band)
    > .shell {
    width: min(100% - 22px, 1320px);
  }

  body.tryycart-global-theme #tc-page-home
    :is(.services-section, .problem-section, .trending-section, .testimonials)
    .section-title > .eyebrow {
    font-size: clamp(25px, 8vw, 33px) !important;
  }

  body.tryycart-global-theme #tc-page-home
    :is(.services-section, .problem-section, .trending-section, .testimonials)
    .section-title h2 {
    font-size: clamp(19px, 5.6vw, 26px) !important;
  }

  #tc-page-home .service-network {
    grid-template-columns: 1fr;
    gap: 3px;
    text-align: center;
  }

  #tc-page-home .service-network i {
    display: none;
  }

  #tc-page-home .service-card {
    grid-template-rows: 142px 1fr;
  }

  #tc-page-home .service-card .service-art {
    height: 142px;
    min-height: 142px;
  }

  #tc-page-home .product-category-tabs {
    justify-content: flex-start;
  }

  #tc-page-home .category-window {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    grid-template-rows: none;
  }

  #tc-page-home .category-feature {
    min-height: 100%;
  }

  #tc-page-home .category-feature p {
    white-space: normal;
  }

  #tc-page-home .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 782px) {
  .tc-site-chrome.tc-site-chrome .tc-side-tabs {
    grid-template-columns: 46px auto auto;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tools.is-open .tc-side-tabs {
    right: 10px;
    bottom: calc(min(86vh, 760px) + 8px);
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-drag,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-drag:hover,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-drag:focus-visible {
    width: 46px;
    min-width: 46px;
    min-height: 58px;
    padding: 5px;
    flex-direction: column;
    gap: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 15px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab:hover,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab:focus-visible,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab.is-active {
    grid-template-columns: 34px 1fr;
    min-width: 104px;
    width: 104px;
    min-height: 58px;
    padding: 7px 8px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab > i {
    width: 34px;
    height: 34px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tab i svg {
    width: 25px;
    height: 25px;
  }

  body .tc-site-footer .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  body .tc-site-chrome.tc-site-chrome .tc-utility-actions a:last-child {
    display: none;
  }

  body .tc-site-chrome.tc-site-chrome .tc-site-logo img {
    width: 138px;
    max-width: 138px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs {
    right: 6px;
    gap: 4px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tools.is-open .tc-side-tabs {
    right: 6px;
  }

  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab:hover,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab:focus-visible,
  .tc-site-chrome.tc-site-chrome .tc-side-tabs > .tc-side-tab.is-active {
    min-width: 91px;
    width: 91px;
  }

  #tc-page-home .category-window {
    display: block;
  }

  #tc-page-home .category-feature {
    min-height: 105px;
  }

  #tc-page-home .category-mini-grid button,
  #tc-page-home .category-mini-grid button:nth-child(n + 3) {
    min-height: 67px;
  }

  body.tryycart-global-theme #tc-page-home .contact-band > .shell {
    padding: 20px 18px !important;
  }
}

/* -------------------------------------------------------------------------
 * TryyCart 1.9.2 — compact header and single-layer homepage proof.
 * ---------------------------------------------------------------------- */

/* The shared header keeps every route visible but uses less vertical space. */
body .tc-site-chrome.tc-site-chrome .tc-main-header,
body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
  height: 70px;
}

body .tc-site-chrome.tc-site-chrome .tc-main-header {
  border-bottom: 1px solid #9fb4ca;
  background:
    linear-gradient(100deg, rgba(239, 246, 252, 0.98), rgba(218, 231, 244, 0.98) 58%, rgba(244, 235, 228, 0.98));
  box-shadow: 0 7px 20px rgba(7, 30, 62, 0.12);
}

body .tc-site-chrome.tc-site-chrome .tc-desktop-nav {
  min-height: 46px;
  border-color: #a6b9cd;
  border-radius: 15px;
  padding: 4px;
  background: rgba(204, 219, 234, 0.78);
}

body .tc-site-chrome.tc-site-chrome .tc-desktop-nav a {
  min-height: 36px;
  padding-inline: 8px;
  font-size: 12px;
}

body .tc-site-chrome.tc-site-chrome .tc-desktop-nav i {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  font-size: 10px;
}

body .tc-site-chrome.tc-site-chrome .tc-site-logo,
body .tc-site-chrome.tc-site-chrome .tc-site-logo img {
  width: 154px;
  max-width: 154px;
}

body .tc-site-chrome.tc-site-chrome .tc-nav-actions .icon-action,
body .tc-site-chrome.tc-site-chrome .login-link {
  min-height: 38px;
}

body .tc-site-chrome.tc-site-chrome .nav-signup {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 12px;
}

@media (min-width: 1321px) {
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    grid-template-columns: 166px minmax(0, 1fr) 276px;
    gap: 14px;
  }

  body .tc-site-chrome.tc-site-chrome .tc-nav-actions {
    width: 276px;
    min-width: 276px;
  }
}

/* Hero actions belong to the message; proof and trust belong to the visual. */
body.tryycart-global-theme .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(30px, 3vw, 48px);
  padding-block: clamp(24px, 2.8vw, 38px) 24px;
}

body.tryycart-global-theme .hero-map {
  margin-top: 0;
}

body.tryycart-global-theme .hero-copy-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: min(100%, 520px);
  margin-top: 18px;
}

body.tryycart-global-theme .hero-copy-actions .btn {
  width: 100%;
  min-height: 45px;
}

/* Four discreet carousel dots replace the labeled white tab strip. */
body.tryycart-global-theme .hero-showcase {
  position: relative;
}

body.tryycart-global-theme .showcase-controls,
body.tryycart-global-theme .showcase-controls:hover {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(198, 219, 246, 0.28) !important;
  border-radius: 999px;
  background: rgba(5, 20, 44, 0.74) !important;
  backdrop-filter: blur(8px);
}

body.tryycart-global-theme .showcase-controls button,
body.tryycart-global-theme .showcase-controls button:hover,
body.tryycart-global-theme .showcase-controls button:focus-visible {
  display: grid;
  place-items: center;
  width: 9px;
  min-width: 9px;
  height: 9px;
  min-height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #8ca6c7;
  box-shadow: none;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

body.tryycart-global-theme .showcase-controls button i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

body.tryycart-global-theme .showcase-controls button.active {
  width: 25px;
  background: linear-gradient(90deg, #ff6a18, #ff9c52);
}

body.tryycart-global-theme .showcase-controls button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* The visual now has one concise five-point proof row. */
body.tryycart-global-theme .hero-support {
  gap: 10px;
  margin-top: 10px;
}

body.tryycart-global-theme .hero-support .hero-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

body.tryycart-global-theme .hero-support .hero-metrics span {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 55px;
  padding: 8px 8px;
  border: 1px solid rgba(184, 210, 241, 0.34) !important;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(101,145,203,0.08)) !important;
  color: #d8e7fa !important;
  font-size: 10px;
  line-height: 1.18;
  white-space: normal;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon,
body.tryycart-global-theme .hero-support .hero-metrics > span > i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 3px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,106,24,0.95), rgba(73,102,213,0.92));
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon svg {
  width: 15px;
  height: 15px;
}

body.tryycart-global-theme .hero-support .hero-metrics b {
  align-self: end;
  font-size: 13px;
  line-height: 1;
}

body.tryycart-global-theme .hero-support .trust-line {
  justify-self: stretch;
  min-height: 42px;
  margin: 0;
  padding: 5px 2px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.tryycart-global-theme .hero-support .trust-line b {
  font-size: 12px;
}

body.tryycart-global-theme .hero-support .trust-line small {
  font-size: 10px;
}

/* Remove the duplicated counters below the carousel and the large lower strip. */
body.tryycart-global-theme .hero-map > .map-stats,
#tc-page-home > .stats-bar {
  display: none !important;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .hero-support .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body .tc-site-chrome.tc-site-chrome .tc-main-header,
  body .tc-site-chrome.tc-site-chrome .tc-nav-inner {
    height: 66px;
  }

  body.tryycart-global-theme .hero-grid {
    padding-block: 24px 22px;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .hero-copy-actions {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  body.tryycart-global-theme .hero-support .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.tryycart-global-theme .hero-support .hero-metrics span:last-child {
    grid-column: 1 / -1;
  }

  body.tryycart-global-theme .showcase-controls {
    right: 12px;
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  body.tryycart-global-theme .hero-copy-actions {
    grid-template-columns: 1fr;
  }
}

/*
 * TryyCart 1.9.9 — Concept D service chooser integration.
 * The supplied standalone HTML is adapted to the real application markup so
 * route handlers, optimized imagery and the shared WooCommerce cart remain
 * authoritative. No fixed example prices or external font/script loads are
 * introduced into the production homepage.
 */
body.tryycart-global-theme .services-section {
  padding-block: 18px;
}

body.tryycart-global-theme .services-section > .shell {
  max-width: 1440px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid #aebfd1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(249, 115, 22, 0.08), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(49, 95, 212, 0.09), transparent 28%),
    linear-gradient(145deg, #f7f9fd, #edf3f8);
  box-shadow: 0 18px 44px rgba(15, 40, 73, 0.14);
}

body.tryycart-global-theme .services-heading {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

body.tryycart-global-theme .services-heading-line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 0;
  border: 0;
}

body.tryycart-global-theme .services-heading-label {
  align-self: center;
  min-width: 0;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 6px 15px;
  overflow: visible;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  box-shadow: none;
}

body.tryycart-global-theme .services-heading-label::before {
  position: static;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #f97316;
  content: "";
  animation: tc-service-pulse 1.8s ease-in-out infinite;
}

body.tryycart-global-theme .services-heading-label small {
  color: #c2410c;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

body.tryycart-global-theme .services-heading-label b {
  color: #9a3412;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.tryycart-global-theme .services-heading-label b::before {
  margin-right: 7px;
  color: #f97316;
  content: "·";
}

body.tryycart-global-theme .services-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

body.tryycart-global-theme .services-heading .section-intro {
  max-width: 690px;
  margin: 14px auto 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #526579;
  font-size: 1rem !important;
  line-height: 1.58 !important;
  text-align: center;
}

body.tryycart-global-theme .services-heading::after {
  display: block;
  width: 68px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #315fd4, #07865f);
  content: "";
}

body.tryycart-global-theme .services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.tryycart-global-theme .services-section .service-card {
  --service-accent: #f97316;
  --service-soft: #fff3e8;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #c2cedb;
  border-top: 5px solid var(--service-accent);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 40, 73, 0.11);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    box-shadow 280ms ease;
}

body.tryycart-global-theme .services-section .service-card.blue {
  --service-accent: #315fd4;
  --service-soft: #eaf1ff;
}

body.tryycart-global-theme .services-section .service-card.green {
  --service-accent: #07865f;
  --service-soft: #e8f8f1;
}

body.tryycart-global-theme .services-section .service-card::after {
  display: none;
  content: none;
}

body.tryycart-global-theme .services-section .service-card:hover,
body.tryycart-global-theme .services-section .service-card:focus-within {
  border-color: color-mix(in srgb, var(--service-accent) 44%, #c2cedb);
  box-shadow: 0 24px 54px rgba(15, 40, 73, 0.17);
  transform: translateY(-7px);
}

body.tryycart-global-theme .services-section .service-art {
  position: relative;
  inset: auto;
  width: 100%;
  height: 225px;
  min-height: 225px;
  clip-path: none;
  background: var(--service-soft) !important;
}

body.tryycart-global-theme .services-section .service-art::before {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 56%, rgba(7, 25, 52, 0.5)),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.28), transparent 28%);
  opacity: 1;
}

body.tryycart-global-theme .services-section .service-primary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

body.tryycart-global-theme .services-section .service-card:hover .service-primary-image,
body.tryycart-global-theme .services-section .service-card:focus-within .service-primary-image {
  transform: scale(1.045);
}

body.tryycart-global-theme .services-section .service-body {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
}

body.tryycart-global-theme .services-section .service-index {
  position: absolute;
  top: -18px;
  left: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 12px;
  background: var(--service-accent);
  color: #fff;
  font-size: 0.72rem;
  box-shadow: 0 7px 16px color-mix(in srgb, var(--service-accent) 25%, transparent);
}

body.tryycart-global-theme .services-section .card-kicker {
  display: inline-flex;
  margin: 7px 0 8px 47px;
  border: 1px solid color-mix(in srgb, var(--service-accent) 28%, transparent);
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--service-soft);
  color: var(--service-accent);
  font-size: 0.64rem !important;
  font-weight: 900;
  letter-spacing: 0.09em;
}

body.tryycart-global-theme .services-section .service-body h3 {
  margin: 5px 0 9px;
  color: #0f2747;
  font-size: 1.5rem;
  line-height: 1.12;
}

body.tryycart-global-theme .services-section .service-body p {
  min-height: 74px;
  margin: 0;
  color: #526579;
  font-size: 0.92rem !important;
  line-height: 1.58 !important;
}

#tc-page-home .services-section .service-body ul {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0 20px;
}

#tc-page-home .services-section .service-body li {
  position: relative;
  border: 0;
  padding: 0 0 0 22px;
  background: transparent;
  color: #334a63;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

#tc-page-home .services-section .service-body li::first-letter {
  color: transparent;
}

#tc-page-home .services-section .service-body li::before {
  position: absolute;
  top: 0.04em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 34%, transparent);
  border-radius: 50%;
  background: var(--service-soft);
  color: var(--service-accent);
  content: "✓";
  font-size: 0.62rem;
  font-weight: 900;
}

#tc-page-home .services-section .service-body .text-link {
  width: 100%;
  min-height: 45px;
  justify-content: center;
  margin-top: auto;
  border: 0;
  border-radius: 11px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--service-accent), color-mix(in srgb, var(--service-accent) 78%, #071934));
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 9px 22px color-mix(in srgb, var(--service-accent) 27%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

#tc-page-home .services-section .service-body .text-link:hover,
#tc-page-home .services-section .service-body .text-link:focus-visible {
  box-shadow: 0 13px 28px color-mix(in srgb, var(--service-accent) 36%, transparent);
  transform: translateY(-2px);
}

body.tryycart-global-theme .services-section .combine-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(540px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  border: 1px solid #2b4a72;
  border-radius: 22px;
  padding: 26px 30px;
  background:
    radial-gradient(circle at 95% 5%, rgba(49, 95, 212, 0.3), transparent 31%),
    linear-gradient(135deg, #0f2747, #172f56 58%, #1e1b4b);
  box-shadow: 0 14px 34px rgba(15, 40, 73, 0.22);
}

body.tryycart-global-theme .services-section .combine-kicker {
  color: #ffb17e;
}

body.tryycart-global-theme .services-section .combine-banner h3 {
  margin: 5px 0 7px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

body.tryycart-global-theme .services-section .combine-banner h3 em {
  color: #ff8a42;
}

body.tryycart-global-theme .services-section .combine-banner p {
  color: #c9d7e7;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}

body.tryycart-global-theme .services-section .combine-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 8px;
  align-items: center;
  justify-content: end;
}

body.tryycart-global-theme .services-section .combine-flow > span {
  display: grid;
  min-width: 104px;
  min-height: 86px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(185, 211, 241, 0.34);
  border-radius: 15px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  text-align: center;
}

body.tryycart-global-theme .services-section .combine-flow > span svg {
  width: 26px;
  height: 26px;
}

body.tryycart-global-theme .services-section .combine-flow > span small {
  color: #e7eff8;
  font-size: 0.72rem;
  font-weight: 800;
}

body.tryycart-global-theme .services-section .combine-flow > b {
  color: #ff8a42;
  font-size: 1.35rem;
}

body.tryycart-global-theme .services-section .combine-flow > .combine-result {
  border-color: rgba(100, 220, 165, 0.56);
  background: rgba(7, 134, 95, 0.2);
}

@keyframes tc-service-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.78); }
}

@media (max-width: 1120px) {
  body.tryycart-global-theme .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.tryycart-global-theme .services-section .service-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 11px));
    justify-self: center;
  }

  body.tryycart-global-theme .services-section .combine-banner {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .combine-flow {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .services-section > .shell {
    padding: 22px 15px;
    border-radius: 22px;
  }

  body.tryycart-global-theme .services-heading {
    margin-bottom: 22px;
  }

  body.tryycart-global-theme .services-heading-line {
    display: flex;
    align-items: center;
  }

  body.tryycart-global-theme .services-heading h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  body.tryycart-global-theme .services-heading .section-intro {
    font-size: 0.9rem !important;
  }

  body.tryycart-global-theme .services-section .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
  }

  body.tryycart-global-theme .services-section .service-art {
    height: 190px;
    min-height: 190px;
  }

  body.tryycart-global-theme .services-section .service-body {
    min-height: 0;
    padding: 21px 18px 18px;
  }

  body.tryycart-global-theme .services-section .service-body p {
    min-height: 0;
  }

  body.tryycart-global-theme .services-section .combine-banner {
    gap: 20px;
    padding: 22px 17px;
  }

  body.tryycart-global-theme .services-section .combine-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  body.tryycart-global-theme .services-section .combine-flow > span {
    min-width: 0;
    min-height: 78px;
  }

  body.tryycart-global-theme .services-section .combine-flow > b {
    display: none;
  }
}

@media (max-width: 470px) {
  body.tryycart-global-theme .services-heading-label {
    flex-wrap: wrap;
    justify-content: center;
  }

  body.tryycart-global-theme .services-section .service-art {
    height: 165px;
    min-height: 165px;
  }

  #tc-page-home .services-section .service-body ul {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .combine-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  body.tryycart-global-theme .services-heading-label::before,
  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-primary-image,
  #tc-page-home .services-section .service-body .text-link {
    animation: none;
    transition: none;
  }
}

/*
 * TryyCart 1.9.3 — equal-height homepage hero columns.
 *
 * The copy and visual are deliberately independent content stacks. Stretching
 * both stacks to the same grid track keeps the two action buttons and the
 * proof/trust rows on one lower baseline without viewport-specific offsets.
 */
@media (min-width: 981px) {
  body.tryycart-global-theme .hero-grid {
    align-items: stretch;
  }

  body.tryycart-global-theme .hero-copy,
  body.tryycart-global-theme .hero-map {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  body.tryycart-global-theme .hero-map {
    align-self: stretch;
  }

  body.tryycart-global-theme .hero-copy-actions,
  body.tryycart-global-theme .hero-support {
    margin-top: auto;
  }

  body.tryycart-global-theme .hero-copy-actions {
    width: 100%;
    padding-top: 16px;
  }

  body.tryycart-global-theme .hero-support {
    padding-top: 16px;
  }
}

body.tryycart-global-theme .hero-support .hero-metrics {
  align-items: stretch;
}

body.tryycart-global-theme .hero-support .hero-metrics > span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 58px;
  padding: 9px 10px;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon,
body.tryycart-global-theme .hero-support .hero-metrics > span > i {
  display: grid;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin: 0;
  place-items: center;
}

body.tryycart-global-theme .hero-support .hero-metric-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  color: inherit;
  font-style: normal;
  line-height: 1;
}

body.tryycart-global-theme .hero-support .hero-metric-copy b {
  align-self: auto;
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
}

body.tryycart-global-theme .hero-support .hero-metric-copy small {
  overflow: hidden;
  color: #c3d5ed !important;
  font-size: clamp(0.58rem, 0.66vw, 0.68rem);
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.tryycart-global-theme .hero-support .trust-line {
  width: 100%;
  min-height: 48px;
  padding: 6px 10px;
  border: 1px solid rgba(184, 210, 241, 0.22) !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055) !important;
}

body.tryycart-global-theme .hero-support .trust-line > span:last-child {
  min-width: 0;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .hero-support .hero-metrics > span {
    min-height: 54px;
  }
}

@media (max-width: 980px) {
  body.tryycart-global-theme .hero-copy,
  body.tryycart-global-theme .hero-map {
    display: block;
  }

  body.tryycart-global-theme .hero-copy-actions,
  body.tryycart-global-theme .hero-support {
    margin-top: 14px;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .hero-support .hero-metrics > span {
    min-height: 52px;
  }

  body.tryycart-global-theme .hero-support .trust-line {
    min-height: 46px;
  }
}

/*
 * TryyCart 1.9.4 — compact, viewport-aware homepage hero.
 * Only proportions and spacing change here; artwork, colour and behaviour stay
 * owned by the existing application.
 */
body.tryycart-global-theme .hero-grid {
  padding-block: clamp(18px, 1.8vw, 26px) 18px;
}

body.tryycart-global-theme .hero h1 {
  max-width: 620px;
  margin: 14px 0 12px;
  font-size: clamp(3rem, 3.55vw, 3.75rem);
  line-height: 0.98;
}

body.tryycart-global-theme .hero-copy > p {
  margin-block: 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.55;
}

body.tryycart-global-theme .hero .showcase-stage {
  height: clamp(250px, 18.5vw, 285px);
}

@media (min-width: 981px) {
  body.tryycart-global-theme .hero-copy-actions,
  body.tryycart-global-theme .hero-support {
    padding-top: 10px;
  }
}

body.tryycart-global-theme .hero-copy-actions .btn {
  min-height: 42px;
  padding-block: 8px;
}

body.tryycart-global-theme .hero-support {
  gap: 6px;
}

body.tryycart-global-theme .hero-support .hero-metrics {
  gap: 6px;
}

body.tryycart-global-theme .hero-support .hero-metrics > span {
  min-height: 42px;
  gap: 7px;
  padding: 5px 7px;
  border-radius: 10px;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon,
body.tryycart-global-theme .hero-support .hero-metrics > span > i {
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 7px;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon svg {
  width: 13px;
  height: 13px;
}

body.tryycart-global-theme .hero-support .hero-metric-copy {
  gap: 2px;
}

body.tryycart-global-theme .hero-support .hero-metric-copy b {
  font-size: clamp(0.76rem, 0.78vw, 0.86rem);
}

body.tryycart-global-theme .hero-support .hero-metric-copy small {
  font-size: clamp(0.52rem, 0.56vw, 0.6rem);
}

body.tryycart-global-theme .hero-support .trust-line {
  min-height: 38px;
  gap: 9px;
  padding: 4px 8px;
  border-radius: 10px;
}

body.tryycart-global-theme .hero-support .trust-line .avatars i {
  width: 27px;
  height: 27px;
  font-size: 0.61rem;
}

body.tryycart-global-theme .hero-support .trust-line b {
  font-size: 11px;
}

body.tryycart-global-theme .hero-support .trust-line small {
  font-size: 9px;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .hero h1 {
    font-size: clamp(2.75rem, 4.45vw, 3.4rem);
  }

  body.tryycart-global-theme .hero-support .hero-metrics > span {
    min-height: 42px;
  }
}

@media (max-width: 980px) {
  body.tryycart-global-theme .hero-grid {
    padding-block: 22px 20px;
  }

  body.tryycart-global-theme .hero h1 {
    max-width: 680px;
    font-size: clamp(2.55rem, 7.2vw, 3.2rem);
  }

  body.tryycart-global-theme .hero .showcase-stage {
    height: clamp(240px, 38vw, 275px);
  }

  body.tryycart-global-theme .hero-copy-actions,
  body.tryycart-global-theme .hero-support {
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .hero-grid {
    padding-block: 20px 18px;
  }

  body.tryycart-global-theme .hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  body.tryycart-global-theme .hero .showcase-stage {
    height: clamp(220px, 63vw, 255px);
  }

  body.tryycart-global-theme .hero-support .hero-metrics > span {
    min-height: 42px;
  }

  body.tryycart-global-theme .hero-support .trust-line {
    min-height: 40px;
  }
}

@media (max-width: 420px) {
  body.tryycart-global-theme .hero-copy-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.tryycart-global-theme .hero-copy-actions .btn {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 0.75rem;
  }

  body.tryycart-global-theme .hero .showcase-stage {
    height: 220px;
  }
}

/*
 * TryyCart 1.9.5 — slim proof rail and isolated icon sizing.
 * The original descendant selector also reached the SVG icon wrapper. These
 * final rules keep card dimensions on direct children only and fully reset the
 * nested icon so it cannot inherit the card's padding or minimum height.
 */
body.tryycart-global-theme .hero-support {
  gap: 4px;
}

body.tryycart-global-theme .hero-support .hero-metrics {
  gap: 5px;
}

body.tryycart-global-theme .hero-support .hero-metrics > span {
  box-sizing: border-box;
  height: 38px;
  min-height: 38px;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 9px;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon,
body.tryycart-global-theme .hero-support .hero-metrics > span > i {
  box-sizing: border-box;
  display: grid;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 6px;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,106,24,0.95), rgba(73,102,213,0.92)) !important;
  box-shadow: none !important;
}

body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon svg {
  display: block;
  width: 12px;
  height: 12px;
}

body.tryycart-global-theme .hero-support .hero-metric-copy {
  gap: 1px;
}

body.tryycart-global-theme .hero-support .hero-metric-copy b {
  font-size: clamp(0.72rem, 0.72vw, 0.8rem);
  line-height: 1;
}

body.tryycart-global-theme .hero-support .hero-metric-copy small {
  font-size: clamp(0.48rem, 0.5vw, 0.55rem);
  line-height: 1;
}

body.tryycart-global-theme .hero-support .trust-line {
  box-sizing: border-box;
  height: 34px;
  min-height: 34px;
  gap: 8px;
  padding: 3px 7px;
  border-radius: 9px;
}

body.tryycart-global-theme .hero-support .trust-line .avatars i {
  width: 23px;
  height: 23px;
  font-size: 0.54rem;
}

body.tryycart-global-theme .hero-support .trust-line b {
  font-size: 10px;
  line-height: 1.05;
}

body.tryycart-global-theme .hero-support .trust-line small {
  font-size: 8px;
  line-height: 1.05;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .hero-support .hero-metrics > span {
    height: 38px;
    min-height: 38px;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .hero-support .hero-metrics > span {
    height: 40px;
    min-height: 40px;
  }

  body.tryycart-global-theme .hero-support .trust-line {
    height: 36px;
    min-height: 36px;
  }
}

/*
 * TryyCart 1.9.6 — content-sized hero message and actions.
 * Flex columns normally stretch their children to the full track width. The
 * badge, calls to action and trust proof are concise controls, so keep them
 * intrinsic on larger screens and only allow fluid wrapping when space is
 * genuinely limited.
 */
body.tryycart-global-theme .hero-copy .hero-pill {
  box-sizing: border-box;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 6px 11px;
  white-space: nowrap;
}

body.tryycart-global-theme .hero h1 {
  max-width: 590px;
  margin: 12px 0 10px;
  font-size: clamp(2.65rem, 3.15vw, 3.3rem);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

body.tryycart-global-theme .hero-copy-actions {
  display: flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
}

body.tryycart-global-theme .hero-copy-actions .btn {
  width: auto;
  min-width: 0;
  min-height: 40px;
  padding: 8px 18px;
  white-space: nowrap;
}

body.tryycart-global-theme .hero-copy-actions .btn-primary {
  min-width: 174px;
}

body.tryycart-global-theme .hero-copy-actions .btn-glass {
  min-width: 154px;
}

body.tryycart-global-theme .hero-support .trust-line {
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  padding-inline: 7px 10px;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .hero h1 {
    max-width: 560px;
    font-size: clamp(2.5rem, 4.15vw, 3rem);
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .hero-copy .hero-pill {
    padding: 5px 9px;
    font-size: 0.61rem;
    letter-spacing: 0.075em;
  }

  body.tryycart-global-theme .hero h1 {
    max-width: 620px;
    margin: 10px 0 9px;
    font-size: clamp(2.05rem, 9.2vw, 2.6rem);
    line-height: 1.02;
  }

  body.tryycart-global-theme .hero-copy-actions {
    width: 100%;
  }

  body.tryycart-global-theme .hero-copy-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
  }
}

@media (max-width: 420px) {
  body.tryycart-global-theme .hero-copy .hero-pill {
    white-space: normal;
  }

  body.tryycart-global-theme .hero-copy-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.tryycart-global-theme .hero-copy-actions .btn-primary,
  body.tryycart-global-theme .hero-copy-actions .btn-glass {
    min-width: 0;
  }
}

/*
 * TryyCart 1.9.7 — compact confidence rail.
 * The proof points now use their natural content widths and share one concise
 * rail with a visually distinct shopper-confidence badge. The rail wraps as a
 * unit when a tablet cannot hold it, rather than compressing or overlapping.
 */
@media (min-width: 981px) {
  body.tryycart-global-theme .hero-support {
    display: flex;
    align-items: center;
    align-self: flex-start;
    flex-wrap: wrap;
    width: 100%;
    column-gap: 6px;
    row-gap: 5px;
  }

  body.tryycart-global-theme .hero-support .hero-metrics {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: 100%;
    gap: 4px;
  }

  body.tryycart-global-theme .hero-support .hero-metrics > span {
    flex: 0 0 auto;
    width: auto;
    height: 34px;
    min-height: 34px;
    gap: 5px;
    padding: 3px 6px;
    border-radius: 8px;
  }

  body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon,
  body.tryycart-global-theme .hero-support .hero-metrics > span > i {
    width: 19px;
    min-width: 19px;
    height: 19px;
    border-radius: 6px;
  }

  body.tryycart-global-theme .hero-support .hero-metrics .tc-line-icon svg {
    width: 10px;
    height: 10px;
  }

  body.tryycart-global-theme .hero-support .hero-metric-copy b {
    font-size: 0.7rem;
  }

  body.tryycart-global-theme .hero-support .hero-metric-copy small {
    font-size: 0.46rem;
  }
}

body.tryycart-global-theme .hero-support .trust-line {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 auto;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  height: 34px;
  min-height: 34px;
  gap: 7px;
  padding: 3px 10px 3px 11px;
  border: 1px solid rgba(150, 186, 235, 0.34) !important;
  border-radius: 9px;
  background:
    linear-gradient(105deg, rgba(255, 106, 24, 0.12), rgba(45, 86, 160, 0.24) 48%, rgba(80, 75, 190, 0.18)) !important;
  box-shadow: inset 3px 0 0 #ff6a18, 0 5px 14px rgba(2, 16, 39, 0.14) !important;
}

body.tryycart-global-theme .hero-support .trust-line::after {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 154, 255, 0.18), transparent 68%);
  content: "";
}

body.tryycart-global-theme .hero-support .trust-line .avatars {
  flex: 0 0 auto;
  padding-left: 2px;
}

body.tryycart-global-theme .hero-support .trust-line .avatars i {
  width: 21px;
  height: 21px;
  margin-left: -4px;
  border-width: 1.5px;
  font-size: 0.49rem;
  box-shadow: 0 2px 6px rgba(1, 15, 37, 0.2);
}

body.tryycart-global-theme .hero-support .trust-line .avatars i:first-child {
  margin-left: 0;
}

body.tryycart-global-theme .hero-support .trust-line b {
  font-size: 9.5px;
  letter-spacing: -0.01em;
}

body.tryycart-global-theme .hero-support .trust-line small {
  font-size: 7.5px;
}

@media (max-width: 980px) {
  body.tryycart-global-theme .hero-support .trust-line {
    height: 36px;
    min-height: 36px;
  }
}

@media (max-width: 520px) {
  body.tryycart-global-theme .hero-support .trust-line {
    width: 100%;
  }
}

/*
 * TryyCart 1.9.8 — editorial three-service chooser.
 * The service section uses one concise heading and three image-led choices.
 * Existing buttons retain their original application routes.
 */
body.tryycart-global-theme .services-section > .shell {
  padding: 24px 24px 22px;
}

body.tryycart-global-theme .services-section > .shell::before,
body.tryycart-global-theme .services-section > .shell::after {
  display: none;
  content: none;
}

body.tryycart-global-theme .services-heading {
  margin-bottom: 16px;
}

body.tryycart-global-theme .services-heading-line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(137, 158, 184, 0.42);
}

body.tryycart-global-theme .services-heading-label {
  position: relative;
  display: flex;
  min-width: max-content;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(255, 106, 24, 0.32);
  border-radius: 12px;
  padding: 7px 12px 7px 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #102849, #1b467b);
  box-shadow: 0 7px 18px rgba(15, 40, 73, 0.15);
}

body.tryycart-global-theme .services-heading-label::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(#ff6a18, #ff9c52);
  content: "";
}

body.tryycart-global-theme .services-heading-label small {
  color: #ffb17e;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.tryycart-global-theme .services-heading-label b {
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

body.tryycart-global-theme .services-heading h2 {
  margin: 0;
  color: #102849;
  font-size: clamp(1.75rem, 2.65vw, 2.5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.tryycart-global-theme .services-heading h2 strong {
  font-weight: 900;
}

body.tryycart-global-theme .services-heading .section-intro {
  max-width: 940px;
  margin: 9px 0 0;
  color: #43566f;
  font-size: 0.9rem !important;
  line-height: 1.48 !important;
}

body.tryycart-global-theme .services-section .service-network {
  display: none;
}

body.tryycart-global-theme .services-section .service-grid {
  gap: 14px;
}

body.tryycart-global-theme .services-section .service-card {
  --service-accent: #e6520a;
  --service-accent-soft: rgba(230, 82, 10, 0.12);
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 326px;
  overflow: hidden;
  border: 1px solid #b9c8d8;
  border-top: 3px solid var(--service-accent);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f5f8fb);
  box-shadow: 0 12px 28px rgba(20, 46, 78, 0.12);
}

body.tryycart-global-theme .services-section .service-card.blue {
  --service-accent: #315fd4;
  --service-accent-soft: rgba(49, 95, 212, 0.12);
}

body.tryycart-global-theme .services-section .service-card.green {
  --service-accent: #07865f;
  --service-accent-soft: rgba(7, 134, 95, 0.12);
}

body.tryycart-global-theme .services-section .service-card::after {
  position: absolute;
  z-index: 1;
  top: -70px;
  right: -86px;
  width: 265px;
  height: 430px;
  background: linear-gradient(160deg, var(--service-accent-soft), transparent 72%);
  content: "";
  transform: rotate(8deg);
  pointer-events: none;
}

body.tryycart-global-theme .services-section .service-art {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 58%;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
  background: none !important;
}

body.tryycart-global-theme .services-section .service-art::before {
  z-index: 2;
  background:
    linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0.82) 20%, transparent 56%),
    linear-gradient(180deg, transparent 54%, rgba(7, 25, 52, 0.32));
  background-size: auto;
  opacity: 1;
}

body.tryycart-global-theme .services-section .service-primary-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
  transition: transform 360ms ease;
}

body.tryycart-global-theme .services-section .service-card:hover .service-primary-image {
  transform: scale(1.035);
}

body.tryycart-global-theme .services-section .service-art > small,
body.tryycart-global-theme .services-section .service-art > b,
body.tryycart-global-theme .services-section .service-inset {
  display: none;
}

body.tryycart-global-theme .services-section .service-body {
  position: relative;
  z-index: 3;
  display: flex;
  width: 66%;
  min-height: 326px;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px 14px 17px 18px;
  background: linear-gradient(90deg, #f9fbfd 0%, #f9fbfd 74%, rgba(249, 251, 253, 0.78) 88%, transparent 100%);
}

body.tryycart-global-theme .services-section .service-index {
  margin-bottom: 4px;
  color: var(--service-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.tryycart-global-theme .services-section .card-kicker {
  color: var(--service-accent);
  font-size: 0.54rem !important;
  letter-spacing: 0.08em;
}

body.tryycart-global-theme .services-section .service-body h3 {
  margin: 5px 0 7px;
  color: #0d2342;
  font-size: 1.18rem;
  line-height: 1.08;
}

body.tryycart-global-theme .services-section .service-body p {
  min-height: 66px;
  margin: 0;
  color: #52647c;
  font-size: 0.7rem !important;
  line-height: 1.48 !important;
}

#tc-page-home .services-section .service-body ul {
  display: grid;
  width: 100%;
  gap: 6px;
  margin: 11px 0 13px;
  padding: 0;
}

#tc-page-home .services-section .service-body li {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #42566f;
  font-size: 0.63rem;
  line-height: 1.2;
}

#tc-page-home .services-section .service-body li::first-letter {
  color: var(--service-accent);
}

#tc-page-home .services-section .service-body .text-link {
  width: fit-content;
  min-height: 36px;
  margin-top: auto;
  border-radius: 9px;
  padding: 0 13px;
  background: var(--service-accent);
  color: #fff !important;
  font-size: 0.72rem;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--service-accent) 24%, transparent);
}

@media (max-width: 1040px) {
  body.tryycart-global-theme .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-body {
    min-height: 218px;
  }

  body.tryycart-global-theme .services-section .service-art {
    width: 49%;
  }

  body.tryycart-global-theme .services-section .service-body {
    width: 62%;
    padding: 16px 18px;
  }

  body.tryycart-global-theme .services-section .service-body p {
    min-height: 0;
    max-width: 520px;
  }

  #tc-page-home .services-section .service-body ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block: 9px 11px;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .services-section > .shell {
    padding: 17px 14px 15px;
  }

  body.tryycart-global-theme .services-heading-line {
    align-items: flex-start;
    gap: 11px;
  }

  body.tryycart-global-theme .services-heading-label {
    padding: 6px 9px 6px 12px;
  }

  body.tryycart-global-theme .services-heading-label small {
    font-size: 0.42rem;
  }

  body.tryycart-global-theme .services-heading-label b {
    font-size: 0.73rem;
  }

  body.tryycart-global-theme .services-heading h2 {
    font-size: clamp(1.35rem, 5.8vw, 1.85rem);
  }

  body.tryycart-global-theme .services-heading .section-intro {
    font-size: 0.8rem !important;
  }

  body.tryycart-global-theme .services-section .service-card {
    display: block;
    grid-template-columns: none;
  }
}

@media (max-width: 620px) {
  body.tryycart-global-theme .services-heading-line {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-heading-label {
    width: fit-content;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-body {
    min-height: 0;
  }

  body.tryycart-global-theme .services-section .service-art {
    position: relative;
    inset: auto;
    width: 100%;
    height: 145px;
    min-height: 145px;
    clip-path: none;
  }

  body.tryycart-global-theme .services-section .service-art::before {
    background: linear-gradient(180deg, transparent 50%, rgba(7, 25, 52, 0.38));
  }

  body.tryycart-global-theme .services-section .service-body {
    width: 100%;
    padding: 14px 15px 15px;
    background: #f9fbfd;
  }

  body.tryycart-global-theme .services-section .service-body p {
    font-size: 0.72rem !important;
  }

  #tc-page-home .services-section .service-body ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*
 * TryyCart 1.10.0 — illustrated services and smart consolidation story.
 * Keeps service routing and commerce logic intact; this layer changes presentation only.
 */
body.tryycart-global-theme .services-section > .shell {
  max-width: 1480px;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid #d8d8d2;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 9%, rgba(255, 119, 36, 0.09), transparent 25%),
    radial-gradient(circle at 82% 10%, rgba(118, 74, 194, 0.07), transparent 24%),
    linear-gradient(145deg, #fbfaf7 0%, #f7f7f4 52%, #f5f7f8 100%);
  box-shadow: 0 22px 55px rgba(27, 42, 59, 0.14);
}

body.tryycart-global-theme .services-section .services-heading {
  margin-bottom: 20px;
}

body.tryycart-global-theme .services-section .services-heading-line {
  justify-content: center;
}

body.tryycart-global-theme .services-section .services-heading .section-intro {
  margin: 8px auto 0;
  text-align: center;
}

body.tryycart-global-theme .services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.tryycart-global-theme .services-section .service-card {
  --service-accent: #ff6a00;
  --service-soft: #fff0e1;
  min-height: 430px;
  border: 1px solid #e7e3dc;
  border-top: 0;
  border-radius: 17px;
  background:
    radial-gradient(circle at 89% 28%, var(--service-soft), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fffdfa 68%, #f9f6f0 100%);
  box-shadow: 0 13px 30px rgba(41, 43, 48, 0.1);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.tryycart-global-theme .services-section .service-card.teal {
  --service-accent: #009d92;
  --service-soft: #d8f7f2;
}

body.tryycart-global-theme .services-section .service-card.purple {
  --service-accent: #7651c7;
  --service-soft: #eee6ff;
}

body.tryycart-global-theme .services-section .service-card:hover,
body.tryycart-global-theme .services-section .service-card:focus-within {
  border-color: color-mix(in srgb, var(--service-accent) 36%, #e7e3dc);
  box-shadow: 0 18px 38px rgba(41, 43, 48, 0.16);
  transform: translateY(-5px);
}

body.tryycart-global-theme .services-section .service-card::after {
  top: -58px;
  right: -92px;
  width: 290px;
  height: 470px;
  border-radius: 48% 0 0 48%;
  background: linear-gradient(160deg, var(--service-soft), transparent 76%);
  opacity: 0.9;
  transform: rotate(7deg);
}

body.tryycart-global-theme .services-section .service-art {
  z-index: 1;
  top: 78px;
  right: 0;
  bottom: 0;
  width: 60%;
  height: auto;
  clip-path: none;
  border-radius: 0 0 17px 0;
}

body.tryycart-global-theme .services-section .service-art::before {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 17%, rgba(255, 255, 255, 0.42) 45%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 32%, rgba(255, 255, 255, 0.08) 100%);
}

body.tryycart-global-theme .services-section .service-primary-image {
  object-position: center;
  filter: brightness(1.12) saturate(0.96) contrast(0.94);
}

body.tryycart-global-theme .services-section .service-body {
  width: 63%;
  min-height: 430px;
  padding: 27px 14px 23px 23px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 73%, rgba(255, 255, 255, 0.4) 92%, transparent 100%);
}

body.tryycart-global-theme .services-section .service-index {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background: var(--service-accent);
  color: #fff;
  font-size: 1.03rem;
  letter-spacing: 0;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--service-accent) 28%, transparent);
}

body.tryycart-global-theme .services-section .card-kicker {
  color: var(--service-accent);
  font-size: 0.62rem !important;
  font-weight: 900;
}

body.tryycart-global-theme .services-section .service-body h3 {
  margin: 6px 0 8px;
  color: #172338;
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

body.tryycart-global-theme .services-section .service-body p {
  min-height: 69px;
  color: #4e5c70;
  font-size: 0.76rem !important;
  line-height: 1.5 !important;
}

#tc-page-home .services-section .service-body ul {
  width: 108%;
  gap: 8px;
  margin: 14px 0 17px;
}

#tc-page-home .services-section .service-body li {
  color: #46556a;
  font-size: 0.69rem;
  font-weight: 700;
}

#tc-page-home .services-section .service-body .text-link {
  min-height: 42px;
  border-radius: 9px;
  padding: 0 16px;
  font-size: 0.76rem;
  box-shadow: 0 9px 20px color-mix(in srgb, var(--service-accent) 26%, transparent);
  transition: transform 180ms ease, filter 180ms ease;
}

#tc-page-home .services-section .service-body .text-link:hover,
#tc-page-home .services-section .service-body .text-link:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

body.tryycart-global-theme .services-section .smart-save-card {
  display: block;
  margin-top: 18px;
  border: 1px solid #e4e3dd;
  border-radius: 18px;
  padding: clamp(20px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 118, 33, 0.07), transparent 28%),
    radial-gradient(circle at 73% 32%, rgba(0, 157, 146, 0.07), transparent 29%),
    #fff;
  box-shadow: 0 13px 32px rgba(41, 43, 48, 0.09);
}

body.tryycart-global-theme .services-section .smart-save-head {
  max-width: 790px;
  margin: 0 auto 22px;
  text-align: center;
}

body.tryycart-global-theme .services-section .smart-save-head .combine-kicker {
  display: inline-flex;
  border: 1px solid #a9ded7;
  border-radius: 999px;
  padding: 6px 11px;
  background: #effbf9;
  color: #007f76;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

body.tryycart-global-theme .services-section .smart-save-head h3 {
  margin: 9px 0 4px;
  color: #182338;
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

body.tryycart-global-theme .services-section .smart-save-head h3 em {
  color: #009d92;
  font-style: normal;
}

body.tryycart-global-theme .services-section .smart-save-head p {
  margin: 0;
  color: #4e5c70;
  font-size: 0.88rem !important;
}

body.tryycart-global-theme .services-section .smart-save-head > small {
  display: block;
  margin-top: 5px;
  color: #778397;
  font-size: 0.6rem;
}

body.tryycart-global-theme .services-section .smart-save-main {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

body.tryycart-global-theme .services-section .smart-save-journey {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) 62px minmax(230px, 0.88fr);
  gap: 10px;
  align-items: center;
  min-height: 280px;
  border-radius: 15px;
  padding: 17px;
  background: linear-gradient(145deg, #fffdf9, #f8fcfb);
}

body.tryycart-global-theme .services-section .smart-save-sources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

body.tryycart-global-theme .services-section .smart-source {
  --source-accent: #ff6a00;
  display: grid;
  min-height: 152px;
  grid-template-rows: auto 1fr auto auto;
  place-items: center;
  border: 1px solid #e3e5e7;
  border-radius: 12px;
  padding: 10px 7px 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 18px rgba(37, 49, 63, 0.08);
}

body.tryycart-global-theme .services-section .smart-source.teal {
  --source-accent: #009d92;
}

body.tryycart-global-theme .services-section .smart-source.purple {
  --source-accent: #7651c7;
}

body.tryycart-global-theme .services-section .smart-source-cost {
  border: 1px solid #e6e7e9;
  border-radius: 7px;
  padding: 4px 7px;
  background: #fff;
  color: #657187;
  font-size: 0.55rem;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(37, 49, 63, 0.08);
}

body.tryycart-global-theme .services-section .smart-source > .tc-line-icon {
  width: 49px;
  height: 49px;
  margin: 10px 0;
  border-radius: 10px;
  padding: 10px;
  background: color-mix(in srgb, var(--source-accent) 12%, white);
  color: var(--source-accent);
}

body.tryycart-global-theme .services-section .smart-source b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1d2a3f;
  font-size: 0.7rem;
}

body.tryycart-global-theme .services-section .smart-source b i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--source-accent);
  color: #fff;
  font-size: 0.55rem;
  font-style: normal;
}

body.tryycart-global-theme .services-section .smart-source small {
  color: #6b7688;
  font-size: 0.57rem;
}

body.tryycart-global-theme .services-section .smart-save-merge {
  display: grid;
  gap: 21px;
  align-content: center;
}

body.tryycart-global-theme .services-section .flow-line {
  position: relative;
  display: block;
  color: #ff6a00;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: right;
}

body.tryycart-global-theme .services-section .flow-line::before {
  position: absolute;
  top: 50%;
  right: 16px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

body.tryycart-global-theme .services-section .flow-line.teal {
  color: #009d92;
}

body.tryycart-global-theme .services-section .flow-line.purple {
  color: #7651c7;
}

body.tryycart-global-theme .services-section .smart-shipment {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid #eadfce;
  border-radius: 15px;
  padding: 22px 15px;
  background: linear-gradient(145deg, #fff9ef, #f0fbf9);
  text-align: center;
}

body.tryycart-global-theme .services-section .smart-shipment-plane {
  position: absolute;
  top: 13px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3c67b9;
  font-size: 0.5rem;
  font-weight: 800;
}

body.tryycart-global-theme .services-section .smart-shipment-plane .tc-line-icon {
  width: 31px;
  height: 31px;
}

body.tryycart-global-theme .services-section .smart-shipment-box {
  display: grid;
  width: 94px;
  height: 83px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 10px 10px 19px 19px;
  background: linear-gradient(145deg, #d99a56, #b87332);
  color: #fff7ed;
  box-shadow: 0 13px 22px rgba(113, 73, 35, 0.2);
}

body.tryycart-global-theme .services-section .smart-shipment-box .tc-line-icon {
  width: 49px;
  height: 49px;
}

body.tryycart-global-theme .services-section .smart-shipment > b {
  color: #1d2a3f;
  font-size: 0.94rem;
}

body.tryycart-global-theme .services-section .smart-shipment > small {
  margin-top: 3px;
  color: #69768a;
  font-size: 0.58rem;
}

body.tryycart-global-theme .services-section .smart-shipment > strong {
  margin-top: 14px;
  border-radius: 10px;
  padding: 8px 11px;
  background: linear-gradient(135deg, #00a99d, #008d82);
  color: #fff;
  font-size: 0.65rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 157, 146, 0.24);
}

body.tryycart-global-theme .services-section .smart-shipment > strong span {
  display: block;
  margin-top: 2px;
  font-size: 1.55rem;
}

body.tryycart-global-theme .services-section .smart-save-compare {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  border: 1px solid #e2e5e8;
  border-radius: 15px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(37, 49, 63, 0.08);
}

body.tryycart-global-theme .services-section .example-label {
  margin-bottom: 10px;
  color: #8290a4;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
}

body.tryycart-global-theme .services-section .compare-columns {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1fr;
}

body.tryycart-global-theme .services-section .compare-columns > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 8px 10px;
}

body.tryycart-global-theme .services-section .compare-columns > div + div {
  border-left: 1px solid #e6e8eb;
}

body.tryycart-global-theme .services-section .compare-columns b {
  color: #e24f42;
  font-size: 0.57rem;
  text-align: center;
}

body.tryycart-global-theme .services-section .compare-with b,
body.tryycart-global-theme .services-section .compare-with strong {
  color: #008e75;
}

body.tryycart-global-theme .services-section .compare-columns p {
  min-height: 39px;
  margin: 0;
  color: #59677a;
  font-size: 0.6rem !important;
  line-height: 1.35 !important;
  text-align: center;
}

body.tryycart-global-theme .services-section .compare-columns span {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e9ebee;
  border-radius: 8px;
  padding: 7px;
  color: #48576c;
  font-size: 0.56rem;
  font-weight: 700;
}

body.tryycart-global-theme .services-section .compare-columns .tc-line-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  border-radius: 6px;
  padding: 4px;
  background: #eef4ff;
  color: #315fd4;
}

body.tryycart-global-theme .services-section .compare-columns strong {
  margin-top: auto;
  border-top: 1px solid #e9ebee;
  padding-top: 9px;
  color: #d94436;
  font-size: 0.72rem;
  text-align: center;
}

body.tryycart-global-theme .services-section .smart-benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid #e5e7ea;
  border-radius: 13px;
  padding: 11px 5px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(37, 49, 63, 0.06);
}

body.tryycart-global-theme .services-section .smart-benefits > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
}

body.tryycart-global-theme .services-section .smart-benefits > span + span {
  border-left: 1px solid #e8eaed;
}

body.tryycart-global-theme .services-section .smart-benefits .tc-line-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  color: #009d92;
}

body.tryycart-global-theme .services-section .smart-benefits span span {
  display: grid;
  gap: 2px;
}

body.tryycart-global-theme .services-section .smart-benefits b {
  color: #203047;
  font-size: 0.62rem;
  white-space: nowrap;
}

body.tryycart-global-theme .services-section .smart-benefits small {
  color: #758196;
  font-size: 0.49rem;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  body.tryycart-global-theme .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-body {
    min-height: 280px;
  }

  body.tryycart-global-theme .services-section .service-art {
    top: 0;
    width: 52%;
  }

  body.tryycart-global-theme .services-section .service-body {
    width: 58%;
  }

  body.tryycart-global-theme .services-section .service-body p {
    min-height: 0;
    max-width: 560px;
  }

  body.tryycart-global-theme .services-section .smart-save-main {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .smart-save-compare {
    min-height: 235px;
  }

  body.tryycart-global-theme .services-section .smart-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(4) {
    border-left: 0;
  }

  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(n + 4) {
    border-top: 1px solid #e8eaed;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme .services-section > .shell {
    border-radius: 18px;
    padding: 14px;
  }

  body.tryycart-global-theme .services-section .services-heading-line {
    justify-content: flex-start;
  }

  body.tryycart-global-theme .services-section .services-heading .section-intro {
    margin-left: 0;
    text-align: left;
  }

  body.tryycart-global-theme .services-section .smart-save-journey {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  body.tryycart-global-theme .services-section .smart-save-sources {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.tryycart-global-theme .services-section .smart-save-merge {
    display: flex;
    justify-content: center;
  }

  body.tryycart-global-theme .services-section .flow-line {
    width: 30%;
    transform: rotate(90deg);
  }

  body.tryycart-global-theme .services-section .smart-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(3),
  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(5) {
    border-left: 0;
  }

  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(n + 3) {
    border-top: 1px solid #e8eaed;
  }
}

@media (max-width: 620px) {
  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-body {
    min-height: 430px;
  }

  body.tryycart-global-theme .services-section .service-art {
    position: absolute;
    top: 175px;
    right: 0;
    bottom: 0;
    width: 76%;
    height: auto;
    min-height: 0;
    border-radius: 0 0 17px 0;
  }

  body.tryycart-global-theme .services-section .service-art::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.86) 20%, transparent 59%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 42%);
  }

  body.tryycart-global-theme .services-section .service-body {
    width: 79%;
    padding: 19px 12px 17px 17px;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 72%, rgba(255, 255, 255, 0.45) 95%, transparent);
  }

  body.tryycart-global-theme .services-section .service-index {
    width: 36px;
    height: 36px;
    margin-bottom: 9px;
    font-size: 0.88rem;
  }

  body.tryycart-global-theme .services-section .service-body p {
    min-height: 0;
    font-size: 0.75rem !important;
  }

  #tc-page-home .services-section .service-body ul {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  body.tryycart-global-theme .services-section .smart-save-card {
    padding: 16px 11px;
  }

  body.tryycart-global-theme .services-section .smart-save-head h3 {
    font-size: 1.75rem;
  }

  body.tryycart-global-theme .services-section .smart-save-sources {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .smart-source {
    min-height: 94px;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 9px;
    justify-items: start;
    text-align: left;
  }

  body.tryycart-global-theme .services-section .smart-source-cost {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }

  body.tryycart-global-theme .services-section .smart-source > .tc-line-icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  body.tryycart-global-theme .services-section .smart-source b,
  body.tryycart-global-theme .services-section .smart-source small {
    grid-column: 3;
  }

  body.tryycart-global-theme .services-section .compare-columns {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .compare-columns > div + div {
    border-top: 1px solid #e6e8eb;
    border-left: 0;
  }

  body.tryycart-global-theme .services-section .smart-benefits {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme .services-section .smart-benefits > span,
  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(3),
  body.tryycart-global-theme .services-section .smart-benefits > span:nth-child(5) {
    border-top: 1px solid #e8eaed;
    border-left: 0;
  }

  body.tryycart-global-theme .services-section .smart-benefits > span:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.tryycart-global-theme .services-section .service-card,
  body.tryycart-global-theme .services-section .service-primary-image,
  #tc-page-home .services-section .service-body .text-link {
    transition: none;
  }
}

@media (max-width: 420px) {
  body.tryycart-global-theme .services-section .service-art {
    height: 132px;
    min-height: 132px;
  }

  #tc-page-home .services-section .service-body ul {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/*
 * TryyCart 1.10.2 FINAL CASCADE — rebuilt Our Services wireframe.
 * Deliberately last so legacy presentation layers cannot reintroduce overlap.
 */
body.tryycart-global-theme #tc-page-home .services-section .services-heading {
  margin: 0 0 22px;
  border-bottom: 1px solid #b9c7d6;
  padding: 0 0 17px;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #102849;
  font-size: clamp(2.4rem, 4.6vw, 4.75rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
  display: flex;
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: baseline;
  gap: 7px;
  border: 0;
  border-left: 4px solid #ff6a18;
  border-radius: 0;
  padding: 2px 0 2px 15px;
  background: transparent;
  box-shadow: none;
  text-transform: none;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise::before {
  display: none;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
  color: #e6520a;
  font-size: clamp(0.61rem, 0.8vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
  color: #233754;
  font-size: clamp(0.9rem, 1.22vw, 1.18rem);
  font-weight: 850;
  letter-spacing: -0.015em;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading .section-intro {
  max-width: none;
  margin: 12px 0 0;
  color: #52657e;
  font-size: clamp(0.82rem, 0.94vw, 0.96rem) !important;
  text-align: left;
}

body.tryycart-global-theme #tc-page-home .services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 19px);
}

body.tryycart-global-theme #tc-page-home .services-section .service-card,
body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
  position: relative;
  display: grid !important;
  min-width: 0;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  grid-template-areas: "copy art";
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--service-accent) 28%, #cbd5e1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 43, 74, 0.13);
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
  box-shadow: 0 20px 42px rgba(18, 43, 74, 0.18);
  transform: translateY(-4px);
}

body.tryycart-global-theme #tc-page-home .services-section .service-card::after {
  display: none;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body {
  position: relative;
  z-index: 3;
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 390px;
  grid-area: copy;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 19px 20px 22px;
  background:
    radial-gradient(circle at 12% 8%, var(--service-soft), transparent 23%),
    linear-gradient(90deg, #fff 0%, #fff 86%, rgba(255, 255, 255, 0.92) 100%);
}

body.tryycart-global-theme #tc-page-home .services-section .service-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

body.tryycart-global-theme #tc-page-home .services-section .service-index {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin: 0;
  place-items: center;
  border-radius: 10px;
  background: var(--service-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

body.tryycart-global-theme #tc-page-home .services-section .card-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 36%, #fff);
  border-radius: 999px;
  padding: 0 10px;
  background: color-mix(in srgb, var(--service-accent) 9%, #fff);
  color: color-mix(in srgb, var(--service-accent) 82%, #102849);
  font-size: 0.58rem !important;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.1;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body h3 {
  max-width: none;
  margin: 0 0 8px;
  color: #102849;
  font-size: clamp(1.28rem, 1.55vw, 1.55rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body p {
  max-width: none;
  min-height: 0;
  margin: 0;
  color: #4f6178;
  font-size: clamp(0.69rem, 0.75vw, 0.76rem) !important;
  line-height: 1.48 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body ul {
  display: grid !important;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0 17px;
  padding: 0;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 5px;
  margin: 0;
  color: #30455f;
  font-size: clamp(0.64rem, 0.7vw, 0.7rem);
  font-weight: 750;
  line-height: 1.28;
}

body.tryycart-global-theme #tc-page-home .services-section .service-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 50%, #fff);
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-accent) 10%, #fff);
  color: var(--service-accent);
  font-size: 0.62rem;
  font-weight: 900;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body .text-link {
  width: fit-content;
  min-height: 41px;
  margin-top: auto;
  align-self: flex-start;
  border-radius: 10px;
  padding: 0 16px;
  background: var(--service-accent);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 850;
}

body.tryycart-global-theme #tc-page-home .services-section .service-art {
  position: relative;
  z-index: 1;
  inset: auto;
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 100%;
  grid-area: art;
  overflow: hidden;
  border-radius: 0 21px 21px 0;
  background: var(--service-soft) !important;
  clip-path: none;
}

body.tryycart-global-theme #tc-page-home .services-section .service-art::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.78) 32%, rgba(255, 255, 255, 0.24) 70%, transparent 100%);
  content: "";
  opacity: 1;
  pointer-events: none;
}

body.tryycart-global-theme #tc-page-home .services-section .service-primary-image {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
  transform: scale(1.01);
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:hover .service-primary-image,
body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within .service-primary-image {
  filter: saturate(1) contrast(1) brightness(1.03);
  transform: scale(1.045);
}

@media (max-width: 1180px) and (min-width: 901px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
    min-height: 315px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-body {
    min-height: 315px;
    padding: 22px 24px;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-body ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
    width: 100%;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
    min-height: 305px;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-body {
    min-height: 305px;
  }
}

@media (max-width: 640px) {
  body.tryycart-global-theme #tc-page-home .services-section .services-heading h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
    display: grid;
    gap: 3px;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
    white-space: normal;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art";
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-body {
    width: auto;
    min-height: 0;
    padding: 18px 16px 17px;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-art {
    width: auto;
    height: 235px;
    min-height: 235px;
    border-radius: 0 0 21px 21px;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-art::before {
    inset: 0 0 auto;
    width: 100%;
    height: 28%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.65) 33%, transparent 100%);
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-primary-image {
    object-position: center 52%;
  }
}

/*
 * TryyCart 1.10.4 — compact fourth consolidation card.
 * The first three service cards retain their 1.10.3 presentation.
 */
body.tryycart-global-theme #tc-page-home .services-section .smart-save-card {
  display: none !important;
}

@media (min-width: 1440px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 901px) and (max-width: 1439px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline,
body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline:hover,
body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline:focus-within {
  --service-accent: #079f8f;
  --service-soft: #dcf8f2;
  display: block !important;
  min-height: 404px !important;
  height: auto !important;
  overflow: hidden !important;
  border: 1px solid #a9d8d0 !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(76, 194, 232, 0.19), transparent 29%),
    radial-gradient(circle at 12% 82%, rgba(255, 104, 24, 0.12), transparent 31%),
    linear-gradient(145deg, #fffdf9 0%, #f5fbfa 58%, #eef8ff 100%) !important;
  box-shadow: 0 16px 34px rgba(18, 43, 74, 0.13) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline:hover,
body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline:focus-within {
  box-shadow: 0 20px 42px rgba(18, 43, 74, 0.18) !important;
  transform: translateY(-4px) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline::before {
  position: absolute;
  z-index: 0;
  top: -34px;
  right: -38px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(7, 159, 143, 0.14);
  border-radius: 50%;
  background: rgba(220, 248, 242, 0.55);
  content: "";
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline-body {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  min-height: 404px !important;
  height: 100% !important;
  flex-direction: column !important;
  padding: 22px 19px 19px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline h3 {
  margin: 0 0 8px !important;
  color: #102849 !important;
  font-size: clamp(1.28rem, 1.55vw, 1.55rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline h3 em {
  color: #079f8f !important;
  font-style: normal !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline > .smart-save-inline-body > p {
  margin: 0 !important;
  color: #4f6178 !important;
  font-size: clamp(0.69rem, 0.75vw, 0.76rem) !important;
  line-height: 1.48 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-compact-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(94px, 0.82fr);
  gap: 6px;
  align-items: center;
  min-height: 164px;
  margin: 14px 0 15px;
  border: 1px solid #d9e5ea;
  border-radius: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 #fff;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-sources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source {
  --mini-accent: #ff6818;
  display: grid;
  min-width: 0;
  min-height: 86px;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--mini-accent) 31%, #d9e2eb);
  border-radius: 11px;
  padding: 7px 3px;
  background: color-mix(in srgb, var(--mini-accent) 6%, #fff);
  color: #263a55;
  text-align: center;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source.teal {
  --mini-accent: #079f8f;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source.purple {
  --mini-accent: #7651c7;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source .tc-line-icon {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  padding: 5px;
  background: var(--mini-accent);
  color: #fff;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source b {
  overflow: hidden;
  color: #2c405b;
  font-size: 0.48rem;
  font-weight: 850;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-merge-arrow {
  color: #079f8f;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment {
  position: relative;
  display: grid;
  min-height: 134px;
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 1px solid #8bd3c8;
  border-radius: 13px;
  padding: 10px 5px 8px;
  background: linear-gradient(150deg, #ecfbf7, #f5f3ff);
  text-align: center;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-inline-plane {
  position: absolute;
  top: 7px;
  right: 7px;
  color: #2e6bce;
  transform: rotate(-9deg);
}

body.tryycart-global-theme #tc-page-home .services-section .smart-inline-plane .tc-line-icon {
  width: 23px;
  height: 23px;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-inline-box {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #ff8a3d, #ff6818);
  box-shadow: 0 8px 17px rgba(255, 104, 24, 0.22);
  color: #fff;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-inline-box .tc-line-icon {
  width: 25px;
  height: 25px;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment > b {
  color: #203653;
  font-size: 0.53rem;
  line-height: 1.15;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment > strong {
  display: block;
  color: #078276;
  font-size: 0.52rem;
  line-height: 1;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment > strong span {
  display: block;
  margin-top: 2px;
  color: #079f8f;
  font-size: 1.18rem;
  font-weight: 950;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline .text-link {
  width: fit-content;
  min-height: 41px;
  margin-top: auto;
  align-self: flex-start;
  border-radius: 10px;
  padding: 0 14px;
  background: #079f8f;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 850;
}

@media (max-width: 640px) {
  body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline,
  body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline-body {
    min-height: 0 !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-save-compact-flow {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-merge-arrow {
    transform: rotate(90deg);
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment {
    min-height: 122px;
  }
}

/*
 * TryyCart 1.10.5 — three services above one complete consolidation journey.
 */
body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
  gap: 12px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading h2 {
  min-height: 72px !important;
  border: 1px solid #294c78 !important;
  border-left: 7px solid #ff6818 !important;
  border-radius: 16px !important;
  padding: 12px 23px 13px 18px !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 132, 62, 0.24), transparent 36%),
    linear-gradient(135deg, #0e2a4e 0%, #173f70 62%, #245a90 100%) !important;
  box-shadow:
    0 13px 28px rgba(15, 40, 73, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(1.92rem, 2.75vw, 2.85rem) !important;
  letter-spacing: -0.05em !important;
  text-shadow: 0 2px 10px rgba(2, 18, 39, 0.24) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading h2::after {
  right: 20px !important;
  bottom: 8px !important;
  left: 18px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #ff7a29 0%, #ffba73 38%, #47c9e9 100%) !important;
  opacity: 1 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
  min-height: 72px !important;
  border: 1px solid #abc0d6 !important;
  border-radius: 16px !important;
  padding: 12px 20px !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(47, 121, 223, 0.11), transparent 30%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 252, 0.98)) !important;
  box-shadow:
    0 10px 24px rgba(18, 43, 74, 0.1),
    inset 0 1px 0 #fff !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise::before {
  width: 5px !important;
  height: 38px !important;
  flex-basis: 5px !important;
  background: linear-gradient(180deg, #ff6818, #ff9b5d) !important;
  box-shadow: 0 4px 10px rgba(255, 104, 24, 0.22) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(0.61rem, 0.7vw, 0.72rem) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(0.88rem, 1vw, 1.04rem) !important;
  letter-spacing: -0.024em !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading .section-intro {
  margin-top: 10px !important;
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(0.8rem, 0.92vw, 0.94rem) !important;
  font-weight: 540 !important;
  letter-spacing: 0.004em !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-grid,
body.tryycart-global-theme #tc-page-home .services-section .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art::before {
  width: 26% !important;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.68) 24%, rgba(255, 255, 255, 0.17) 64%, transparent 100%) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-primary-image {
  filter: saturate(1.04) contrast(1.02) brightness(1.03) !important;
  object-position: center !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline,
body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline:hover,
body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline:focus-within {
  grid-column: 1 / -1 !important;
  display: block !important;
  min-height: 236px !important;
  height: auto !important;
  margin-top: 3px !important;
  border-color: #9fc8c2 !important;
  background:
    radial-gradient(circle at 84% 12%, rgba(77, 188, 230, 0.18), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255, 104, 24, 0.11), transparent 31%),
    linear-gradient(112deg, #fffaf4 0%, #f8fcfb 44%, #eef9f7 73%, #edf6ff 100%) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline-body {
  display: grid !important;
  min-height: 236px !important;
  height: auto !important;
  grid-template-columns: minmax(245px, 0.78fr) minmax(610px, 2.15fr) !important;
  grid-template-areas:
    "meta flow"
    "title flow"
    "copy flow"
    "action flow" !important;
  column-gap: clamp(20px, 2.5vw, 38px) !important;
  row-gap: 5px !important;
  align-items: center !important;
  padding: 20px 23px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline .service-meta {
  grid-area: meta !important;
  align-self: end !important;
  margin-bottom: 3px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline h3 {
  grid-area: title !important;
  align-self: end !important;
  margin: 0 !important;
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(1.62rem, 2.05vw, 2.12rem) !important;
  line-height: 0.98 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline > .smart-save-inline-body > p {
  grid-area: copy !important;
  align-self: start !important;
  max-width: 380px !important;
  font-size: 0.76rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline .text-link {
  grid-area: action !important;
  align-self: start !important;
  margin: 5px 0 0 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-save-compact-flow {
  grid-area: flow !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.2fr) 28px minmax(145px, 0.72fr) 28px minmax(150px, 0.78fr) !important;
  gap: 8px !important;
  align-items: center !important;
  min-height: 188px !important;
  height: 100% !important;
  margin: 0 !important;
  border-color: #cadde4 !important;
  padding: 13px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.91), rgba(245, 253, 251, 0.88)),
    #fff !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source {
  min-height: 105px !important;
  gap: 7px !important;
  padding: 9px 5px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source .tc-line-icon {
  width: 34px !important;
  height: 34px !important;
  padding: 7px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-mini-source b {
  font-size: 0.58rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-merge-arrow,
body.tryycart-global-theme #tc-page-home .services-section .smart-ship-arrow {
  color: #15998b !important;
  font-size: 1.7rem !important;
  font-weight: 950 !important;
  text-align: center !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-consolidation-hub {
  display: grid;
  min-height: 132px;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid #95cfc6;
  border-radius: 14px;
  padding: 11px 7px;
  background: linear-gradient(145deg, #effcf9, #eef5ff);
  box-shadow: 0 8px 18px rgba(18, 79, 94, 0.09);
  text-align: center;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-consolidation-hub > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #0f6fc2, #079f8f);
  color: #fff;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-consolidation-hub .tc-line-icon {
  width: 27px;
  height: 27px;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-consolidation-hub b {
  color: #183452;
  font-size: 0.66rem;
  line-height: 1.15;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-consolidation-hub small {
  color: #5f7187;
  font-size: 0.53rem;
  line-height: 1.2;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment {
  min-height: 148px !important;
  padding: 12px 8px 9px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-inline-box {
  width: 51px !important;
  height: 51px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment > b {
  font-size: 0.62rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment > strong {
  font-size: 0.58rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment > strong span {
  font-size: 1.46rem !important;
}

@media (max-width: 1180px) and (min-width: 761px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline-body {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "meta"
      "title"
      "copy"
      "flow"
      "action" !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline > .smart-save-inline-body > p {
    max-width: 720px !important;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-grid {
    grid-template-columns: 1fr !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-save-inline-body {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "meta"
      "title"
      "copy"
      "flow"
      "action" !important;
    padding: 18px 16px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-save-compact-flow {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-merge-arrow,
  body.tryycart-global-theme #tc-page-home .services-section .smart-ship-arrow {
    transform: rotate(90deg) !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .smart-consolidation-hub,
  body.tryycart-global-theme #tc-page-home .services-section .smart-one-shipment {
    min-height: 126px !important;
  }
}

/*
 * TryyCart 1.10.6 — compact trust line and photographic service-card blend.
 */
body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
  align-items: center !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
  min-height: 52px !important;
  height: 52px !important;
  align-self: center !important;
  gap: 10px !important;
  border-radius: 13px !important;
  padding: 7px 17px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise::before {
  width: 4px !important;
  height: 30px !important;
  flex-basis: 4px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
  font-size: clamp(0.68rem, 0.78vw, 0.79rem) !important;
  letter-spacing: 0.075em !important;
  line-height: 1.1 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
  font-size: clamp(0.98rem, 1.12vw, 1.16rem) !important;
  letter-spacing: -0.026em !important;
  line-height: 1.08 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading .section-intro {
  color: #405774 !important;
  font-size: clamp(0.88rem, 0.98vw, 1rem) !important;
  font-weight: 590 !important;
  line-height: 1.45 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline),
body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):hover,
body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):focus-within {
  min-height: 370px !important;
  height: 370px !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  isolation: isolate !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body {
  position: relative !important;
  z-index: 4 !important;
  min-height: 370px !important;
  height: 370px !important;
  padding: 19px 15px 17px 19px !important;
  background:
    radial-gradient(circle at 8% 6%, var(--service-soft), transparent 25%),
    linear-gradient(90deg, #fff 0%, #fff 67%, rgba(255, 255, 255, 0.96) 77%, rgba(255, 255, 255, 0.73) 89%, transparent 100%) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-meta {
  min-height: 40px !important;
  margin-bottom: 11px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-index {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  flex-basis: 40px !important;
  font-size: 0.98rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .card-kicker {
  min-height: 27px !important;
  padding: 0 10px !important;
  font-size: 0.63rem !important;
  letter-spacing: 0.065em !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body h3 {
  margin-bottom: 8px !important;
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif !important;
  font-size: clamp(1.4rem, 1.62vw, 1.66rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body p {
  max-width: 95% !important;
  color: #41566f !important;
  font-size: clamp(0.76rem, 0.81vw, 0.83rem) !important;
  font-weight: 500 !important;
  line-height: 1.43 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body ul {
  gap: 7px !important;
  margin: 13px 0 13px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body li {
  grid-template-columns: 19px minmax(0, 1fr) !important;
  gap: 6px !important;
  color: #263d59 !important;
  font-size: clamp(0.69rem, 0.75vw, 0.76rem) !important;
  font-weight: 760 !important;
  line-height: 1.25 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-check {
  width: 19px !important;
  height: 19px !important;
  font-size: 0.68rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .text-link {
  min-height: 39px !important;
  padding: 0 15px !important;
  font-size: 0.75rem !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art {
  position: relative !important;
  z-index: 2 !important;
  left: -82px !important;
  width: calc(100% + 82px) !important;
  min-height: 370px !important;
  height: 370px !important;
  align-self: stretch !important;
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%) !important;
  border-radius: 0 21px 21px 0 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art::before {
  inset: 0 auto 0 0 !important;
  width: 43% !important;
  height: 100% !important;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.52) 38%, transparent 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%) !important;
  filter: blur(0.2px) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-primary-image {
  filter: saturate(1.08) contrast(1.035) brightness(1.035) !important;
  transform: scale(1.025) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):hover .service-primary-image,
body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):focus-within .service-primary-image {
  transform: scale(1.065) !important;
}

@media (max-width: 1180px) and (min-width: 761px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline),
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art {
    min-height: 345px !important;
    height: 345px !important;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
    height: auto !important;
    min-height: 58px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small,
  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
    white-space: normal !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline),
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline):focus-within {
    height: auto !important;
    min-height: 0 !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-body {
    height: auto !important;
    min-height: 0 !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art {
    left: auto !important;
    width: 100% !important;
    min-height: 235px !important;
    height: 235px !important;
    clip-path: none !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-card:not(.smart-save-inline) .service-art::before {
    inset: 0 0 auto !important;
    width: 100% !important;
    height: 31% !important;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.58) 30%, transparent 100%) !important;
  }
}

/*
 * TryyCart 1.10.3 FINAL GEOMETRY — Our Services.
 * Reset every legacy positioning/height property before applying the new
 * editorial split-card layout. This block must remain last in this file.
 */
body.tryycart-global-theme #tc-page-home .services-section .services-heading {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 22px !important;
  padding: 0 0 17px !important;
  border-bottom: 1px solid #b8c8d9 !important;
  text-align: left !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: 14px !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading h2 {
  position: relative !important;
  display: flex !important;
  width: auto !important;
  min-height: 70px !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  margin: 0 !important;
  border: 1px solid #b6c7da !important;
  border-left: 6px solid #ff6818 !important;
  border-radius: 15px !important;
  padding: 11px 22px 12px 18px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 104, 24, 0.13), transparent 42%),
    linear-gradient(135deg, #f9fbfe 0%, #e8f1fa 100%) !important;
  box-shadow: 0 10px 24px rgba(18, 43, 74, 0.11) !important;
  color: #102849 !important;
  font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
  font-weight: 900 !important;
  line-height: 0.94 !important;
  letter-spacing: -0.055em !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading h2::after {
  position: absolute;
  right: 16px;
  bottom: 7px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6818, #16a59a, #2f79df);
  content: "";
  opacity: 0.72;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 70px !important;
  max-width: none !important;
  flex: 1 1 auto !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  border: 1px solid #b8c8d9 !important;
  border-radius: 15px !important;
  padding: 12px 18px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 252, 0.96)),
    #eef4fa !important;
  box-shadow: 0 8px 20px rgba(18, 43, 74, 0.08) !important;
  text-align: left !important;
  transform: none !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise::before {
  display: block !important;
  width: 4px !important;
  height: 34px !important;
  flex: 0 0 4px !important;
  border-radius: 999px !important;
  background: #ff6818 !important;
  content: "" !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
  color: #e6530a !important;
  font-size: clamp(0.6rem, 0.74vw, 0.74rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise b {
  color: #203653 !important;
  font-size: clamp(0.88rem, 1.08vw, 1.08rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.2 !important;
}

body.tryycart-global-theme #tc-page-home .services-section .services-heading .section-intro {
  width: 100% !important;
  max-width: none !important;
  margin: 11px 0 0 !important;
  padding: 0 3px !important;
  color: #4a607b !important;
  text-align: left !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card,
body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
  display: grid !important;
  min-height: 404px !important;
  height: auto !important;
  align-items: stretch !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
  grid-template-areas: "copy art" !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-body {
  position: relative !important;
  inset: auto !important;
  z-index: 3 !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 404px !important;
  height: 100% !important;
  grid-area: copy !important;
  align-items: stretch !important;
  padding: 22px 18px 19px 21px !important;
  background:
    radial-gradient(circle at 8% 5%, var(--service-soft), transparent 25%),
    linear-gradient(90deg, #fff 0%, #fff 85%, rgba(255, 255, 255, 0.92) 100%) !important;
  transform: none !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-meta {
  position: relative !important;
  inset: auto !important;
  z-index: 5 !important;
  display: flex !important;
  width: 100% !important;
  min-height: 42px !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 0 14px !important;
  transform: none !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-index {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: auto !important;
  display: grid !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px !important;
  margin: 0 !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 0 !important;
  background: var(--service-accent) !important;
  box-shadow: 0 8px 17px color-mix(in srgb, var(--service-accent) 26%, transparent) !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  transform: none !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-art {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 404px !important;
  max-height: none !important;
  grid-area: art !important;
  align-self: stretch !important;
  overflow: hidden !important;
  border-radius: 0 21px 21px 0 !important;
  clip-path: none !important;
  transform: none !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-art::before {
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 44% !important;
  height: 100% !important;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.32) 61%, transparent 100%) !important;
  content: "" !important;
  pointer-events: none !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-primary-image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.015) !important;
}

body.tryycart-global-theme #tc-page-home .services-section .service-card:hover .service-primary-image,
body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within .service-primary-image {
  transform: scale(1.05) !important;
}

@media (max-width: 1180px) and (min-width: 641px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-card,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
    min-height: 330px !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr) !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-body,
  body.tryycart-global-theme #tc-page-home .services-section .service-art {
    min-height: 330px !important;
  }
}

@media (max-width: 760px) {
  body.tryycart-global-theme #tc-page-home .services-section .services-heading-line {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading h2 {
    min-height: 58px !important;
    font-size: clamp(1.8rem, 9vw, 2.7rem) !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise {
    min-height: 58px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .services-heading-promise small {
    white-space: normal !important;
  }
}

@media (max-width: 640px) {
  body.tryycart-global-theme #tc-page-home .services-section .service-card,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:hover,
  body.tryycart-global-theme #tc-page-home .services-section .service-card:focus-within {
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "art" !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-body {
    min-height: 0 !important;
    height: auto !important;
    padding: 18px 16px 17px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-art {
    width: 100% !important;
    min-height: 238px !important;
    height: 238px !important;
    border-radius: 0 0 21px 21px !important;
  }

  body.tryycart-global-theme #tc-page-home .services-section .service-art::before {
    inset: 0 0 auto !important;
    width: 100% !important;
    height: 34% !important;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.64) 28%, transparent 100%) !important;
  }
}
