:root {
  --op-primary: #13253a;
  --op-primary-dark: #0a1624;
  --op-accent: #a8443a;
  --op-accent-dark: #7e302a;
  --op-charcoal: #20262d;
  --op-grey-700: #4f5b67;
  --op-grey-500: #7b8793;
  --op-grey-300: #d5dbe1;
  --op-grey-200: #e3e7eb;
  --op-grey-100: #f2f4f6;
  --op-off-white: #faf9f7;
  --op-white: #fff;
  --op-whatsapp: #25d366;
}

/* =========================================================
   OfficePoint cart page
   The shortcode renders WooCommerce's native cart inside this
   component, so product, coupon, shipping and totals logic stays
   compatible with WooCommerce updates.
   ========================================================= */

.op-cart-page,
.op-cart-page * {
  box-sizing: border-box;
}

.op-cart-page {
  width: 100%;
  color: var(--op-charcoal);
  background: var(--op-off-white);
  font-family: "Source Sans 3", Arial, sans-serif;
}

.op-cart-page a {
  text-decoration: none;
}

.op-cart-page h1,
.op-cart-page h2,
.op-cart-page h3,
.op-cart-page button,
.op-cart-page input,
.op-cart-page select,
.op-cart-page strong,
.op-cart-page .woocommerce-Price-amount {
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.op-cart-page__inner {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  padding: 24px 0 72px;
}

.op-cart-page__breadcrumb {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--op-grey-500);
  font-size: 12px;
}

.op-cart-page__breadcrumb a {
  color: var(--op-grey-700);
}

.op-cart-page__breadcrumb a:hover {
  color: var(--op-accent-dark);
}

.op-cart-page__breadcrumb span:first-of-type {
  color: var(--op-grey-300);
}

.op-cart-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--op-grey-300);
}

.op-cart-page__eyebrow {
  margin: 0 0 7px;
  color: var(--op-accent-dark);
  font: 600 11px/1.2 "IBM Plex Sans", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.op-cart-page__header h1 {
  margin: 0;
  color: var(--op-primary-dark);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.op-cart-page__count {
  margin: 9px 0 0;
  color: var(--op-grey-700);
  font-size: 14px;
  line-height: 1.45;
}

.op-cart-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0 0 5px;
  list-style: none;
}

.op-cart-steps li {
  position: relative;
  display: flex;
  min-width: 104px;
  align-items: center;
  gap: 8px;
  color: var(--op-grey-500);
  font: 500 12px/1.2 "IBM Plex Sans", Arial, sans-serif;
}

.op-cart-steps li:not(:last-child)::after {
  content: "";
  width: 34px;
  height: 1px;
  margin: 0 10px;
  background: var(--op-grey-300);
}

.op-cart-steps li span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid var(--op-grey-300);
  border-radius: 50%;
  color: var(--op-grey-700);
  background: var(--op-white);
  font-size: 11px;
  font-weight: 600;
}

.op-cart-steps li.is-current {
  color: var(--op-primary);
  font-weight: 600;
}

.op-cart-steps li.is-current span {
  border-color: var(--op-primary);
  color: var(--op-white);
  background: var(--op-primary);
}

/* WooCommerce cart layout */

.op-cart-page__commerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.op-cart-page__commerce > .woocommerce {
  display: contents;
}

.op-cart-page__commerce .woocommerce-notices-wrapper,
.op-cart-page__commerce > .woocommerce-message,
.op-cart-page__commerce > .woocommerce-error,
.op-cart-page__commerce > .woocommerce-info {
  grid-column: 1 / -1;
}

.op-cart-page__commerce .woocommerce-message,
.op-cart-page__commerce .woocommerce-info,
.op-cart-page__commerce .woocommerce-error {
  width: 100%;
  margin: 0 0 4px !important;
  padding: 13px 16px 13px 44px !important;
  border: 1px solid var(--op-grey-300) !important;
  border-top: 2px solid var(--op-primary) !important;
  border-radius: 0 !important;
  color: var(--op-grey-700) !important;
  background: var(--op-white) !important;
  font-size: 13px;
  line-height: 1.45;
}

.op-cart-page__commerce .woocommerce-message::before,
.op-cart-page__commerce .woocommerce-info::before {
  top: 13px !important;
  color: var(--op-primary) !important;
}

.op-cart-page__commerce .woocommerce-error {
  border-top-color: var(--op-accent) !important;
}

.op-cart-page__commerce .woocommerce-error::before {
  top: 13px !important;
  color: var(--op-accent) !important;
}

.op-cart-page__commerce .woocommerce-cart-form {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  margin: 0 !important;
  border: 1px solid var(--op-grey-200);
  background: var(--op-white);
}

.op-cart-page__commerce table.shop_table {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
  background: transparent;
}

.op-cart-page__commerce table.shop_table thead {
  border-bottom: 1px solid var(--op-grey-200);
  background: var(--op-grey-100);
}

.op-cart-page__commerce table.shop_table thead th {
  padding: 12px 10px !important;
  border: 0 !important;
  color: var(--op-grey-700);
  font: 600 11px/1.2 "IBM Plex Sans", Arial, sans-serif;
  letter-spacing: .035em;
  text-align: left;
  text-transform: uppercase;
}

.op-cart-page__commerce table.shop_table thead th.product-remove,
.op-cart-page__commerce table.shop_table thead th.product-thumbnail {
  font-size: 0;
}

.op-cart-page__commerce table.shop_table tbody tr.cart_item {
  border-bottom: 1px solid var(--op-grey-200);
}

.op-cart-page__commerce table.shop_table tbody tr.cart_item:last-of-type {
  border-bottom: 0;
}

.op-cart-page__commerce table.shop_table td {
  padding: 16px 10px !important;
  border: 0 !important;
  color: var(--op-grey-700);
  background: transparent !important;
  font-size: 13px;
  vertical-align: middle;
}

.op-cart-page__commerce td.product-remove {
  width: 34px;
  padding-right: 2px !important;
  text-align: center;
}

.op-cart-page__commerce td.product-remove a.remove {
  display: grid !important;
  width: 25px !important;
  height: 25px !important;
  place-items: center;
  border: 1px solid var(--op-grey-300);
  border-radius: 50% !important;
  color: var(--op-grey-700) !important;
  background: var(--op-white) !important;
  font: 400 17px/1 Arial, sans-serif !important;
}

.op-cart-page__commerce td.product-remove a.remove:hover,
.op-cart-page__commerce td.product-remove a.remove:focus-visible {
  border-color: var(--op-accent);
  color: var(--op-white) !important;
  background: var(--op-accent) !important;
}

.op-cart-page__commerce td.product-thumbnail {
  width: 92px;
}

.op-cart-page__commerce td.product-thumbnail a {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--op-grey-200);
  background: var(--op-grey-100);
}

.op-cart-page__commerce td.product-thumbnail img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 5px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.op-cart-page__commerce td.product-name {
  min-width: 175px;
}

.op-cart-page__commerce td.product-name > a {
  display: inline;
  color: var(--op-primary-dark);
  font: 600 14px/1.4 "IBM Plex Sans", Arial, sans-serif;
}

.op-cart-page__commerce td.product-name > a:hover {
  color: var(--op-accent-dark);
}

.op-cart-page__commerce td.product-name dl.variation {
  margin: 6px 0 0;
  color: var(--op-grey-500);
  font-size: 11px;
}

.op-cart-page__commerce td.product-name dl.variation dt,
.op-cart-page__commerce td.product-name dl.variation dd,
.op-cart-page__commerce td.product-name dl.variation p {
  margin: 0;
}

.op-cart-page__commerce td.product-price,
.op-cart-page__commerce td.product-subtotal {
  color: var(--op-primary);
  font: 600 13px/1.3 "IBM Plex Sans", Arial, sans-serif;
  white-space: nowrap;
}

.op-cart-page__commerce td.product-subtotal {
  font-size: 14px;
}

.op-cart-page__commerce .quantity {
  float: none !important;
  width: 76px;
  margin: 0 !important;
}

.op-cart-page__commerce .quantity .qty {
  width: 76px !important;
  min-height: 40px;
  margin: 0 !important;
  padding: 7px 5px;
  border: 1px solid var(--op-grey-300) !important;
  border-radius: 2px !important;
  color: var(--op-charcoal);
  background: var(--op-white);
  text-align: center;
}

.op-cart-page__commerce .quantity .qty:focus {
  border-color: var(--op-primary) !important;
  outline: 2px solid rgba(19, 37, 58, .12);
  outline-offset: 0;
}

.op-cart-page__commerce tr:not(.cart_item) td.actions {
  padding: 15px !important;
  border-top: 1px solid var(--op-grey-200) !important;
  background: var(--op-grey-100) !important;
}

.op-cart-page__commerce td.actions::after {
  display: table;
  clear: both;
  content: "";
}

.op-cart-page__commerce td.actions .coupon {
  display: flex;
  float: left !important;
  gap: 8px;
}

.op-cart-page__commerce td.actions .coupon label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.op-cart-page__commerce td.actions .coupon .input-text {
  width: 170px !important;
  min-height: 40px;
  margin: 0 !important;
  padding: 8px 10px !important;
  border: 1px solid var(--op-grey-300) !important;
  border-radius: 2px !important;
  color: var(--op-charcoal);
  background: var(--op-white);
  font-size: 13px;
}

.op-cart-page__commerce td.actions button.button,
.op-cart-page__commerce .coupon button.button {
  min-height: 40px;
  margin: 0 !important;
  padding: 9px 14px !important;
  border: 1px solid var(--op-primary) !important;
  border-radius: 2px !important;
  color: var(--op-primary) !important;
  background: var(--op-white) !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.op-cart-page__commerce td.actions > button.button {
  float: right !important;
  color: var(--op-white) !important;
  background: var(--op-primary) !important;
}

.op-cart-page__commerce td.actions button.button:hover,
.op-cart-page__commerce td.actions button.button:focus-visible,
.op-cart-page__commerce .coupon button.button:hover,
.op-cart-page__commerce .coupon button.button:focus-visible {
  border-color: var(--op-primary-dark) !important;
  color: var(--op-white) !important;
  background: var(--op-primary-dark) !important;
}

.op-cart-page__commerce td.actions button.button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

/* Cart totals */

.op-cart-page__commerce .cart-collaterals {
  display: contents;
}

.op-cart-page__commerce .cart_totals {
  position: sticky;
  top: 128px;
  grid-column: 2;
  grid-row: 2;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 22px;
  border: 1px solid var(--op-grey-200);
  background: var(--op-white);
}

.op-cart-page__commerce .cart_totals h2 {
  margin: 0 0 17px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--op-grey-200);
  color: var(--op-primary-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.op-cart-page__commerce .cart_totals table.shop_table {
  border: 0 !important;
}

.op-cart-page__commerce .cart_totals table.shop_table tr {
  border-bottom: 1px solid var(--op-grey-200);
}

.op-cart-page__commerce .cart_totals table.shop_table tr:last-child {
  border-bottom: 0;
}

.op-cart-page__commerce .cart_totals table.shop_table th,
.op-cart-page__commerce .cart_totals table.shop_table td {
  padding: 13px 0 !important;
  border: 0 !important;
  color: var(--op-grey-700);
  background: transparent !important;
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}

.op-cart-page__commerce .cart_totals table.shop_table th {
  width: 40%;
  color: var(--op-primary);
  font-weight: 600;
}

.op-cart-page__commerce .cart_totals table.shop_table td {
  text-align: right;
}

.op-cart-page__commerce .cart_totals .order-total th,
.op-cart-page__commerce .cart_totals .order-total td {
  padding-top: 17px !important;
  color: var(--op-primary-dark);
  font-size: 15px;
}

.op-cart-page__commerce .cart_totals .order-total .woocommerce-Price-amount {
  color: var(--op-primary-dark);
  font-size: 20px;
  font-weight: 700;
}

.op-cart-page__commerce .cart_totals .shipping-calculator-button {
  display: inline-flex;
  margin-top: 6px;
  color: var(--op-accent-dark);
  font-size: 12px;
  font-weight: 600;
}

.op-cart-page__commerce .cart_totals .shipping-calculator-form {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--op-grey-200);
  background: var(--op-grey-100);
  text-align: left;
}

.op-cart-page__commerce .cart_totals .shipping-calculator-form p {
  margin: 0 0 8px !important;
}

.op-cart-page__commerce .cart_totals .shipping-calculator-form input,
.op-cart-page__commerce .cart_totals .shipping-calculator-form select {
  width: 100%;
  min-height: 40px;
  padding: 7px 9px;
  border: 1px solid var(--op-grey-300);
  border-radius: 2px;
  background: var(--op-white);
}

.op-cart-page__commerce .wc-proceed-to-checkout {
  margin: 18px 0 0 !important;
  padding: 0 !important;
}

.op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce .op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-page .op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 12px 16px !important;
  border: 1px solid var(--op-primary) !important;
  border-radius: 2px !important;
  color: var(--op-white) !important;
  background: var(--op-primary) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-align: center;
}

.op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button:hover,
.op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button:focus-visible,
.woocommerce .op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-page .op-cart-page__commerce .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: var(--op-primary-dark) !important;
  color: var(--op-white) !important;
  background: var(--op-primary-dark) !important;
}

.op-cart-page__commerce .cart_totals::after {
  display: block;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--op-grey-200);
  color: var(--op-grey-500);
  content: "Delivery charges, where applicable, are confirmed during checkout.";
  font-size: 11px;
  line-height: 1.45;
}

/* Empty cart */

.op-cart-page__commerce p.cart-empty,
.op-cart-page__commerce .wc-empty-cart-message,
.op-cart-page__commerce p.return-to-shop {
  grid-column: 1 / -1;
}

.op-cart-page__commerce .wc-empty-cart-message {
  display: contents;
}

.op-cart-page__commerce p.cart-empty {
  margin: 0 !important;
  padding: 46px 24px 14px !important;
  border: 1px solid var(--op-grey-200) !important;
  border-bottom: 0 !important;
  color: var(--op-primary-dark) !important;
  background: var(--op-white) !important;
  font: 600 22px/1.3 "IBM Plex Sans", Arial, sans-serif;
  text-align: center;
}

.op-cart-page__commerce p.cart-empty::before {
  display: none !important;
}

.op-cart-page__commerce p.return-to-shop {
  margin: 0 !important;
  padding: 0 24px 46px;
  border: 1px solid var(--op-grey-200);
  border-top: 0;
  background: var(--op-white);
  text-align: center;
}

.op-cart-page__commerce p.return-to-shop a.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px !important;
  border: 1px solid var(--op-primary) !important;
  border-radius: 2px !important;
  color: var(--op-white) !important;
  background: var(--op-primary) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.op-cart-page__unavailable {
  margin: 40px 0;
  padding: 24px;
  border: 1px solid var(--op-grey-200);
  background: var(--op-white);
}

/* Bulk-order support */

.op-cart-page__support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--op-grey-200);
  border-left: 3px solid var(--op-accent);
  background: var(--op-white);
}

.op-cart-page__support h2 {
  margin: 0;
  color: var(--op-primary-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.op-cart-page__support p {
  max-width: 720px;
  margin: 5px 0 0;
  color: var(--op-grey-700);
  font-size: 13px;
  line-height: 1.55;
}

.op-cart-page__support-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.op-cart-page__support-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid var(--op-grey-300);
  border-radius: 2px;
  font: 600 12px/1.2 "IBM Plex Sans", Arial, sans-serif;
  white-space: nowrap;
}

.op-cart-page__support-actions svg {
  width: 16px;
  height: 16px;
}

.op-cart-page__quote {
  border-color: var(--op-primary) !important;
  color: var(--op-white);
  background: var(--op-primary);
}

.op-cart-page__quote:hover {
  border-color: var(--op-primary-dark) !important;
  color: var(--op-white);
  background: var(--op-primary-dark);
}

.op-cart-page__whatsapp {
  border-color: var(--op-whatsapp) !important;
  color: var(--op-primary-dark);
  background: var(--op-whatsapp);
}

.op-cart-page__whatsapp:hover {
  border-color: #1ebd57 !important;
  color: var(--op-primary-dark);
  background: #1ebd57;
}

.op-cart-page__continue {
  color: var(--op-primary);
  background: var(--op-white);
}

@media (max-width: 980px) {
  .op-cart-page__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .op-cart-steps {
    padding-bottom: 0;
  }

  .op-cart-page__commerce {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
  }

  .op-cart-page__commerce td.product-thumbnail {
    width: 78px;
  }

  .op-cart-page__commerce td.product-thumbnail a {
    width: 64px;
    height: 64px;
  }

  .op-cart-page__commerce td.product-price {
    display: none;
  }

  .op-cart-page__commerce .cart_totals {
    padding: 18px;
  }

  .op-cart-page__support {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .op-cart-page__inner {
    width: min(100% - 28px, 1240px);
    padding: 18px 0 56px;
  }

  .op-cart-page__breadcrumb {
    margin-bottom: 13px;
  }

  .op-cart-page__header {
    margin-bottom: 18px;
    padding-bottom: 17px;
  }

  .op-cart-page__header h1 {
    font-size: 32px;
  }

  .op-cart-steps {
    width: 100%;
    justify-content: space-between;
  }

  .op-cart-steps li {
    min-width: 0;
    gap: 6px;
    font-size: 11px;
  }

  .op-cart-steps li:not(:last-child)::after {
    width: clamp(16px, 7vw, 38px);
    margin: 0 7px;
  }

  .op-cart-page__commerce {
    display: block;
  }

  .op-cart-page__commerce .woocommerce-notices-wrapper,
  .op-cart-page__commerce > .woocommerce-message,
  .op-cart-page__commerce > .woocommerce-error,
  .op-cart-page__commerce > .woocommerce-info {
    margin-bottom: 14px;
  }

  .op-cart-page__commerce .woocommerce-cart-form {
    display: block;
    width: 100%;
  }

  .op-cart-page__commerce table.shop_table,
  .op-cart-page__commerce table.shop_table tbody {
    display: block;
    width: 100% !important;
  }

  .op-cart-page__commerce table.shop_table thead {
    display: none !important;
  }

  .op-cart-page__commerce table.shop_table tbody tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0 13px;
    padding: 15px 40px 15px 15px;
  }

  .op-cart-page__commerce table.shop_table tbody tr.cart_item td {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .op-cart-page__commerce table.shop_table tbody tr.cart_item td::before {
    display: none !important;
  }

  .op-cart-page__commerce td.product-remove {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 12px;
  }

  .op-cart-page__commerce td.product-thumbnail {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  .op-cart-page__commerce td.product-thumbnail a {
    width: 84px;
    height: 84px;
  }

  .op-cart-page__commerce td.product-name {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding-right: 4px !important;
  }

  .op-cart-page__commerce td.product-name > a {
    font-size: 13px;
  }

  .op-cart-page__commerce td.product-price {
    display: block !important;
    grid-column: 2;
    grid-row: 2;
    margin-top: 6px;
    color: var(--op-grey-500);
    font-size: 11px;
  }

  .op-cart-page__commerce td.product-price::after {
    color: var(--op-grey-500);
    content: " each";
    font-weight: 400;
  }

  .op-cart-page__commerce td.product-quantity {
    grid-column: 2;
    grid-row: 3;
    margin-top: 10px;
  }

  .op-cart-page__commerce td.product-subtotal {
    grid-column: 2;
    grid-row: 4;
    margin-top: 8px;
    font-size: 13px;
  }

  .op-cart-page__commerce td.product-subtotal::before {
    display: inline !important;
    margin-right: 5px;
    color: var(--op-grey-500);
    content: "Subtotal:";
    font-family: "Source Sans 3", Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
  }

  .op-cart-page__commerce .quantity,
  .op-cart-page__commerce .quantity .qty {
    width: 68px !important;
  }

  .op-cart-page__commerce tr:not(.cart_item) {
    display: block;
  }

  .op-cart-page__commerce tr:not(.cart_item) td.actions {
    display: grid !important;
    gap: 10px;
    padding: 13px !important;
  }

  .op-cart-page__commerce td.actions .coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    float: none !important;
    gap: 7px;
  }

  .op-cart-page__commerce td.actions .coupon .input-text {
    width: 100% !important;
  }

  .op-cart-page__commerce td.actions > button.button {
    width: 100%;
    float: none !important;
  }

  .op-cart-page__commerce .cart-collaterals {
    display: block;
  }

  .op-cart-page__commerce .cart_totals {
    position: static;
    width: 100% !important;
    margin-top: 16px !important;
    padding: 19px;
  }

  .op-cart-page__commerce .cart_totals table.shop_table,
  .op-cart-page__commerce .cart_totals table.shop_table tbody {
    display: table;
  }

  .op-cart-page__commerce .cart_totals table.shop_table tr {
    display: table-row;
  }

  .op-cart-page__commerce .cart_totals table.shop_table th,
  .op-cart-page__commerce .cart_totals table.shop_table td {
    display: table-cell !important;
  }

  .op-cart-page__support {
    margin-top: 18px;
    padding: 19px 17px;
  }

  .op-cart-page__support-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .op-cart-page__support-actions a {
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .op-cart-page__inner {
    width: min(100% - 20px, 1240px);
  }

  .op-cart-steps li {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .op-cart-steps li:not(:last-child)::after {
    align-self: flex-start;
    margin-top: 12px;
  }

  .op-cart-page__commerce table.shop_table tbody tr.cart_item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0 11px;
    padding: 13px 36px 13px 12px;
  }

  .op-cart-page__commerce td.product-thumbnail a {
    width: 76px;
    height: 76px;
  }

  .op-cart-page__support-actions {
    grid-template-columns: 1fr;
  }
}

.op-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.op-product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--op-white);
  border: 1px solid var(--op-grey-200);
  border-radius: 7px;
  color: var(--op-charcoal);
  font-family: "Source Sans 3", Arial, sans-serif;
  transition: border-color .18s ease, transform .18s ease;
}

.op-product-card:hover {
  border-color: #c4cbd2;
  transform: translateY(-2px);
}

.op-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--op-grey-100);
  text-decoration: none;
}

.op-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .22s ease;
}

.op-product-card:hover .op-product-card__image img {
  transform: scale(1.025);
}

.op-product-card__badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--op-accent);
  color: var(--op-white);
  font: 600 11px/1 "IBM Plex Sans", Arial, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.op-product-card__body {
  padding: 15px;
}

.op-product-card__category {
  display: block;
  min-height: 15px;
  margin: 0 0 7px;
  overflow: hidden;
  color: var(--op-accent-dark);
  font: 600 11px/1.25 "IBM Plex Sans", Arial, sans-serif;
  letter-spacing: .05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.op-product-card h3 {
  min-height: 44px;
  margin: 0 0 9px;
  color: var(--op-primary);
  font: 600 16px/1.35 "IBM Plex Sans", Arial, sans-serif;
}

.op-product-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.op-product-card__price {
  min-height: 27px;
  margin: 0 0 13px;
  color: var(--op-charcoal);
  font: 700 18px/1.35 "IBM Plex Sans", Arial, sans-serif;
}

.op-product-card__price del {
  margin-right: 5px;
  color: var(--op-grey-500);
  font-size: 13px;
  font-weight: 500;
}

.op-product-card__price ins {
  color: var(--op-primary);
  text-decoration: none;
}

.op-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.op-product-card__actions--single {
  grid-template-columns: 1fr;
}

.op-product-card__cart {
  order: 1;
}

.op-product-card__whatsapp {
  order: 2;
}

.op-product-card__cart,
.op-product-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  padding: 10px 9px;
  border: 1px solid transparent;
  border-radius: 5px;
  font: 600 13px/1 "IBM Plex Sans", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.op-product-card .op-product-card__cart,
.op-product-card .op-product-card__cart.button,
.woocommerce .op-product-card a.button.op-product-card__cart,
.woocommerce-page .op-product-card a.button.op-product-card__cart {
  border-color: var(--op-primary) !important;
  background-color: var(--op-primary) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--op-white) !important;
}

.op-product-card .op-product-card__cart:hover,
.op-product-card .op-product-card__cart:focus-visible,
.op-product-card .op-product-card__cart.button:hover,
.op-product-card .op-product-card__cart.button:focus-visible,
.woocommerce .op-product-card a.button.op-product-card__cart:hover,
.woocommerce .op-product-card a.button.op-product-card__cart:focus-visible,
.woocommerce-page .op-product-card a.button.op-product-card__cart:hover,
.woocommerce-page .op-product-card a.button.op-product-card__cart:focus-visible {
  border-color: var(--op-primary-dark) !important;
  background-color: var(--op-primary-dark) !important;
  color: var(--op-white) !important;
}

.op-product-card__cart.loading {
  opacity: .65;
  pointer-events: none;
}

.op-product-card .op-product-card__cart.added,
.woocommerce .op-product-card a.button.op-product-card__cart.added,
.woocommerce-page .op-product-card a.button.op-product-card__cart.added {
  border-color: var(--op-primary) !important;
  background-color: var(--op-primary) !important;
  color: var(--op-white) !important;
}

.op-product-card__whatsapp {
  border: 1px solid #b9e8c8;
  background: #f4fcf6;
  color: #116c31;
}

.op-product-card__whatsapp:hover {
  border-color: var(--op-whatsapp);
  background: var(--op-whatsapp);
  color: #072d15;
}

.op-product-card__whatsapp svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-right: 6px;
}

.op-product-card__whatsapp span {
  display: inline;
}

.op-product-card__actions > .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 3;
  grid-column: 1 / -1;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--op-primary);
  border-radius: 5px;
  color: var(--op-primary);
  font: 600 12px/1.2 "IBM Plex Sans", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
}

.op-product-card__actions > .added_to_cart:hover {
  color: var(--op-white);
  background: var(--op-primary);
}

.op-product-section__empty {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--op-grey-200);
  background: var(--op-grey-100);
  color: var(--op-grey-700);
  text-align: center;
}

@media (max-width: 1024px) {
  .op-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .op-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .op-product-card {
    border-radius: 5px;
  }

  .op-product-card__image img {
    padding: 7px;
  }

  .op-product-card__badge {
    top: 7px;
    left: 7px;
    min-height: 20px;
    padding: 3px 6px;
    font-size: 9px;
  }

  .op-product-card__body {
    padding: 10px;
  }

  .op-product-card__category {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .op-product-card h3 {
    min-height: 40px;
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .op-product-card__price {
    min-height: 22px;
    margin-bottom: 9px;
    font-size: 14px;
  }

  .op-product-card__price del {
    display: none;
  }

  .op-product-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .op-product-card__cart,
  .op-product-card__whatsapp {
    min-height: 34px;
    padding: 8px 6px;
    font-size: 11px;
  }

  .op-product-card__whatsapp svg {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
}

@media (max-width: 360px) {
  .op-product-card__cart,
  .op-product-card__whatsapp {
    font-size: 10px;
  }
}

/*
 * Stable single-product gallery.
 *
 * The shortcode uses plugin-owned markup instead of WooCommerce FlexSlider,
 * so the active image cannot inherit a collapsed inline slide width.
 */
.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery {
  display: block !important;
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  background: var(--op-white);
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__stage {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: var(--op-white);
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__main-link {
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center;
  overflow: hidden;
  background: var(--op-white);
  cursor: zoom-in;
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__main {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: clamp(14px, 2.2vw, 30px) !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  transform: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumbs {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 !important;
  padding: 12px !important;
  border-top: 1px solid var(--op-grey-200);
  background: var(--op-white);
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--op-grey-200) !important;
  border-radius: 3px !important;
  background: var(--op-grey-100) !important;
  box-shadow: none !important;
  cursor: pointer;
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb:hover,
.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb:focus-visible,
.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb[aria-current="true"] {
  border-color: var(--op-primary) !important;
  outline: 0;
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 5px !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: .72;
}

.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb:hover img,
.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb:focus-visible img,
.op-single-product[data-op-single-product] .op-single-product__media .op-product-gallery__thumb[aria-current="true"] img {
  opacity: 1;
}

/*
 * Single-product native cart form.
 *
 * The shortcode does not sit inside WooCommerce's usual div.product wrapper.
 * Anchor these rules to the OfficePoint component itself so Elementor and
 * theme form rules cannot split the quantity and purchase controls.
 */
.op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
}

.op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
}

.op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart > .quantity,
.op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart > .quantity {
  display: block !important;
  float: none !important;
  flex: 0 0 92px !important;
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  margin: 0 !important;
}

.op-single-product[data-op-single-product] .op-single-product__cart form.cart .quantity .qty {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 8px !important;
  border: 1px solid var(--op-grey-300) !important;
  border-radius: 4px !important;
  background: var(--op-white) !important;
  color: var(--op-charcoal) !important;
  text-align: center !important;
  box-shadow: none !important;
}

.op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart > .single_add_to_cart_button,
.op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart > .single_add_to_cart_button {
  display: inline-flex !important;
  float: none !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 12px 20px !important;
  border: 1px solid var(--op-primary) !important;
  border-radius: 4px !important;
  background: var(--op-primary) !important;
  color: var(--op-white) !important;
  box-shadow: none !important;
  font: 600 15px/1.2 "IBM Plex Sans", Arial, sans-serif !important;
  text-align: center !important;
}

.op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart > .single_add_to_cart_button:hover,
.op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart > .single_add_to_cart_button:focus-visible,
.op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart > .single_add_to_cart_button:hover,
.op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart > .single_add_to_cart_button:focus-visible {
  border-color: var(--op-primary-dark) !important;
  background: var(--op-primary-dark) !important;
  color: var(--op-white) !important;
}

.op-single-product[data-op-single-product].op-single-product--external .op-single-product__cart > form.cart > .single_add_to_cart_button,
.op-single-product[data-op-single-product].op-single-product--grouped .op-single-product__cart > form.cart > .single_add_to_cart_button {
  width: 100% !important;
}

@media (max-width: 560px) {
  .op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart,
  .op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart {
    gap: 8px !important;
  }

  .op-single-product[data-op-single-product].op-single-product--simple .op-single-product__cart > form.cart > .quantity,
  .op-single-product[data-op-single-product] .op-single-product__cart form.cart .woocommerce-variation-add-to-cart > .quantity {
    flex-basis: 76px !important;
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
  }
}

/*
 * Single-product information and review tabs.
 *
 * These rules deliberately live in the plugin instead of Elementor custom CSS.
 * They are anchored to the OfficePoint component so theme and WooCommerce
 * defaults cannot reintroduce boxed tabs, pink stars or oversized form fields.
 */
.op-single-product[data-op-single-product] .op-single-product__details {
  width: 100%;
  margin-top: 56px;
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid var(--op-grey-200);
  background: var(--op-off-white);
  color: var(--op-grey-700);
  font-family: "Source Sans 3", Arial, sans-serif;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs {
  width: 100%;
  margin: 0 !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs {
  display: flex !important;
  align-items: flex-end !important;
  flex-wrap: wrap !important;
  gap: 26px !important;
  width: 100% !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-bottom: 1px solid var(--op-grey-300) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  list-style: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs::before,
.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs::after {
  display: none !important;
  content: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li {
  position: static !important;
  display: block !important;
  margin: 0 0 -1px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  list-style: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li::before,
.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li::after {
  display: none !important;
  content: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li > a {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 10px 0 12px !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--op-grey-700) !important;
  font: 600 15px/1.2 "IBM Plex Sans", Arial, sans-serif !important;
  text-decoration: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li.active > a,
.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li > a:hover {
  border-bottom-color: var(--op-accent) !important;
  color: var(--op-primary) !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li > a:focus-visible {
  border-bottom-color: var(--op-accent) !important;
  box-shadow: 0 2px 0 var(--op-accent) !important;
  color: var(--op-primary) !important;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel {
  width: 100% !important;
  max-width: 920px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--op-grey-700);
  font-size: 16px;
  line-height: 1.7;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel > :first-child {
  margin-top: 0;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel > :last-child {
  margin-bottom: 0;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel h2 {
  margin: 0 0 18px !important;
  color: var(--op-primary-dark) !important;
  font: 600 clamp(25px, 2.2vw, 32px)/1.2 "IBM Plex Sans", Arial, sans-serif !important;
  letter-spacing: -.025em;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel h3 {
  color: var(--op-primary);
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel ul:not(.commentlist) {
  padding-left: 20px;
}

.op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes th,
.op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes td {
  padding: 12px 14px !important;
  border: 1px solid var(--op-grey-200) !important;
  background: var(--op-white) !important;
  text-align: left;
}

.op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes th {
  width: 34%;
  color: var(--op-primary);
  font-weight: 600;
}

.op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes p {
  margin: 0;
  padding: 0;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews,
.op-single-product[data-op-single-product] .op-single-product__details #review_form_wrapper,
.op-single-product[data-op-single-product] .op-single-product__details #review_form,
.op-single-product[data-op-single-product] .op-single-product__details #respond {
  float: none !important;
  width: 100% !important;
  max-width: 780px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews #comments {
  float: none !important;
  width: 100% !important;
  max-width: 780px;
  margin: 0 0 26px !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews #comments > h2 {
  margin-bottom: 18px !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist li {
  margin: 0 0 18px !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist li .comment_container {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--op-grey-200);
  background: var(--op-white);
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist li img.avatar {
  position: static !important;
  float: none !important;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50%;
}

.op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist li .comment-text {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-reply-title {
  display: block;
  margin: 0 0 8px;
  color: var(--op-primary);
  font: 600 18px/1.35 "IBM Plex Sans", Arial, sans-serif;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form > p {
  min-width: 0;
  margin: 0 !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-notes,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form-rating,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form-comment,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form-cookies-consent,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .form-submit,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .logged-in-as,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .must-log-in {
  grid-column: 1 / -1;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form label {
  display: block;
  margin: 0 0 7px;
  color: var(--op-grey-700);
  font: 500 14px/1.35 "IBM Plex Sans", Arial, sans-serif;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form input[type="text"],
.op-single-product[data-op-single-product] .op-single-product__details #review_form input[type="email"],
.op-single-product[data-op-single-product] .op-single-product__details #review_form textarea {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 11px 12px !important;
  border: 1px solid var(--op-grey-300) !important;
  border-radius: 3px !important;
  outline: 0 !important;
  background: var(--op-white) !important;
  box-shadow: none !important;
  color: var(--op-charcoal) !important;
  font: 400 15px/1.5 "Source Sans 3", Arial, sans-serif !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form textarea {
  min-height: 132px !important;
  resize: vertical;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form input[type="text"]:focus,
.op-single-product[data-op-single-product] .op-single-product__details #review_form input[type="email"]:focus,
.op-single-product[data-op-single-product] .op-single-product__details #review_form textarea:focus {
  border-color: var(--op-primary) !important;
  box-shadow: 0 0 0 3px rgba(19, 37, 58, .1) !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .stars {
  margin: 0 !important;
  line-height: 1;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .stars a,
.op-single-product[data-op-single-product] .op-single-product__details .star-rating,
.op-single-product[data-op-single-product] .op-single-product__details .star-rating span::before {
  color: var(--op-accent) !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .stars a {
  width: 1.3em !important;
  height: 1.3em !important;
  font-size: 23px !important;
  text-decoration: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form-cookies-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form-cookies-consent label {
  margin: 0;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .form-submit input.submit {
  display: inline-flex !important;
  width: auto !important;
  min-width: 112px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 11px 18px !important;
  border: 1px solid var(--op-primary) !important;
  border-radius: 3px !important;
  background: var(--op-primary) !important;
  box-shadow: none !important;
  color: var(--op-white) !important;
  font: 600 14px/1.2 "IBM Plex Sans", Arial, sans-serif !important;
  text-decoration: none !important;
}

.op-single-product[data-op-single-product] .op-single-product__details #review_form .form-submit input.submit:hover,
.op-single-product[data-op-single-product] .op-single-product__details #review_form .form-submit input.submit:focus-visible {
  border-color: var(--op-primary-dark) !important;
  background: var(--op-primary-dark) !important;
}

@media (max-width: 767px) {
  .op-single-product[data-op-single-product] .op-single-product__details {
    margin-top: 40px;
    padding: 20px 16px 24px;
  }

  .op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs {
    flex-wrap: nowrap !important;
    gap: 20px !important;
    margin-bottom: 22px !important;
    overflow-x: auto !important;
    scrollbar-width: none;
  }

  .op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs::-webkit-scrollbar {
    display: none;
  }

  .op-single-product[data-op-single-product] .op-single-product__details .woocommerce-tabs > ul.tabs > li > a {
    min-height: 42px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }

  .op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel {
    font-size: 15px;
  }

  .op-single-product[data-op-single-product] .op-single-product__details .woocommerce-Tabs-panel h2 {
    font-size: 25px !important;
  }

  .op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes th,
  .op-single-product[data-op-single-product] .op-single-product__details table.shop_attributes td {
    display: block;
    width: 100%;
  }

  .op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .op-single-product[data-op-single-product] .op-single-product__details #review_form .comment-form > p {
    grid-column: 1;
  }

  .op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist li .comment_container {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 14px;
  }

  .op-single-product[data-op-single-product] .op-single-product__details #reviews .commentlist li img.avatar {
    width: 42px !important;
    height: 42px !important;
  }
}
