/*
Theme Name: Online Hosting Solutions
Author: The Simple Entrepreneur
Author URI: https://marcotran.com.au
Description: A standalone WordPress/WooCommerce theme for Online Hosting Solutions.
Version: 1.0.18
Text Domain: online-hosting-solutions
Requires at least: 6.0
Tested up to: 6.3
Requires PHP: 7.4
*/

:root {
  --ohs-blue: #3379fc;
  --ohs-blue-deep: #1557d3;
  --ohs-navy: #0d1b2f;
  --ohs-navy-2: #10213a;
  --ohs-ink: #101826;
  --ohs-muted: #5f6b7c;
  --ohs-line: #dbe3ef;
  --ohs-soft: #f4f7fb;
  --ohs-paper: #ffffff;
  --ohs-green: #19a974;
  --ohs-amber: #f4b740;
  --ohs-radius: 8px;
  --ohs-width: 1180px;
  --ohs-wide: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ohs-ink);
  background: var(--ohs-soft);
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--ohs-blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--ohs-blue);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.deal-topbar {
  background:
    linear-gradient(90deg, rgba(51, 121, 252, .22), transparent 38%),
    var(--ohs-navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.deal-topbar__inner {
  max-width: var(--ohs-wide);
  min-height: 62px;
  margin: 0 auto;
  padding: 10px clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2.5vw, 24px);
}

.deal-topbar__brand {
  width: 132px;
  min-height: 44px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
}

.deal-topbar__brand img {
  max-width: 108px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.deal-topbar__copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.deal-topbar__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(244, 183, 64, .7);
  border-radius: 999px;
  background: rgba(244, 183, 64, .13);
  color: var(--ohs-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.deal-topbar__copy strong {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
}

.deal-topbar__copy small {
  max-width: 360px;
  color: #dce8f8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.deal-topbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.deal-topbar__button:hover,
.deal-topbar__button:focus {
  background: #fff;
  color: var(--ohs-blue-deep);
}

body.single-product > div[style*="z-index:999999999"][style*="background"] {
  display: none !important;
}

.site-header__inner {
  max-width: var(--ohs-wide);
  margin: 0 auto;
  min-height: 84px;
  padding: 16px clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-branding img {
  width: 250px;
  max-width: 54vw;
}

.site-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.site-title a {
  color: var(--ohs-ink);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ohs-line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ohs-ink);
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu .menu-item {
  position: relative;
}

.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--ohs-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: var(--ohs-blue);
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  display: none;
  list-style: none;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 18px 50px rgba(13, 27, 47, .14);
}

.primary-menu .menu-item:hover > .sub-menu,
.primary-menu .menu-item:focus-within > .sub-menu {
  display: block;
}

.primary-menu .sub-menu a {
  display: flex;
  min-height: 38px;
  padding: 0 10px;
  letter-spacing: 0;
  text-transform: none;
}

.site-main {
  min-height: 60vh;
}

.wrap {
  max-width: var(--ohs-width);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 48px);
}

.wrap-wide {
  max-width: var(--ohs-wide);
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ohs-blue);
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover,
.button:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ohs-blue-deep);
  border-color: var(--ohs-blue-deep);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--ohs-blue);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--ohs-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.technical-hero {
  background: var(--ohs-navy);
  color: #fff;
}

.technical-hero__grid {
  max-width: var(--ohs-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  min-height: 620px;
}

.technical-hero__index {
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.technical-hero__index h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.technical-hero__index ol {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: index;
}

.technical-hero__index li {
  counter-increment: index;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: #d8e4f7;
}

.technical-hero__index li::before {
  content: counter(index, decimal-leading-zero);
  color: var(--ohs-amber);
  font-weight: 900;
}

.technical-hero__content {
  padding: clamp(38px, 7vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.technical-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 0;
}

.technical-hero p {
  max-width: 660px;
  color: #c8d8ef;
  font-size: clamp(18px, 2vw, 21px);
}

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

.dark-product-strip {
  max-width: var(--ohs-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.dark-product-card {
  min-height: 250px;
  padding: 24px;
  background: var(--ohs-navy-2);
  color: #fff;
  text-decoration: none;
}

.dark-product-card:hover,
.dark-product-card:focus {
  color: #fff;
  background: #142946;
}

.dark-product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 6px;
}

.dark-product-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.dark-product-card span {
  display: block;
  margin-top: 8px;
  color: var(--ohs-amber);
  font-weight: 900;
}

.section {
  padding: clamp(42px, 7vw, 90px) 0;
}

.section--white {
  background: #fff;
}

.section-header {
  max-width: var(--ohs-width);
  margin: 0 auto 26px;
  padding-inline: clamp(18px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-header h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-header p {
  max-width: 420px;
  margin: 0;
  color: var(--ohs-muted);
}

.article-grid {
  max-width: var(--ohs-width);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.post-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(13, 27, 47, .06);
}

.post-card__image {
  display: block;
  background: var(--ohs-navy);
}

.post-card__image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.post-card__body {
  padding: 20px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ohs-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.post-card h3,
.post-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

.post-card h3 a,
.post-card h2 a {
  color: var(--ohs-ink);
  text-decoration: none;
}

.post-card p {
  margin: 0;
  color: var(--ohs-muted);
}

.guide-grid {
  max-width: var(--ohs-width);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
}

.guide-panel {
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

.guide-panel--blue {
  background: var(--ohs-blue);
  border-color: var(--ohs-blue);
  color: #fff;
}

.guide-panel--blue p {
  color: #e9f1ff;
}

.guide-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.guide-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--ohs-line);
}

.guide-list a {
  color: var(--ohs-ink);
  font-weight: 900;
  text-decoration: none;
}

.page-hero,
.archive-hero,
.single-hero {
  padding: clamp(48px, 8vw, 110px) 0;
  background: var(--ohs-navy);
  color: #fff;
}

.page-hero h1,
.archive-hero h1,
.single-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 7vw, 90px);
  line-height: .94;
  letter-spacing: 0;
}

.page-hero p,
.archive-hero p,
.single-hero p {
  max-width: 720px;
  color: #c8d8ef;
  font-size: 19px;
}

.single-featured {
  padding-top: 32px;
}

.single-featured img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--ohs-radius);
  box-shadow: 0 26px 70px rgba(13, 27, 47, .16);
}

.content-shell {
  max-width: var(--ohs-width);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 48px);
}

.content-narrow {
  max-width: 820px;
}

.entry-content {
  font-size: 18px;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.article-body {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 20px 55px rgba(13, 27, 47, .07);
}

.article-lead {
  margin-bottom: clamp(28px, 5vw, 48px);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(120px, .26fr) 1fr;
  gap: 18px;
  background: #eef5ff;
  color: var(--ohs-navy);
  border: 1px solid #bfd5ff;
  border-left: 5px solid var(--ohs-blue);
  border-radius: var(--ohs-radius);
}

.article-lead span {
  color: var(--ohs-blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-lead p {
  margin: 0;
  color: #263244;
  font-size: 17px;
  line-height: 1.55;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.8em;
  margin-bottom: .55em;
  line-height: 1.1;
  letter-spacing: 0;
}

.entry-content h2 {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--ohs-line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
}

.entry-content h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 86px;
  height: 3px;
  background: var(--ohs-blue);
}

.entry-content h3 {
  font-size: 28px;
}

.entry-content h4 {
  color: var(--ohs-blue-deep);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.entry-content p {
  color: #263244;
}

.entry-content > p:first-of-type {
  color: var(--ohs-navy);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.45;
}

.entry-content ul,
.entry-content ol {
  padding-left: 0;
  list-style: none;
}

.entry-content li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
}

.entry-content li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--ohs-blue);
  border-radius: 50%;
}

.entry-content ol {
  counter-reset: article-list;
}

.entry-content ol > li {
  counter-increment: article-list;
}

.entry-content ol > li::before {
  content: counter(article-list, decimal-leading-zero);
  top: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--ohs-blue);
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
}

.entry-content blockquote,
.wp-block-quote,
.wp-block-pullquote {
  margin: 2em 0;
  padding: 24px 0 24px 26px;
  border-left: 5px solid var(--ohs-blue);
  color: var(--ohs-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.entry-content img,
.wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: var(--ohs-radius);
  border: 1px solid var(--ohs-line);
  box-shadow: 0 18px 48px rgba(13, 27, 47, .08);
}

.entry-content p:has(> a > img),
.entry-content p:has(> img) {
  margin: 2em 0;
  padding: 12px;
  background: var(--ohs-soft);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

.entry-content p:has(> a.buy-now-link),
.entry-content p:has(> .buy-now-link) {
  margin: 1.8em 0 2.2em;
  padding: 0;
  background: transparent;
  border: 0;
}

.entry-content table,
.woocommerce div.product .woocommerce-Tabs-panel table,
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  display: block;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

.entry-content th,
.entry-content td,
.woocommerce div.product .woocommerce-Tabs-panel th,
.woocommerce div.product .woocommerce-Tabs-panel td,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  min-width: 140px;
  padding: 12px;
  border: 1px solid var(--ohs-line);
  text-align: left;
  vertical-align: top;
}

.entry-content th,
.woocommerce div.product .woocommerce-Tabs-panel th {
  background: var(--ohs-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.entry-content .comparison-table {
  margin: 2.5em 0;
  box-shadow: 0 18px 50px rgba(13, 27, 47, .08);
}

.entry-content .comparison-table td {
  background: #fff;
}

.entry-content .appsumo-style-links,
.woocommerce div.product .appsumo-style-links {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

.entry-content [class*="sticky"],
.woocommerce div.product [class*="sticky"] {
  position: static !important;
}

.entry-content [class*="rounded-full"],
.woocommerce div.product [class*="rounded-full"] {
  border-radius: 999px;
}

.entry-content [class*="bg-dorado"],
.woocommerce div.product [class*="bg-dorado"],
.entry-content button,
.woocommerce div.product .woocommerce-Tabs-panel button {
  border: 1px solid var(--ohs-blue);
  background: var(--ohs-blue);
  color: #fff;
}

.entry-content .buy-now-link,
.entry-content a[href*="appsumo.8odi.net"],
.entry-content a[href*="/ex/"] {
  font-weight: 900;
}

.entry-content .buy-now-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ohs-blue);
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(51, 121, 252, .24);
}

.entry-content .buy-now-link:hover,
.entry-content .buy-now-link:focus {
  background: var(--ohs-blue-deep);
  color: #fff;
}

.entry-content .customer-reviews {
  margin: 1.5em 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.entry-content .customer-reviews li {
  margin: 0;
  padding: 18px 18px 18px 22px;
  background: #f8fbff;
  border: 1px solid var(--ohs-line);
  border-left: 4px solid var(--ohs-green);
  border-radius: var(--ohs-radius);
}

.entry-content .customer-reviews li::before {
  display: none;
}

.entry-content .reviewer {
  display: inline-block;
  margin-top: 8px;
  color: var(--ohs-blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.entry-content p:has(> b:first-child) {
  color: var(--ohs-navy);
  font-weight: 900;
}

.entry-content p:has(> b:first-child) + ul {
  padding: 18px 20px;
  background: #fbfdff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}


.single-layout {
  max-width: var(--ohs-wide);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px) clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(240px, 340px);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.article-aside h2,
.article-aside h3 {
  margin-top: 0;
}

.article-aside__panel {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 16px 40px rgba(13, 27, 47, .06);
}

.article-aside__panel--blue {
  background: var(--ohs-navy);
  border-color: var(--ohs-navy);
  color: #fff;
}

.article-aside__panel--blue p {
  color: #d7e5f7;
}

.article-aside__panel--blue .button {
  width: 100%;
}

.related-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-list li {
  padding: 14px 0;
  border-top: 1px solid var(--ohs-line);
}

.related-list a {
  color: var(--ohs-ink);
  font-weight: 900;
  text-decoration: none;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-cloud a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--ohs-line);
  border-radius: 999px;
  color: var(--ohs-blue-deep);
  background: #f8fbff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.pagination,
.woocommerce nav.woocommerce-pagination ul {
  max-width: var(--ohs-width);
  margin: 34px auto 0;
  padding-inline: clamp(18px, 4vw, 48px);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ohs-line);
  border-radius: 6px;
  background: #fff;
  color: var(--ohs-ink);
  font-weight: 900;
  text-decoration: none;
}

.page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ohs-blue);
  color: #fff;
  border-color: var(--ohs-blue);
}

.search-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.search-form label {
  flex: 1;
}

.search-field,
.search-form input[type="search"],
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--ohs-line);
  border-radius: 6px;
  background: #fff;
  color: var(--ohs-ink);
}

.search-submit,
.wpcf7-submit {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ohs-blue);
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  font-weight: 900;
}

.page-id-13 .content-shell {
  max-width: var(--ohs-wide);
}

.page-id-13 .entry-content {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-id-13 .vc_row {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.page-id-13 .wpb_column,
.page-id-13 .vc_column-inner,
.page-id-13 .wpb_wrapper {
  width: 100%;
  padding: 0 !important;
}

.page-id-13 .vc_col-sm-2 {
  display: none;
}

.page-id-13 .vc_col-sm-8 {
  width: 100%;
}

.page-id-13 .wpb_wrapper > h2,
.page-id-13 .vc_custom_heading {
  margin: 0 !important;
  color: #fff !important;
  text-align: left !important;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.page-id-13 .wpb_text_column p {
  max-width: 560px;
  margin: 14px 0 0 !important;
  color: #d7e5f7 !important;
  text-align: left !important;
}

.page-id-13 .wpb_text_column span {
  color: inherit !important;
  font-size: 18px !important;
}

.page-id-13 .vc_empty_space {
  display: none;
}

.page-id-13 .wpcf7 {
  margin-top: 28px;
}

.page-id-13 .wpb_wrapper {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px) !important;
  background: var(--ohs-navy);
  border-radius: var(--ohs-radius);
  box-shadow: 0 26px 80px rgba(13, 27, 47, .16);
}

.page-id-13 .wpb_wrapper > h2,
.page-id-13 .wpb_wrapper > .wpb_text_column {
  grid-column: 1;
}

.page-id-13 .wpcf7 {
  grid-column: 2;
  grid-row: 1 / span 3;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--ohs-radius);
}

.page-id-13 .wpcf7-form {
  display: grid;
  gap: 14px;
}

.page-id-13 .wpcf7 .form1 {
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-id-13 .wpcf7 br {
  display: none;
}

.page-id-13 .wpcf7-form-control-wrap {
  display: block;
}

.page-id-13 .wpcf7 input[type="text"],
.page-id-13 .wpcf7 input[type="email"],
.page-id-13 .wpcf7 textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--ohs-line);
  border-radius: 6px;
  background: #f8fbff;
  color: var(--ohs-ink);
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.page-id-13 .wpcf7 textarea {
  min-height: 170px;
  resize: vertical;
}

.page-id-13 .wpcf7 input::placeholder,
.page-id-13 .wpcf7 textarea::placeholder {
  color: #6d7888;
}

.page-id-13 .wpcf7 input:focus,
.page-id-13 .wpcf7 textarea:focus {
  outline: 0;
  border-color: var(--ohs-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(51, 121, 252, .14);
}

.page-id-13 .wpcf7-submit {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(51, 121, 252, .24);
}

.page-id-13 .wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}

.page-id-13 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
}

.page-id-13 .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 12px 14px !important;
  border: 1px solid var(--ohs-line) !important;
  border-left: 4px solid var(--ohs-blue) !important;
  border-radius: 6px;
  color: var(--ohs-ink);
  background: #f8fbff;
}

.page-id-13 .wpcf7 form.sent .wpcf7-response-output {
  border-left-color: var(--ohs-green) !important;
}

.page-id-13 .wpcf7 form.invalid .wpcf7-response-output,
.page-id-13 .wpcf7 form.failed .wpcf7-response-output {
  border-left-color: #b42318 !important;
}

.empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  text-align: center;
}

.site-footer {
  background: var(--ohs-navy);
  color: #dce8f8;
}

.site-footer__inner {
  max-width: var(--ohs-wide);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.site-footer img {
  width: 250px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 6px;
  padding: 8px;
}

.site-footer a {
  color: #fff;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
  max-width: var(--ohs-width);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(18px, 4vw, 48px);
}

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

.woocommerce ul.products {
  max-width: var(--ohs-width);
  margin: 0 auto !important;
  padding: 24px clamp(18px, 4vw, 48px) 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 20px !important;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(13, 27, 47, .06);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0 0 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 18px;
  color: var(--ohs-ink);
  font-size: 20px;
  line-height: 1.15;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 18px;
  color: var(--ohs-green);
  font-size: 22px;
  font-weight: 900;
}

.woocommerce ul.products li.product .button {
  min-height: 46px;
  margin: 12px 18px 0;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.woocommerce span.onsale {
  min-height: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ohs-amber);
  color: var(--ohs-ink);
  font-weight: 900;
  line-height: 1;
}

body.single-product .woocommerce {
  background:
    linear-gradient(180deg, #eaf1ff 0, rgba(234, 241, 255, 0) 360px),
    var(--ohs-soft);
}

body.single-product .woocommerce div.product {
  max-width: var(--ohs-wide);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 74px) clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

body.single-product .woocommerce div.product::before,
body.single-product .woocommerce div.product::after {
  display: none;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
  margin-bottom: 0;
}

body.single-product .woocommerce-product-gallery {
  position: relative;
  padding: clamp(12px, 2vw, 18px);
  background: #fff;
  border: 1px solid rgba(51, 121, 252, .18);
  border-radius: var(--ohs-radius);
  box-shadow: 0 24px 70px rgba(13, 27, 47, .1);
}

body.single-product .woocommerce-product-gallery img {
  border-radius: 6px;
}

body.single-product .woocommerce span.onsale {
  top: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  z-index: 3;
  background: var(--ohs-amber);
  color: var(--ohs-ink);
  box-shadow: 0 12px 26px rgba(13, 27, 47, .18);
}

body.single-product .summary.entry-summary {
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(51, 121, 252, .22), transparent 44%),
    var(--ohs-navy);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ohs-radius);
  color: #dce8f8;
  box-shadow: 0 28px 80px rgba(13, 27, 47, .18);
}

body.single-product .summary.entry-summary::before {
  content: "Deal desk";
  order: 0;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 11px;
  border: 1px solid rgba(244, 183, 64, .55);
  border-radius: 999px;
  background: rgba(244, 183, 64, .12);
  color: var(--ohs-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

body.single-product .woocommerce div.product .product_title {
  order: 1;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: .95;
  letter-spacing: 0;
}

body.single-product .woocommerce div.product p.price,
body.single-product .woocommerce div.product span.price {
  order: 2;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

body.single-product .woocommerce div.product p.price del,
body.single-product .woocommerce div.product span.price del {
  color: rgba(255, 255, 255, .55);
  font-size: .58em;
  opacity: 1;
}

body.single-product .woocommerce div.product p.price ins,
body.single-product .woocommerce div.product span.price ins {
  color: var(--ohs-amber);
  text-decoration: none;
}

body.single-product .summary.entry-summary .cart {
  order: 3;
  margin: 0 0 22px;
}

body.single-product .summary.entry-summary .single_add_to_cart_button,
body.single-product .summary.entry-summary .button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(51, 121, 252, .34);
}

body.single-product .summary.entry-summary .single_add_to_cart_button:hover,
body.single-product .summary.entry-summary .single_add_to_cart_button:focus {
  background: #fff;
  color: var(--ohs-blue-deep);
}

.ohs-summary-retailer {
  order: 4;
  margin: -4px 0 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.ohs-summary-retailer__logo a,
.ohs-summary-retailer__logo > img {
  min-height: 76px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
}

.ohs-summary-retailer__logo img {
  width: auto;
  max-width: 104px;
  max-height: 54px;
  display: block;
  object-fit: contain;
}

.ohs-summary-retailer__copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--ohs-amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.ohs-summary-retailer__copy strong {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
}

.ohs-summary-retailer__copy p {
  margin: 7px 0 0;
  color: #dce8f8;
  font-size: 13px;
  line-height: 1.4;
}

body.single-product .summary.entry-summary br {
  display: none;
}

body.single-product .summary.entry-summary .date_published,
body.single-product .summary.entry-summary .date_modified {
  order: 5;
  display: inline-flex;
  margin: 0 8px 10px 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #dce8f8;
  font-size: 13px;
  font-weight: 800;
}

body.single-product .summary.entry-summary .product_meta {
  order: 6;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

body.single-product .summary.entry-summary .product_meta a {
  color: #fff;
  font-weight: 900;
}

body.single-product .summary.entry-summary > div[style] {
  display: none;
}

body.single-product .summary.entry-summary > div[style] a {
  color: #fff;
  font-weight: 900;
}

body.single-product .summary.entry-summary > div[style] img {
  max-width: 130px;
  height: auto !important;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
}

body.single-product .woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  clear: both;
  max-width: none;
  margin-top: clamp(10px, 3vw, 26px);
  padding: 0;
  background: transparent;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(13, 27, 47, .07);
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: none;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 8px -1px 0;
  border: 1px solid var(--ohs-line);
  border-bottom-color: #fff;
  background: #fff;
  border-radius: 6px 6px 0 0;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 12px 18px;
  color: var(--ohs-navy);
  font-weight: 900;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel {
  max-width: none;
  margin: 0;
  padding: 0;
  background: #f8fbff;
  color: var(--ohs-ink);
  font-size: 18px;
  line-height: 1.75;
}

.ohs-product-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 5vw, 58px);
}

.ohs-product-content__header {
  padding: clamp(26px, 5vw, 50px);
  background:
    linear-gradient(135deg, rgba(51, 121, 252, .26), transparent 48%),
    var(--ohs-navy);
  border-radius: var(--ohs-radius);
  color: #fff;
  box-shadow: 0 24px 70px rgba(13, 27, 47, .16);
}

.ohs-product-content__header span,
.ohs-product-content__quick span {
  display: block;
  margin-bottom: 12px;
  color: var(--ohs-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.ohs-product-content__header h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .95;
}

.ohs-product-content__header p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #dce8f8;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.ohs-product-content__quick {
  margin: 18px 0 clamp(24px, 5vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ohs-product-content__quick div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 14px 38px rgba(13, 27, 47, .05);
}

.ohs-product-content__quick span {
  margin-bottom: 10px;
  color: var(--ohs-blue-deep);
}

.ohs-product-content__quick strong {
  display: block;
  color: var(--ohs-navy);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.ohs-product-content__quick del {
  color: var(--ohs-muted);
  font-size: .7em;
}

.ohs-product-content__quick ins {
  color: var(--ohs-green);
  text-decoration: none;
}

.ohs-product-affiliate-banner {
  margin: 0 0 clamp(24px, 5vw, 44px);
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(25, 169, 116, .16), transparent 42%),
    #fff;
  border: 1px solid var(--ohs-line);
  border-left: 6px solid var(--ohs-green);
  border-radius: var(--ohs-radius);
  box-shadow: 0 18px 55px rgba(13, 27, 47, .06);
}

.ohs-product-affiliate-banner__copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--ohs-blue-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.ohs-product-affiliate-banner__copy strong {
  display: block;
  max-width: 360px;
  color: var(--ohs-navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

.ohs-product-affiliate-banner__media {
  min-width: 0;
  padding: 12px;
  background: #f8fbff;
  border: 1px solid #dce7f6;
  border-radius: 8px;
}

.ohs-product-affiliate-banner__media div[style] {
  float: none !important;
  display: block !important;
  margin: 0 !important;
}

.ohs-product-affiliate-banner__media a {
  display: block;
  line-height: 0;
}

.ohs-product-affiliate-banner__media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 5px;
}

.ohs-product-affiliate-banner__media img[width="0"],
.ohs-product-affiliate-banner__media img[height="0"] {
  position: absolute;
  width: 0;
  height: 0;
}

.ohs-product-content__body {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 18px 55px rgba(13, 27, 47, .06);
}

.ohs-product-content__body > h2:first-child {
  margin-top: 0;
}

.ohs-product-content__body > p {
  max-width: 760px;
  margin: 0 0 1.15em;
  color: #263244;
  font-size: 18px;
  line-height: 1.72;
}

.ohs-product-content__body > p:first-of-type {
  max-width: none;
  margin-bottom: clamp(22px, 4vw, 36px);
  padding: 22px 24px;
  background: #eef5ff;
  border: 1px solid #c7d9ff;
  border-left: 5px solid var(--ohs-blue);
  border-radius: var(--ohs-radius);
  color: var(--ohs-navy);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
}

.ohs-product-content__body > p:not(:has(img)):nth-of-type(2n + 2) {
  margin-top: clamp(22px, 4vw, 34px);
  color: var(--ohs-navy);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.15;
}

.ohs-product-content__body > p:not(:has(img)):nth-of-type(2n + 3) {
  padding-left: 20px;
  border-left: 3px solid rgba(51, 121, 252, .22);
}

.ohs-product-content__body .mb-2 {
  display: inline-flex;
  width: min(100%, 238px);
  min-height: 178px;
  margin: 12px 12px 12px 0;
  padding: 18px;
  vertical-align: top;
  background: #f8fbff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

.ohs-product-content__body .mb-2 h3 {
  margin-top: 0;
  color: var(--ohs-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ohs-product-content__body .mb-2 ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.ohs-product-content__body .mb-2 a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 4px 0;
  padding: 0 10px;
  border: 1px solid var(--ohs-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ohs-blue-deep);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ohs-product-content__body > p:has(> a > img),
.ohs-product-content__body > p:has(> img) {
  max-width: 100%;
  margin: clamp(24px, 5vw, 52px) 0;
  padding: 12px;
  background: var(--ohs-soft);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

.ohs-product-content__body img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.ohs-product-plans {
  margin-top: clamp(24px, 5vw, 48px);
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 18px 55px rgba(13, 27, 47, .06);
}

.ohs-product-plans .appsumo-style-links {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
}

.ohs-product-plans .appsumo-style-links > div:first-child {
  position: static !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(51, 121, 252, .16), transparent 48%),
    #f8fbff !important;
  border-bottom: 1px solid var(--ohs-line);
}

.ohs-product-plans .appsumo-style-links > div:first-child h2 {
  margin: 0;
  color: var(--ohs-navy);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.ohs-product-plans .appsumo-style-links > div:first-child span {
  color: var(--ohs-muted);
  font-size: 13px;
  font-weight: 900;
}

.ohs-product-plans .appsumo-style-links > div:nth-of-type(2) {
  display: none !important;
}

.ohs-product-plans table {
  width: 100% !important;
  min-width: 900px;
  max-width: none !important;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.ohs-product-plans .appsumo-style-links {
  overflow-x: auto;
}

.ohs-product-plans thead {
  position: static !important;
  display: table-header-group !important;
  background: transparent !important;
}

.ohs-product-plans th,
.ohs-product-plans td {
  width: auto !important;
  max-width: none !important;
  padding: 16px !important;
  border-color: var(--ohs-line) !important;
  color: var(--ohs-ink);
  vertical-align: middle;
}

.ohs-product-plans th {
  background: #fff !important;
  vertical-align: top;
}

.ohs-product-plans th:first-child,
.ohs-product-plans td:first-child {
  width: 24% !important;
  background: #f8fbff !important;
  color: var(--ohs-navy);
  font-weight: 900;
  text-align: left;
}

.ohs-product-plans th:not(:first-child) {
  border-top: 4px solid var(--ohs-blue) !important;
}

.ohs-product-plans th:not(:first-child) > div {
  min-height: 190px;
  padding: 18px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: #fbfdff;
  border: 1px solid #dce7f6;
  border-radius: 8px;
}

.ohs-product-plans th:not(:first-child) div[class*="text-base"] {
  color: var(--ohs-navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.ohs-product-plans th:not(:first-child) div[class*="text-2xl"],
.ohs-product-plans th:not(:first-child) div[class*="text-xl"] {
  color: var(--ohs-blue-deep);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.ohs-product-plans th:not(:first-child) div[class*="line-through"] {
  color: var(--ohs-muted);
  font-size: 13px;
}

.ohs-product-plans button {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--ohs-blue);
  border-radius: 6px !important;
  background: var(--ohs-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.ohs-product-plans button:hover,
.ohs-product-plans button:focus {
  background: var(--ohs-navy);
  border-color: var(--ohs-navy);
}

.ohs-product-plans tbody tr:nth-child(odd) td {
  background: #fbfdff;
}

.ohs-product-plans tbody tr:nth-child(even) td {
  background: #fff;
}

.ohs-product-plans tbody td:not(:first-child) {
  text-align: center;
  font-weight: 800;
}

.ohs-product-plans td img {
  width: auto;
  max-width: 18px;
  max-height: 18px;
  margin: 0 auto;
  display: inline-block;
  border-radius: 0;
}

.ohs-product-plans p {
  margin: 0;
}

.ohs-product-next {
  margin-top: clamp(24px, 5vw, 48px);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(51, 121, 252, .26), transparent 48%),
    var(--ohs-navy);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ohs-radius);
  color: #fff;
  box-shadow: 0 24px 70px rgba(13, 27, 47, .16);
}

.ohs-product-next__copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--ohs-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.ohs-product-next__copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .98;
}

.ohs-product-next__copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #dce8f8;
  font-size: 17px;
  line-height: 1.55;
}

.ohs-product-next__actions {
  display: grid;
  gap: 10px;
  min-width: min(260px, 100%);
}

.ohs-product-next__primary,
.ohs-product-next__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.ohs-product-next__primary {
  border: 1px solid var(--ohs-blue);
  background: var(--ohs-blue);
  color: #fff;
  box-shadow: 0 14px 32px rgba(51, 121, 252, .28);
}

.ohs-product-next__primary:hover,
.ohs-product-next__primary:focus {
  background: #fff;
  color: var(--ohs-blue-deep);
}

.ohs-product-next__secondary {
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.ohs-product-next__secondary:hover,
.ohs-product-next__secondary:focus {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.ohs-product-next__links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.ohs-product-next__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ohs-product-next__links a:hover,
.ohs-product-next__links a:focus {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .16);
}

.ohs-product-next__retailer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 240px);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding: clamp(16px, 3vw, 24px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
}

.ohs-product-next__retailer span {
  display: block;
  margin-bottom: 8px;
  color: var(--ohs-amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ohs-product-next__retailer strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.ohs-product-next__retailer p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #dce8f8;
  font-size: 14px;
  line-height: 1.55;
}

.ohs-product-next__retailer a,
.ohs-product-next__retailer > img {
  width: 100%;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.ohs-product-next__retailer img {
  max-width: 170px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ohs-product-next__retailer a:hover,
.ohs-product-next__retailer a:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > div[style*="float"] {
  display: none !important;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:nth-of-type(2) {
  max-width: 1040px;
  margin: 0 auto clamp(22px, 4vw, 38px);
  padding: clamp(26px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(51, 121, 252, .24), transparent 48%),
    var(--ohs-navy);
  border-radius: var(--ohs-radius);
  color: #fff;
  font-size: clamp(34px, 5vw, 70px);
  line-height: .96;
  box-shadow: 0 24px 70px rgba(13, 27, 47, .16);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:nth-of-type(2)::before {
  content: "Product notes";
  display: block;
  margin-bottom: 16px;
  color: var(--ohs-amber);
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel h2:not(:first-child):not(:nth-of-type(2)) {
  max-width: 900px;
  margin: 2.4em auto .7em;
  padding-top: .8em;
  border-top: 3px solid var(--ohs-blue);
  color: var(--ohs-navy);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel h3 {
  color: var(--ohs-navy);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel p {
  max-width: 820px;
  margin: 0 auto 1.15em;
  color: #263244;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:nth-of-type(2) + p {
  max-width: 1040px;
  margin: 0 auto clamp(20px, 4vw, 34px);
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(160px, .34fr) 1fr;
  gap: 18px;
  background: #eef5ff;
  border: 1px solid #c7d9ff;
  border-left: 5px solid var(--ohs-blue);
  border-radius: var(--ohs-radius);
  color: var(--ohs-navy);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:nth-of-type(2) + p::first-line {
  color: var(--ohs-blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > p:not(:has(img)):not(:has(a.buy-now-link)):not(:has(> a[href*="appsumo"])) {
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(51, 121, 252, .22);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > p:not(:has(img)):not(:has(a.buy-now-link)):not(:has(> a[href*="appsumo"])):nth-of-type(2n + 3) {
  color: var(--ohs-navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > p:not(:has(img)):not(:has(a.buy-now-link)):not(:has(> a[href*="appsumo"])):nth-of-type(2n + 4) {
  margin-bottom: clamp(22px, 4vw, 36px);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2 {
  display: inline-flex;
  width: min(100%, 238px);
  min-height: 178px;
  margin: 12px 12px 12px 0;
  padding: 18px;
  vertical-align: top;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 16px 44px rgba(13, 27, 47, .06);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2:first-of-type {
  margin-left: calc((100% - min(100%, 1040px)) / 2);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2 > div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2 ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2 li {
  margin: 5px 0;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2 a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--ohs-line);
  border-radius: 999px;
  background: var(--ohs-soft);
  color: var(--ohs-blue-deep);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel p:has(> a > img),
body.single-product .woocommerce div.product .woocommerce-Tabs-panel p:has(> img) {
  max-width: 1180px;
  margin: clamp(24px, 5vw, 56px) auto;
  padding: clamp(10px, 2vw, 16px);
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 22px 60px rgba(13, 27, 47, .08);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

body.single-product .woocommerce div.product .appsumo-style-links {
  margin: clamp(34px, 6vw, 74px) 0;
  padding: clamp(24px, 4vw, 48px);
  background:
    linear-gradient(180deg, #f7faff 0, #fff 100%);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
}

body.single-product .woocommerce div.product .appsumo-style-links h2 {
  max-width: var(--ohs-width);
  margin: 0 auto 18px;
  color: var(--ohs-navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

body.single-product .woocommerce div.product .appsumo-style-links table {
  margin-top: 22px;
  box-shadow: 0 22px 70px rgba(13, 27, 47, .08);
}

body.single-product .woocommerce div.product .appsumo-style-links th {
  background: var(--ohs-navy);
  color: #fff;
}

body.single-product .woocommerce div.product .appsumo-style-links td:first-child {
  background: #f8fbff;
  color: var(--ohs-navy);
  font-weight: 900;
}

body.single-product .woocommerce div.product .appsumo-style-links button {
  min-height: 42px;
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  font-weight: 900;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] {
  max-width: 980px;
  margin: clamp(34px, 6vw, 70px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(51, 121, 252, .28), transparent 46%),
    var(--ohs-navy);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ohs-radius);
  color: #fff;
  text-align: left !important;
  box-shadow: 0 24px 70px rgba(13, 27, 47, .16);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"]::before {
  content: "Continue reading";
  position: static;
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  color: var(--ohs-amber);
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"]::after {
  content: "Open the extended deal notes, then compare similar software offers below.";
  display: block;
  max-width: 520px;
  color: #dce8f8;
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ohs-blue);
  border-radius: 6px;
  background: var(--ohs-blue);
  color: #fff;
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] a:hover,
body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] a:focus {
  background: #fff;
  color: var(--ohs-blue-deep);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p {
  max-width: 980px;
  margin: 0 auto clamp(34px, 6vw, 70px);
  padding: clamp(18px, 3vw, 28px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ohs-line);
  border-top: 0;
  border-radius: 0 0 var(--ohs-radius) var(--ohs-radius);
  color: var(--ohs-muted);
  box-shadow: 0 18px 50px rgba(13, 27, 47, .06);
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--ohs-line);
  border-radius: 999px;
  background: var(--ohs-soft);
  color: var(--ohs-blue-deep);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p > a:hover,
body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p > a:focus {
  border-color: var(--ohs-blue);
  background: #fff;
}

body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p > a:has(img),
body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p > img {
  display: none;
}

body.single-product .related.products {
  grid-column: 1 / -1;
  margin-top: clamp(10px, 3vw, 24px);
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(180deg, #fff 0, #f8fbff 100%);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  box-shadow: 0 22px 70px rgba(13, 27, 47, .06);
}

body.single-product .related.products > h2 {
  max-width: var(--ohs-width);
  margin: 0 auto 8px;
  padding: 0;
  color: var(--ohs-navy);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
}

body.single-product .related.products > h2::before {
  content: "More software deals";
  display: block;
  margin-bottom: 12px;
  color: var(--ohs-blue-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

body.single-product .related.products ul.products {
  padding-inline: 0 !important;
}

@media (max-width: 1100px) {
  body.single-product .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  body.single-product .woocommerce div.product .appsumo-style-links {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 640px) {
  .deal-topbar__inner {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 10px;
    padding-block: 10px;
    text-align: left;
  }

  .deal-topbar__brand {
    width: 104px;
    min-height: 38px;
    padding: 7px 10px;
  }

  .deal-topbar__brand img {
    max-width: 84px;
    max-height: 28px;
  }

  .deal-topbar__copy {
    display: grid;
    gap: 6px;
  }

  .deal-topbar__copy strong {
    font-size: 14px;
  }

  .deal-topbar__copy small {
    display: none;
  }

  .deal-topbar__button {
    grid-column: 1 / -1;
    min-height: 30px;
  }

  body.single-product .woocommerce div.product {
    padding-top: 22px;
  }

  body.single-product .woocommerce div.product .product_title {
    font-size: clamp(34px, 12vw, 48px);
  }

  body.single-product .woocommerce div.product .woocommerce-tabs {
    padding: 20px 16px;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 100%;
    margin-right: 0;
    border-radius: 6px;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel {
    font-size: 16px;
  }

  .ohs-product-content {
    padding: 16px;
  }

  .ohs-product-content__header,
  .ohs-product-content__body,
  .ohs-product-plans {
    padding: 20px 16px;
  }

  .ohs-product-content__quick {
    grid-template-columns: 1fr;
  }

  .ohs-product-affiliate-banner {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .ohs-product-affiliate-banner__copy strong {
    font-size: 24px;
  }

  .ohs-product-affiliate-banner__media {
    padding: 8px;
  }

  .ohs-product-content__body > p:first-of-type {
    padding: 18px;
  }

  .ohs-product-content__body > p:not(:has(img)):nth-of-type(2n + 2) {
    font-size: 22px;
  }

  .ohs-product-content__body .mb-2 {
    width: 100%;
    min-height: 0;
    margin-right: 0;
  }

  .ohs-summary-retailer {
    grid-template-columns: 1fr;
  }

  .ohs-summary-retailer__logo a,
  .ohs-summary-retailer__logo > img {
    min-height: 68px;
  }

  .ohs-product-plans .appsumo-style-links > div:first-child {
    display: grid;
    align-items: start;
    padding: 20px 16px;
  }

  .ohs-product-plans table {
    min-width: 760px;
  }

  .ohs-product-plans th,
  .ohs-product-plans td {
    padding: 12px !important;
  }

  .ohs-product-plans th:not(:first-child) > div {
    min-height: 170px;
    padding: 14px !important;
  }

  .ohs-product-next {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .ohs-product-next__actions {
    width: 100%;
  }

  .ohs-product-next__retailer {
    grid-template-columns: 1fr;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:nth-of-type(2) {
    padding: 24px 20px;
    font-size: clamp(32px, 11vw, 48px);
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2:nth-of-type(2) + p {
    grid-template-columns: 1fr;
    padding: 18px;
    font-size: 18px;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > p:not(:has(img)):not(:has(a.buy-now-link)):not(:has(> a[href*="appsumo"])) {
    padding-left: 14px;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > p:not(:has(img)):not(:has(a.buy-now-link)):not(:has(> a[href*="appsumo"])):nth-of-type(2n + 3) {
    font-size: 19px;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel .mb-2 {
    width: 100%;
    margin-right: 0;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] {
    grid-template-columns: 1fr;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] a {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  body.single-product .woocommerce div.product .woocommerce-Tabs-panel > h2[style*="text-align: center"] + p {
    display: grid;
  }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: var(--ohs-width);
  margin: 24px auto !important;
  border-top-color: var(--ohs-blue);
}

@media (max-width: 980px) {
  .technical-hero__grid,
  .dark-product-strip,
  .article-grid,
  .guide-grid,
  .single-layout,
  .site-footer__inner,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .technical-hero__grid {
    min-height: 0;
  }

  .technical-hero__index {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-navigation {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--ohs-line);
    box-shadow: 0 24px 60px rgba(13, 27, 47, .14);
  }

  body.menu-open .site-navigation {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 6px;
  }

  .primary-menu a {
    min-height: 46px;
  }

  .primary-menu .sub-menu {
    position: static;
    display: block;
    margin-left: 12px;
    border: 0;
    box-shadow: none;
  }

  .section-header {
    display: block;
  }

  .search-form {
    display: grid;
  }
}
