.esw-stripe-product-page {
  --esw-sp-navy: #11172f;
  --esw-sp-text: #334155;
  --esw-sp-muted: #64748b;
  --esw-sp-line: #e5e7eb;
  --esw-sp-soft: #f8fafc;
  --esw-sp-soft2: #f3f6ff;
  --esw-sp-purple: #4f35c9;
  --esw-sp-purple2: #6d5dfc;
  --esw-sp-blue: #1167d8;
  --esw-sp-green: #16a34a;
  --esw-sp-card: #ffffff;
  --esw-sp-shadow: 0 18px 45px rgba(17, 24, 39, .10);
  --esw-sp-radius: 22px;
  color: var(--esw-sp-text);
  font-family: inherit;
  line-height: 1.6;
}

.esw-stripe-product-page * { box-sizing: border-box; }
.esw-stripe-product-page a { text-decoration: none; }
.esw-sp-wrap { width: min(1180px, 100%); margin: 0 auto; }

.esw-sp-intro {
  padding: 16px 0 18px;
}

.esw-sp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
  gap: 34px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--esw-sp-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(109,93,252,.12), transparent 28%),
    radial-gradient(circle at 8% 10%, rgba(17,103,216,.10), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.esw-sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(79,53,201,.18);
  border-radius: 999px;
  background: rgba(79,53,201,.07);
  color: var(--esw-sp-purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.esw-sp-badge:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--esw-sp-blue), var(--esw-sp-purple2));
  box-shadow: 0 0 0 5px rgba(79,53,201,.10);
}

.esw-sp-title {
  margin: 0;
  color: var(--esw-sp-navy);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
}

.esw-sp-lead {
  margin: 18px 0 0;
  max-width: 620px;
  color: #3f4b60;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.72;
}

.esw-sp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.esw-sp-cta-row-center { justify-content: center; }

.esw-sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  white-space: nowrap;
}

.esw-sp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17,24,39,.16);
  opacity: .97;
}

.esw-sp-btn-primary { background: linear-gradient(135deg, #18a957, #0d8f43); color: #fff !important; }
.esw-sp-btn-secondary { background: linear-gradient(135deg, #1574df, #0f55c8); color: #fff !important; }
.esw-sp-btn-ghost { background: #fff; color: var(--esw-sp-purple) !important; border-color: rgba(79,53,201,.18); }

.esw-sp-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--esw-sp-muted);
  font-size: 14px;
}

.esw-sp-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.esw-sp-mini-points span:before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--esw-sp-purple);
  background: rgba(79,53,201,.09);
  font-size: 12px;
  font-weight: 900;
}

.esw-sp-browser {
  background: #fff;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: var(--esw-sp-radius);
  box-shadow: var(--esw-sp-shadow);
  overflow: hidden;
}

.esw-sp-browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-bottom: 1px solid #edf1f7;
}

.esw-sp-browser-top span {
  width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1;
}

.esw-sp-browser-top span:nth-child(1) { background: #ff6b6b; }
.esw-sp-browser-top span:nth-child(2) { background: #f7c948; }
.esw-sp-browser-top span:nth-child(3) { background: #22c55e; }

.esw-shot {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.esw-sp-feature-strip { padding: 18px 0 24px; }
.esw-sp-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--esw-sp-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
}

.esw-sp-feature-card {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--esw-sp-line);
}
.esw-sp-feature-card:last-child { border-right: 0; }

.esw-sp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(79,53,201,.09);
  color: var(--esw-sp-purple);
  font-size: 24px;
}

.esw-sp-feature-card h3 {
  margin: 0 0 7px;
  color: var(--esw-sp-navy);
  font-size: 16px;
  line-height: 1.25;
}
.esw-sp-feature-card p { margin: 0; color: var(--esw-sp-muted); font-size: 13px; line-height: 1.45; }

.esw-sp-section { padding: 34px 0; }
.esw-sp-section-soft { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }

.esw-sp-two-col {
  display: grid;
  grid-template-columns: .44fr .56fr;
  gap: 28px;
  align-items: center;
}
.esw-sp-two-col.esw-sp-reverse { grid-template-columns: .56fr .44fr; }

.esw-sp-copy-card {
  padding: 28px;
  border-radius: var(--esw-sp-radius);
  background: #fff;
  border: 1px solid var(--esw-sp-line);
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.esw-sp-copy-card-center { text-align: center; }

.esw-sp-kicker {
  margin: 0 0 10px;
  color: var(--esw-sp-purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.esw-sp-section-title {
  margin: 0;
  color: var(--esw-sp-navy);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 900;
}

.esw-sp-section-text {
  margin: 16px 0 0;
  color: var(--esw-sp-text);
  font-size: 16px;
}

.esw-sp-check-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.esw-sp-check-list li {
  position: relative;
  padding-left: 27px;
  color: #3f4b60;
  font-size: 15px;
}
.esw-sp-check-list li:before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(22,163,74,.12);
  color: var(--esw-sp-green);
  font-size: 12px;
  font-weight: 900;
}

.esw-sp-image-card {
  position: relative;
  border-radius: var(--esw-sp-radius);
  padding: 12px;
  background: linear-gradient(135deg, rgba(79,53,201,.10), rgba(17,103,216,.07));
  box-shadow: var(--esw-sp-shadow);
}
.esw-sp-image-card .esw-sp-browser { box-shadow: none; }
.esw-sp-caption { margin: 11px 3px 0; color: var(--esw-sp-muted); font-size: 13px; }

.esw-sp-admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.esw-sp-recurring-layout {
  display: grid;
  grid-template-columns: .37fr .63fr;
  gap: 28px;
  align-items: start;
}
.esw-sp-recurring-shots { display: grid; gap: 18px; }
.esw-sp-recurring-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.esw-sp-cta-band {
  margin-top: 6px;
  padding: 42px 28px;
  text-align: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 20%, rgba(17,103,216,.14), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(109,93,252,.18), transparent 30%),
    linear-gradient(135deg, #f7f7ff, #f8fbff);
  border: 1px solid rgba(79,53,201,.14);
}
.esw-sp-cta-band h2 {
  margin: 0;
  color: var(--esw-sp-navy);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.esw-sp-cta-band p {
  margin: 12px auto 0;
  max-width: 760px;
  color: var(--esw-sp-text);
  font-size: 16px;
}
.esw-sp-bottom-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  color: var(--esw-sp-muted);
  font-size: 14px;
}
.esw-sp-bottom-trust span:before {
  content: "◎";
  color: var(--esw-sp-purple);
  margin-right: 7px;
}

@media (max-width: 980px) {
  .esw-sp-hero-grid,
  .esw-sp-two-col,
  .esw-sp-two-col.esw-sp-reverse,
  .esw-sp-recurring-layout {
    grid-template-columns: 1fr;
  }

  .esw-sp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .esw-sp-feature-card {
    border-right: 1px solid var(--esw-sp-line);
    border-bottom: 1px solid var(--esw-sp-line);
  }
  .esw-sp-feature-card:nth-child(3n) { border-right: 0; }
  .esw-sp-feature-card:nth-last-child(-n+3) { border-bottom: 0; }

  .esw-sp-admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .esw-sp-intro { padding-top: 8px; }
  .esw-sp-hero-grid,
  .esw-sp-copy-card,
  .esw-sp-cta-band { padding: 22px; }

  .esw-sp-cta-row,
  .esw-sp-cta-row-center {
    display: grid;
    grid-template-columns: 1fr;
  }
  .esw-sp-btn { width: 100%; }

  .esw-sp-feature-grid { grid-template-columns: 1fr 1fr; }
  .esw-sp-feature-card,
  .esw-sp-feature-card:nth-child(3n),
  .esw-sp-feature-card:nth-last-child(-n+3) {
    border-right: 1px solid var(--esw-sp-line);
    border-bottom: 1px solid var(--esw-sp-line);
  }
  .esw-sp-feature-card:nth-child(2n) { border-right: 0; }
  .esw-sp-feature-card:nth-last-child(-n+2) { border-bottom: 0; }

  .esw-sp-recurring-small-grid { grid-template-columns: 1fr; }
}

.esw-product-short-features {
    margin: 12px 0 0;
    padding-left: 20px;
}

.esw-product-short-features li {
    margin: 4px 0;
    line-height: 1.45;
}

/* eStoreware plugin product purchase layout */
.html-esw-plugin-product-page .product-details-page .overview.secondary {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.html-esw-plugin-product-page .product-details-page .attributes {
    margin: 18px 0;
}

.html-esw-plugin-product-page .product-details-page .attributes dl {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 14px 16px;
    align-items: start;
    margin: 0;
}

.html-esw-plugin-product-page .product-details-page .attributes dt,
.html-esw-plugin-product-page .product-details-page .attributes dd {
    margin: 0;
    padding: 0;
}

.html-esw-plugin-product-page .product-details-page .attributes dt label {
    font-weight: 700;
    color: #111827;
}

.html-esw-plugin-product-page .product-details-page .attributes dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.html-esw-plugin-product-page .product-details-page .attributes dd li {
    margin: 0;
}

.html-esw-plugin-product-page .product-details-page .attributes input[type="text"],
.html-esw-plugin-product-page .product-details-page .attributes select,
.html-esw-plugin-product-page .product-details-page .attributes textarea {
    width: 100%;
    max-width: 100%;
}

.esw-supported-versions-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 14px 16px;
    margin: 16px 0 20px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.esw-supported-versions-label,
.esw-supported-versions-value {
    padding: 13px 14px;
}

.esw-supported-versions-label {
    font-weight: 800;
    color: #2563eb;
    border-right: 1px solid #e5e7eb;
}

.esw-supported-versions-value {
    color: #374151;
}

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

.esw-plugin-extra-actions .button-2 {
    min-width: 165px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.esw-plugin-enquire-button {
    background: #f97316 !important;
    color: #fff !important;
}

.esw-plugin-trial-button {
    background: #16a34a !important;
    color: #fff !important;
}

.esw-plugin-full-description {
    margin-top: 36px;
}

@media (max-width: 768px) {
    .html-esw-plugin-product-page .product-details-page .attributes dl,
    .esw-supported-versions-row {
        grid-template-columns: 1fr;
    }

    .esw-supported-versions-label {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .esw-plugin-extra-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .esw-plugin-extra-actions .button-2 {
        width: 100%;
    }
}

/* =========================================================
   eStoreware Plugin Product Page Layout
   Applies only to eStoreware plugin product detail pages
   ========================================================= */

.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .product-essential {
    display: grid !important;
    grid-template-columns: minmax(320px, 42%) minmax(360px, 58%) !important;
    gap: 34px !important;
    align-items: start !important;
    margin-bottom: 34px !important;
}

.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .gallery {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .overview.primary,
.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .overview.secondary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .overview.primary {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .overview.secondary {
    grid-column: 2 !important;
    grid-row: 2 !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 18px !important;
    padding: 22px !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06) !important;
}

.html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .gallery {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
}

/* Product title and short description */
.html-esw-plugin-product-page .product-details-page .product-name h1 {
    color: #11172f !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    font-weight: 900 !important;
    margin: 0 0 14px !important;
}

.html-esw-plugin-product-page .product-details-page .short-description {
    color: #334155 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 0 0 18px !important;
}

.html-esw-plugin-product-page .product-details-page .short-description ul,
.html-esw-plugin-product-page .product-details-page .esw-product-short-features {
    margin: 12px 0 0 !important;
    padding-left: 20px !important;
}

.html-esw-plugin-product-page .product-details-page .short-description li,
.html-esw-plugin-product-page .product-details-page .esw-product-short-features li {
    margin: 5px 0 !important;
    line-height: 1.45 !important;
}

/* Product images / thumbnail strip cleanup */
.html-esw-plugin-product-page .product-details-page .gallery .picture {
    max-width: 100% !important;
    overflow: hidden !important;
}

.html-esw-plugin-product-page .product-details-page .gallery .picture img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.html-esw-plugin-product-page .product-details-page .picture-thumbs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 0 4px !important;
    box-sizing: border-box !important;
}

.html-esw-plugin-product-page .product-details-page .picture-thumbs a {
    flex: 0 0 92px !important;
    width: 92px !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background: #fff !important;
}

.html-esw-plugin-product-page .product-details-page .picture-thumbs img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Purchase box */
.html-esw-plugin-product-page .product-details-page .overview.secondary .prices {
    margin-bottom: 18px !important;
}

.html-esw-plugin-product-page .product-details-page .overview.secondary .actual-price {
    color: #11172f !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

/* Product attributes moved into buy box */
.html-esw-plugin-product-page .product-details-page .esw-plugin-purchase-options {
    margin: 18px 0 20px !important;
}

.html-esw-plugin-product-page .product-details-page .attributes {
    margin: 0 !important;
}

.html-esw-plugin-product-page .product-details-page .attributes dl {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr) !important;
    gap: 14px 16px !important;
    align-items: start !important;
    margin: 0 !important;
}

.html-esw-plugin-product-page .product-details-page .attributes dt,
.html-esw-plugin-product-page .product-details-page .attributes dd {
    margin: 0 !important;
    padding: 0 !important;
}

.html-esw-plugin-product-page .product-details-page .attributes dt label,
.html-esw-plugin-product-page .product-details-page .attributes dt {
    font-weight: 800 !important;
    color: #111827 !important;
    line-height: 1.4 !important;
}

.html-esw-plugin-product-page .product-details-page .attributes dd ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.html-esw-plugin-product-page .product-details-page .attributes dd li {
    margin: 0 !important;
    padding: 0 !important;
}

.html-esw-plugin-product-page .product-details-page .attributes input[type="radio"],
.html-esw-plugin-product-page .product-details-page .attributes input[type="checkbox"] {
    margin-right: 6px !important;
}

.html-esw-plugin-product-page .product-details-page .attributes input[type="text"],
.html-esw-plugin-product-page .product-details-page .attributes select,
.html-esw-plugin-product-page .product-details-page .attributes textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 42px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    padding: 9px 11px !important;
}

/* Supported versions row */
.html-esw-plugin-product-page .product-details-page .esw-supported-versions-row {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr) !important;
    gap: 0 !important;
    margin: 16px 0 20px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #f8fafc !important;
}

.html-esw-plugin-product-page .product-details-page .esw-supported-versions-label,
.html-esw-plugin-product-page .product-details-page .esw-supported-versions-value {
    padding: 13px 14px !important;
    line-height: 1.45 !important;
}

.html-esw-plugin-product-page .product-details-page .esw-supported-versions-label {
    font-weight: 900 !important;
    color: #2563eb !important;
    background: #eff6ff !important;
    border-right: 1px solid #e5e7eb !important;
}

.html-esw-plugin-product-page .product-details-page .esw-supported-versions-value {
    color: #374151 !important;
    font-weight: 700 !important;
}

/* Add to cart and extra actions */
.html-esw-plugin-product-page .product-details-page .add-to-cart {
    margin-top: 18px !important;
}

.html-esw-plugin-product-page .product-details-page .add-to-cart-button,
.html-esw-plugin-product-page .product-details-page .button-1.add-to-cart-button {
    min-height: 50px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    padding: 0 28px !important;
}

.html-esw-plugin-product-page .product-details-page .esw-plugin-extra-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 16px !important;
}

.html-esw-plugin-product-page .product-details-page .esw-plugin-extra-actions .button-2 {
    min-width: 165px !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    border: 0 !important;
}

.html-esw-plugin-product-page .product-details-page .esw-plugin-enquire-button {
    background: #f97316 !important;
    color: #fff !important;
}

.html-esw-plugin-product-page .product-details-page .esw-plugin-trial-button {
    background: #16a34a !important;
    color: #fff !important;
}

/* Hide noisy normal product buttons on plugin product pages if you want cleaner plugin sales pages */
.html-esw-plugin-product-page .product-details-page .overview-buttons {
    margin-top: 16px !important;
}

/* Full feature description below buy box */
.html-esw-plugin-product-page .product-details-page .esw-plugin-full-description {
    width: 100% !important;
    max-width: 100% !important;
    margin: 42px auto 0 !important;
    clear: both !important;
}

/* Mobile */
@media (max-width: 980px) {
    .html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .product-essential {
        display: block !important;
    }

    .html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .gallery,
    .html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .overview.primary,
    .html-esw-plugin-product-page .product-details-page.esw-plugin-product-details-page .overview.secondary {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px !important;
    }
}

@media (max-width: 768px) {
    .html-esw-plugin-product-page .product-details-page .attributes dl,
    .html-esw-plugin-product-page .product-details-page .esw-supported-versions-row {
        grid-template-columns: 1fr !important;
    }

    .html-esw-plugin-product-page .product-details-page .esw-supported-versions-label {
        border-right: 0 !important;
        border-bottom: 1px solid #e5e7eb !important;
    }

    .html-esw-plugin-product-page .product-details-page .esw-plugin-extra-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .html-esw-plugin-product-page .product-details-page .esw-plugin-extra-actions .button-2 {
        width: 100% !important;
    }
}
