/* WooCommerce hybrid pages — cart/checkout on WordPress */

/* Scrollbar — browser default (override theme green) */
html,
body {
  scrollbar-width: auto;
  scrollbar-color: auto;
}

.site-head-inner,
.f2m-shop #siteHead.site-head-inner {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--body-bg, #0f0f0f);
}
body.light-mode .site-head-inner,
body.light-mode.f2m-shop #siteHead.site-head-inner {
  background: var(--bg-body, #e1e1e1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
body.f2m-shop.light-mode {
  background-color: #ededed !important;
  color: #000000 !important;
  --bg-card: #ffffff;
  --bg-body: #e1e1e1;
  --text-body: #000000;
  --text-muted: #5f6368;
}

/* Hide EZ TOC on shop pages (belt-and-suspenders) */
.f2m-shop #ez-toc-container,
.f2m-shop .ez-toc-title-container,
.f2m-shop .ez-toc-debug {
  display: none !important;
}

.f2m-shop .woocommerce {
  max-width: 100%;
  width: 100%;
  float: none !important;
  clear: both;
}

/* Reset WooCommerce classic float layout — our template uses Bootstrap grid */
/* Cart layout — main column fills all remaining width */
.f2m-shop .f2m-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .f2m-shop .f2m-cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: start;
  }
}
.f2m-shop .f2m-cart-layout__main,
.f2m-shop .f2m-cart-layout__side {
  min-width: 0;
  width: 100%;
}
.f2m-shop .f2m-cart-layout__main > section,
.f2m-shop .f2m-cart-layout__main .table-responsive,
.f2m-shop .f2m-cart-layout__main .cart-form-panel {
  width: 100%;
  max-width: 100%;
}

.f2m-shop .woocommerce-cart-form,
.f2m-shop form.woocommerce-cart-form {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  clear: both;
}
.f2m-shop .cart-collaterals {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  clear: none !important;
}
.f2m-shop .woocommerce-cart-form .row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.f2m-shop .woocommerce-cart-form .row > [class*="col-"] {
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

.f2m-shop .bg-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.f2m-shop #cart-page .cart-page__title {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.f2m-shop .cart-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.f2m-shop .cart-steps__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(150, 242, 7, 0.08);
  color: var(--text-muted, #5f6368);
}
.f2m-shop .cart-steps__item.is-active {
  background: rgba(150, 242, 7, 0.22);
  color: inherit;
}
.f2m-shop .cart-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #96f207;
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 900;
}

.f2m-shop .cart-table {
  width: 100% !important;
  margin: 0;
  border-collapse: collapse;
  table-layout: auto;
}
.f2m-shop .woocommerce table.shop_table.cart-table {
  border: 0;
  border-radius: 0;
  background: transparent;
  width: 100% !important;
}
.f2m-shop .cart-table thead th {
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted, #5f6368);
  border-bottom: 1px solid rgba(150, 242, 7, 0.15);
  background: rgba(150, 242, 7, 0.04);
  white-space: nowrap;
}
.f2m-shop .cart-table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(150, 242, 7, 0.1);
}
.f2m-shop .cart-table tbody tr:last-child td {
  border-bottom: 0;
}
.f2m-shop .cart-table__product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 12rem;
}
.f2m-shop .cart-table__thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 74px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
.f2m-shop .cart-table__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.f2m-shop .cart-table__title {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}
.f2m-shop .cart-table__title a {
  color: inherit;
  text-decoration: none;
}
.f2m-shop .cart-table__title a:hover {
  color: #7bc805;
}
.f2m-shop .cart-table__col-qty {
  width: 6.5rem;
  text-align: center;
}
.f2m-shop .cart-table__col-price,
.f2m-shop .cart-table__col-subtotal {
  width: 8.5rem;
  text-align: end;
  white-space: nowrap;
  font-weight: 700;
}
.f2m-shop .cart-table__col-remove {
  width: 2.5rem;
  text-align: center;
}
.f2m-shop .cart-table__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  color: #e57373;
  text-decoration: none;
}
.f2m-shop .cart-table__remove:hover {
  background: rgba(229, 115, 115, 0.12);
  color: #e57373;
}
.f2m-shop .cart-table .quantity .qty {
  width: 3rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(150, 242, 7, 0.2);
  background: transparent;
  padding: 0.35rem 0.25rem;
}

.f2m-shop .cart-form-panel__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.f2m-shop .cart-coupon__row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.f2m-shop .cart-coupon__input {
  flex: 1 1 auto;
  min-height: 2.75rem;
  border-radius: 10px;
}
.f2m-shop .cart-coupon__btn {
  flex: 0 0 auto;
  min-height: 2.75rem;
  border-radius: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.f2m-shop .cart-form-actions__update {
  font-weight: 800;
  border-radius: 10px;
}

.f2m-shop .cart-collaterals .cart_totals {
  width: 100%;
  float: none;
}
.f2m-shop .cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
}
.f2m-shop .cart-summary__row--total {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(150, 242, 7, 0.2);
  font-size: 1rem;
  font-weight: 900;
}
.f2m-shop .cart-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(150, 242, 7, 0.12);
}
.f2m-shop .cart-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted, #5f6368);
}
.f2m-shop .cart-trust__item svg {
  color: #96f207;
  flex-shrink: 0;
}
.f2m-shop .cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
}
.f2m-shop .cart-empty__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  opacity: 0.35;
}
.f2m-shop .cart-empty__title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.f2m-shop .woocommerce .cart_totals .cart-summary__title,
.f2m-shop .woocommerce .cart_totals h2,
.f2m-shop .woocommerce-checkout h3,
.f2m-shop .woocommerce-checkout .woocommerce-billing-fields > h3,
.f2m-shop .woocommerce-checkout .woocommerce-additional-fields > h3,
.f2m-shop .woocommerce-checkout #order_review_heading {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.f2m-shop .woocommerce .button,
.f2m-shop .woocommerce button.button,
.f2m-shop .woocommerce input.button {
  border-radius: 12px;
  font-weight: 800;
}
.f2m-shop .woocommerce .checkout-button,
.f2m-shop .woocommerce #place_order,
.f2m-shop .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #96f207 0%, #7bc805 100%) !important;
  color: #0a0a0a !important;
  border: 0 !important;
  min-height: 3rem;
  width: 100%;
  font-weight: 900 !important;
  text-decoration: none;
}
.f2m-shop .woocommerce .checkout-button:hover,
.f2m-shop .woocommerce #place_order:hover,
.f2m-shop .wc-proceed-to-checkout a.checkout-button:hover {
  color: #0a0a0a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(150, 242, 7, 0.25);
}
.f2m-shop .woocommerce-message,
.f2m-shop .woocommerce-info,
.f2m-shop .woocommerce-error {
  border-radius: 10px;
  border-top: 0;
  list-style: none;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.f2m-shop .woocommerce-message {
  background: rgba(150, 242, 7, 0.12);
}
.f2m-shop .woocommerce-info {
  background: rgba(13, 110, 253, 0.08);
}
.f2m-shop .woocommerce-error {
  background: rgba(229, 115, 115, 0.1);
}
.f2m-shop .woocommerce form .form-row input.input-text,
.f2m-shop .woocommerce form .form-row textarea,
.f2m-shop .woocommerce form .form-row select {
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.f2m-shop .woocommerce form .form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* Checkout layout */
.f2m-shop .woocommerce-checkout {
  width: 100%;
}
.f2m-shop .woocommerce-checkout .col2-set {
  float: none !important;
  width: 100% !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.f2m-shop .woocommerce-checkout .col-1,
.f2m-shop .woocommerce-checkout .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Field grid — first/last side-by-side, wide fields full width */
.f2m-shop .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.f2m-shop .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.f2m-shop .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}
.f2m-shop .woocommerce-checkout .col2-set .form-row,
.f2m-shop .woocommerce-checkout #order_review .form-row {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 0 1rem !important;
  padding: 0;
}
.f2m-shop .woocommerce-checkout .form-row-first {
  grid-column: 1;
}
.f2m-shop .woocommerce-checkout .form-row-last {
  grid-column: 2;
}
.f2m-shop .woocommerce-checkout .form-row-wide,
.f2m-shop .woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row {
  grid-column: 1 / -1;
}
@media (max-width: 575.98px) {
  .f2m-shop .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .f2m-shop .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .f2m-shop .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
  .f2m-shop .woocommerce-checkout .form-row-first,
  .f2m-shop .woocommerce-checkout .form-row-last {
    grid-column: 1 / -1;
  }
}
.f2m-shop .woocommerce-checkout #order_review_heading,
.f2m-shop .woocommerce-checkout #order_review {
  float: none !important;
  width: 100% !important;
  clear: both;
}
.f2m-shop .woocommerce-checkout #order_review {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.f2m-shop .woocommerce-checkout-review-order-table {
  width: 100%;
  border: 0;
}
.f2m-shop .woocommerce-checkout-review-order-table th,
.f2m-shop .woocommerce-checkout-review-order-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(150, 242, 7, 0.1);
}
.f2m-shop .woocommerce-checkout-review-order-table tr:last-child th,
.f2m-shop .woocommerce-checkout-review-order-table tr:last-child td {
  border-bottom: 0;
  font-weight: 900;
  font-size: 1rem;
  padding-top: 0.85rem;
}
.f2m-shop .woocommerce-checkout .woocommerce-billing-fields,
.f2m-shop .woocommerce-checkout .woocommerce-additional-fields {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.f2m-shop .woocommerce-checkout .woocommerce-privacy-policy-text {
  font-size: 0.82rem;
  color: var(--text-muted, #5f6368);
  margin: 1rem 0;
}
.f2m-shop .woocommerce-checkout #payment {
  border-radius: 12px;
  background: rgba(150, 242, 7, 0.04);
  border: 1px solid rgba(150, 242, 7, 0.15);
  padding: 1rem;
}
.f2m-shop .woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.f2m-shop .woocommerce-checkout #payment ul.payment_methods li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.f2m-shop .woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: 0;
}

.f2m-shop .table-responsive {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 991.98px) {
  .f2m-shop .cart-table thead {
    display: none;
  }
  .f2m-shop .cart-table tbody tr {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(150, 242, 7, 0.1);
  }
  .f2m-shop .cart-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0;
    border: 0;
  }
  .f2m-shop .cart-table tbody td::before {
    content: attr(data-title);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted, #5f6368);
    flex: 0 0 auto;
  }
  .f2m-shop .cart-table tbody td.product-name::before {
    display: none;
  }
  .f2m-shop .cart-table tbody td.product-name {
    display: block;
    padding-bottom: 0.65rem;
  }
  .f2m-shop .cart-coupon__row {
    flex-direction: column;
  }
}

.f2m-shop-foot {
  margin-top: 2rem;
}

/* ——— Header parity with Next.js inner/home routes ——— */
.f2m-shop .site-head-contact {
  gap: 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  white-space: nowrap;
}
.f2m-shop .site-head-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.f2m-shop .site-head-contact__item:hover {
  color: #0a1206;
  background: #96f207;
  border-color: #96f207;
}
body.f2m-shop.light-mode .site-head-contact__item {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: #222;
}
body.f2m-shop.light-mode .site-head-contact__item:hover {
  color: #0a1206;
  background: #96f207;
  border-color: #96f207;
}
.f2m-shop .site-head-contact__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}
.f2m-shop .site-head-contact__label {
  opacity: 0.72;
  font-size: 0.75rem;
}
.f2m-shop .site-head-contact__number {
  font-weight: 700;
  direction: ltr;
  unicode-bidi: embed;
}
.f2m-shop #siteHead .menu {
  gap: 1rem;
  flex-wrap: nowrap;
}
.f2m-shop #siteHead .menu > li > a {
  font-size: 0.76rem;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.f2m-shop #siteHead .menu > li > a:hover {
  color: #96f207;
  background: transparent !important;
}
body.f2m-shop.light-mode #siteHead:not(.position-absolute) .menu,
body.f2m-shop.light-mode #siteHead:not(.position-absolute) .menu a,
body.f2m-shop.light-mode #siteHead:not(.position-absolute) .menu > li > a {
  color: #000 !important;
}
@media (min-width: 1400px) {
  .f2m-shop #siteHead .menu {
    gap: 1.25rem;
  }
  .f2m-shop #siteHead .menu > li > a {
    font-size: 0.8125rem;
  }
}

/* Mobile bottom search sheet */
@media (max-width: 991.98px) {
  .f2m-shop #mobile-search-sheet {
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    position: fixed;
    display: none;
    margin: 0 !important;
    border-radius: var(--border-radius, 12px) var(--border-radius, 12px) 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  }
  .f2m-shop #mobile-search-sheet .search-bar .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 1rem;
    pointer-events: none;
    z-index: 2;
  }
  .f2m-shop #mobile-search-sheet .search-ajax-result {
    margin-top: 1rem;
    max-height: min(52vh, 420px);
    overflow-y: auto;
  }
  .f2m-shop {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Desktop search overlay (also in inner-overrides; scoped here for shop shell) */
@media (min-width: 992px) {
  .f2m-shop .site-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    pointer-events: none;
  }
  .f2m-shop .site-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex !important;
  }
  .f2m-shop .site-search-overlay[hidden]:not(.is-open) {
    display: none !important;
  }
  .f2m-shop .site-search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .f2m-shop .site-search-overlay__panel {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 2rem));
    margin-top: min(12vh, 6rem);
    transform: translateY(-12px);
    transition: transform 0.25s ease;
  }
  .f2m-shop .site-search-overlay.is-open .site-search-overlay__panel {
    transform: translateY(0);
  }
  .f2m-shop .site-search-overlay__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .f2m-shop .site-search-overlay__inner.float-search {
    border-radius: 14px;
    padding: 0.85rem 1rem;
  }
  .f2m-shop .site-search-overlay__close {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
  }
  .f2m-shop .site-search-overlay .search-ajax-result {
    margin-top: 0.75rem;
    max-height: min(52vh, 420px);
    overflow-y: auto;
  }
}

/* ——— My Account (profile.html style) ——— */
.f2m-shop .woocommerce-MyAccount-navigation {
  float: none !important;
  width: 100% !important;
}
.f2m-shop .woocommerce-form-login,
.f2m-shop .woocommerce-form-register {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.f2m-shop .woocommerce-form-login .button,
.f2m-shop .woocommerce-form-register .button {
  width: 100%;
  min-height: 2.75rem;
}
.f2m-shop #dashboard .woocommerce {
  width: 100%;
}
.f2m-shop .f2m-account-layout {
  width: 100%;
  margin: 0;
}
.f2m-shop .whoiam__avatar {
  width: 64px;
  height: 64px;
}
.f2m-shop .dashboard-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.f2m-shop .dashboard-nav li {
  margin-bottom: 0.35rem;
}
.f2m-shop .dashboard-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.f2m-shop .dashboard-nav li a:hover {
  background: rgba(150, 242, 7, 0.1);
  color: inherit;
}
.f2m-shop .dashboard-nav li.is-active a,
.f2m-shop .dashboard-nav li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: rgba(150, 242, 7, 0.2);
}
.f2m-shop .woocommerce-MyAccount-navigation > ul:not(.dashboard-nav) {
  list-style: none;
  margin: 0;
  padding: 0;
}
.f2m-shop .woocommerce-MyAccount-content {
  min-width: 0;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(150, 242, 7, 0.14);
  background-color: var(--bg-card, #ffffff);
  background-image:
    radial-gradient(ellipse 85% 55% at 100% 0%, rgba(150, 242, 7, 0.16), transparent 58%),
    radial-gradient(ellipse 65% 45% at 0% 100%, rgba(150, 242, 7, 0.09), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .f2m-shop .woocommerce-MyAccount-content {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-notices-wrapper:empty {
  display: none;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-table--order-downloads,
.f2m-shop .woocommerce-MyAccount-content .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(150, 242, 7, 0.1);
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table thead th,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-table--order-downloads thead th {
  padding: 0.85rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted, #5f6368);
  background: rgba(150, 242, 7, 0.1);
  border-bottom: 1px solid rgba(150, 242, 7, 0.18);
  white-space: nowrap;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover {
  background: rgba(150, 242, 7, 0.05);
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table th,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table td,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-table--order-downloads th,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-table--order-downloads td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(150, 242, 7, 0.1);
  vertical-align: middle;
  font-size: 0.88rem;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-child td,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-child th {
  border-bottom: 0;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a:hover {
  color: #7bc805;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status {
  font-weight: 700;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
  color: #5a7c00;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status {
  color: #2e7d32;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status {
  color: #c62828;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-button.button.view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(150, 242, 7, 0.35) !important;
  background: rgba(150, 242, 7, 0.12) !important;
  color: inherit !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-button.button.view:hover {
  background: rgba(150, 242, 7, 0.22) !important;
  color: inherit !important;
}
.f2m-shop .f2m-account-card {
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.f2m-shop .f2m-account-card:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.f2m-shop .f2m-account-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.f2m-shop .f2m-account-orders-table th,
.f2m-shop .f2m-account-orders-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(150, 242, 7, 0.1);
  font-size: 0.88rem;
}
.f2m-shop .f2m-account-orders-table th {
  font-weight: 800;
  color: var(--text-muted, #5f6368);
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-address-fields,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(150, 242, 7, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.f2m-shop .woocommerce-MyAccount-content .f2m-account-addresses__intro {
  margin-bottom: 1.25rem;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses.f2m-account-addresses,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses.col2-set.addresses {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both;
  margin: 0;
}
@media (min-width: 992px) {
  .f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses.f2m-account-addresses,
  .f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses.col2-set.addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses .u-column1,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  margin: 0 !important;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  margin-bottom: 0;
  height: 100%;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  line-height: 1.85;
  font-size: 0.92rem;
  margin: 0;
  word-break: break-word;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  font-size: 0.82rem;
  font-weight: 800;
  color: #5a7c00;
  text-decoration: none;
  white-space: nowrap;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover {
  color: #7bc805;
  text-decoration: underline;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
.f2m-shop .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
  width: 100%;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
  width: 100%;
  float: none;
}
@media (min-width: 768px) {
  .f2m-shop .woocommerce-MyAccount-content .woocommerce-address-fields .form-row-first,
  .f2m-shop .woocommerce-MyAccount-content .woocommerce-address-fields .form-row-last {
    width: 48%;
    float: left;
  }
  .f2m-shop .woocommerce-MyAccount-content .woocommerce-address-fields .form-row-wide {
    clear: both;
    width: 100%;
  }
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.f2m-shop .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
}
.f2m-shop .woocommerce-MyAccount-content > p:first-child:not(.f2m-account-addresses__intro) {
  display: none;
}

/* ——— Order received ——— */
.f2m-shop .f2m-order-received {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.f2m-shop .f2m-order-received__body > * + * {
  margin-top: 0;
}
.f2m-shop .f2m-order-received__icon {
  margin-bottom: 1rem;
}
.f2m-shop .f2m-order-received__message {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.8;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
}
.f2m-shop .f2m-order-received__meta {
  line-height: 1.6;
}
.f2m-shop .f2m-order-received__actions {
  justify-content: center;
}
.f2m-shop .f2m-order-details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.f2m-shop .f2m-order-details-table th,
.f2m-shop .f2m-order-details-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(150, 242, 7, 0.1);
  vertical-align: top;
  font-size: 0.9rem;
}
.f2m-shop .f2m-order-details-table thead th {
  font-weight: 800;
  color: var(--text-muted, #5f6368);
  background: rgba(150, 242, 7, 0.04);
  border-bottom: 1px solid rgba(150, 242, 7, 0.15);
}
.f2m-shop .f2m-order-details-table tfoot th {
  font-weight: 700;
  text-align: start;
}
.f2m-shop .f2m-order-details-table tfoot tr:last-child th,
.f2m-shop .f2m-order-details-table tfoot tr:last-child td {
  font-weight: 900;
  font-size: 1rem;
  border-bottom: 0;
  padding-top: 0.85rem;
}
.f2m-shop .f2m-order-address {
  font-style: normal;
  line-height: 1.8;
  font-size: 0.92rem;
}
.f2m-shop .woocommerce-order-details .product-name a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}
.f2m-shop .woocommerce-order-details .product-name a:hover {
  color: #7bc805;
}
.f2m-shop .f2m-order-received__card--failed .woocommerce-notice {
  background: transparent;
  padding: 0;
}

/* ── Prometric sample-request modal ───────────────────────────────── */
.prometric-sample-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.prometric-sample-modal.is-open {
  display: flex;
}
body.prometric-sample-open {
  overflow: hidden;
}
.prometric-sample-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(3px);
}
.prometric-sample-modal__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--bg-card, #161616);
  color: var(--text-body, #f2f2f2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: prometric-sample-in 0.18s ease-out;
}
body.light-mode .prometric-sample-modal__panel {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
@keyframes prometric-sample-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.prometric-sample-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.light-mode .prometric-sample-modal__header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.prometric-sample-modal__title {
  font-size: 1.02rem;
  font-weight: 800;
}
.prometric-sample-modal__close {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.prometric-sample-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
}
body.light-mode .prometric-sample-modal__close {
  background: rgba(0, 0, 0, 0.05);
}
body.light-mode .prometric-sample-modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.prometric-sample-modal__body {
  padding: 1.25rem;
}
.prometric-sample-modal__intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted, #9aa0a6);
}
.prometric-sample-form__field {
  margin-bottom: 1rem;
}
.prometric-sample-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.prometric-sample-form__field .form-control {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
body.light-mode .prometric-sample-form__field .form-control {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
}
.prometric-sample-form__field .form-control:focus {
  outline: none;
  border-color: rgba(150, 242, 7, 0.7);
  box-shadow: 0 0 0 3px rgba(150, 242, 7, 0.16);
}
.prometric-sample-form__field--captcha {
  display: flex;
  justify-content: center;
}
.prometric-sample-form__message {
  min-height: 1.2rem;
  margin-bottom: 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
}
.prometric-sample-form__message.is-error {
  color: #ff6b6b;
}
.prometric-sample-form__message.is-success {
  color: #7bc805;
}
.prometric-sample-form__submit {
  width: 100%;
}
.prometric-sample-form__submit:disabled {
  opacity: 0.65;
  cursor: default;
}

/* ── Product archive grid (same rhythm as category .posts cards) ─── */
.f2m-shop .posts.archive-grid,
.f2m-shop ul.products {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}
@media (min-width: 768px) and (max-width: 992px) {
  .f2m-shop .posts.archive-grid,
  .f2m-shop ul.products {
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .f2m-shop .posts.archive-grid,
  .f2m-shop ul.products {
    gap: 1.25rem;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
.f2m-shop .archive-grid__item,
.f2m-shop ul.products li.product {
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.f2m-shop .archive-grid .entry,
.f2m-shop ul.products .entry {
  height: 100%;
}
.f2m-shop .archive-grid .entry-title,
.f2m-shop ul.products .entry-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.f2m-shop .woocommerce-result-count {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}
.f2m-shop .woocommerce-ordering {
  margin-bottom: 1.25rem;
}

/* Card price — black (not brand green) */
.f2m-shop .entry-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  margin-top: 0.55rem;
  line-height: 1.25;
  text-align: center;
}
.f2m-shop .entry-price__old {
  font-size: 0.78rem;
  color: var(--text-muted, #8a8f98);
  text-decoration: line-through;
  opacity: 0.8;
}
.f2m-shop .entry-price__now,
.f2m-shop .entry-price__now .woocommerce-Price-amount,
.f2m-shop .entry-price__now .amount {
  font-size: 0.98rem;
  font-weight: 800;
  color: #111;
  text-decoration: none;
}
.f2m-shop .entry-price__now .woocommerce-Price-currencySymbol {
  font-size: 0.8em;
  font-weight: 600;
  opacity: 0.85;
  color: inherit;
}
body:not(.light-mode) .f2m-shop .entry-price__now,
body:not(.light-mode) .f2m-shop .entry-price__now .woocommerce-Price-amount,
body:not(.light-mode) .f2m-shop .entry-price__now .amount {
  color: #f2f2f2;
}
.f2m-shop .entry-price__free {
  color: #111;
}
body:not(.light-mode) .f2m-shop .entry-price__free {
  color: #f2f2f2;
}

/* WC pagination — match theme .pagination */
.f2m-shop .woocommerce-pagination {
  margin-top: 2rem;
}
.f2m-shop .woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.f2m-shop .woocommerce-pagination ul.page-numbers li {
  margin: 0;
}
.f2m-shop .woocommerce-pagination .page-numbers {
  display: inline-block;
  min-width: 42px;
  line-height: 42px;
  padding: 0 0.25rem;
  text-align: center;
  border-radius: var(--btn-border-radius, 0.5rem);
  border: 1px solid var(--border-color, #484848);
  color: inherit;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}
.f2m-shop .woocommerce-pagination .page-numbers:hover {
  color: var(--primary-color, #96f207);
  border-color: currentColor;
}
.f2m-shop .woocommerce-pagination .page-numbers.current {
  color: var(--bg-body, #1d1c21);
  border-color: var(--primary-color, #96f207);
  background-color: var(--primary-color, #96f207);
}
body.light-mode .f2m-shop .woocommerce-pagination .page-numbers.current {
  color: #111;
}

/*
 * Card cover overlay reset.
 * stylesheet.css ships a dark gradient ::after (movie-poster design) on
 * .posts .entry .entry-cover that darkens every book cover on home/archive/
 * search/related grids. Neutralize it so covers render clean.
 */
.posts .entry .entry-cover::before,
.posts .entry .entry-cover::after,
.posts .entry:hover .entry-cover::before,
.posts .entry:hover .entry-cover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  background-image: none !important;
  pointer-events: none !important;
}

/*
 * Home hero — center the "مشاهده جزئیات" CTA horizontally.
 * The reference (stylesheet.css / index-overrides.css) pins it to
 * inset-inline-start: 20%; we override to a true horizontal center.
 */
#suggested-movies #cover-suggested-movies .splide__slide .hero-details-btn {
  inset-inline-start: auto !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
}
#suggested-movies #cover-suggested-movies .splide__slide .hero-details-btn:hover {
  transform: translate(-50%, calc(-50% - 2px)) !important;
}

/* Home hero — title: white, right-aligned, RTL. */
#suggested-movies #cover-suggested-movies .splide__slide .content {
  direction: rtl !important;
  text-align: right !important;
  align-items: flex-start !important;
}
#suggested-movies #cover-suggested-movies .splide__slide .content .stretched-link,
#suggested-movies #cover-suggested-movies .splide__slide .content h2 {
  color: #ffffff !important;
}

/*
 * Search results page (search.php) — live AJAX dropdown for the in-page
 * search field (#page-search). Self-contained so it works outside the
 * .f2m-shop shell and the header .float-search styles.
 */
#page-search {
  position: relative;
}
#page-search .icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 0.85rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
#page-search .search-ajax-result {
  display: none;
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.5rem);
  inset-inline: 0;
  max-height: min(60vh, 560px);
  overflow-y: auto;
  padding: 0.5rem 0.85rem;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, rgba(0, 0, 0, 0.1));
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  text-align: right;
}
#page-search .search-ajax-result .listunstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page-search .search-ajax-result li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color, rgba(0, 0, 0, 0.08));
}
#page-search .search-ajax-result li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#page-search .search-ajax-result .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
#page-search .search-ajax-result .item:hover {
  background: rgba(0, 0, 0, 0.05);
}
#page-search .search-ajax-result .cover {
  flex: 0 0 auto;
  width: 48px;
  overflow: hidden;
  border-radius: 8px;
}
#page-search .search-ajax-result .cover img {
  display: block;
  width: 48px;
  height: 64px;
  object-fit: cover;
}
#page-search .search-ajax-result .cover--empty {
  height: 64px;
  background: rgba(0, 0, 0, 0.06);
}

/*
 * WooCommerce zeros #reviews #respond padding/border, which breaks our
 * .section-title-bullet title (absolute on the top edge). Restore theme look.
 */
.woocommerce #reviews #respond.section-title-bullet,
.woocommerce #reviews #respond.comment-respond {
  --block-gap: 1.25rem;
  position: relative;
  margin: 0;
  padding: var(--block-gap);
  padding-top: calc(var(--block-gap) * 2);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.woocommerce #reviews #respond .section-title.comment-reply-title {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0 var(--block-gap);
  inset-inline-start: var(--block-gap);
  transform: translateY(-50%);
  background: var(--bg-body);
  z-index: 1;
}

.woocommerce #reviews #respond #comment,
.woocommerce #reviews #comment {
  height: auto;
  min-height: 9rem;
}

/*
 * Product reviews: WooCommerce sets
 *   .woocommerce #reviews #respond { margin:0; border:0; padding:0 }
 * which collapses .section-title-bullet so the absolute "دیدگاه خود را بنویسید"
 * title sits under/over the form fields. Blog posts lack .woocommerce so they look fine.
 */
.woocommerce #reviews #respond.section-title-bullet {
  --block-gap: 1.25rem;
  position: relative;
  margin: 0;
  padding: var(--block-gap);
  padding-top: calc(var(--block-gap) * 2);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.woocommerce #reviews #comment {
  height: auto;
  min-height: 9rem;
}

/* Product category about boxes (journal / subscription / prometric) */
.product-about {
  position: relative;
  margin: 2rem 0 1.25rem;
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: right;
  background: #f9fff5;
  border: 1px solid #8ed557;
  border-right-width: 4px;
  border-radius: 20px;
  color: #1a1a1a;
}
body:not(.light-mode) .product-about {
  background: rgba(142, 213, 87, 0.1);
  border-color: rgba(142, 213, 87, 0.55);
  color: var(--text-body, #f2f2f2);
}
.product-about__icon {
  position: absolute;
  top: -1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #8ed557;
  color: #16380a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.product-about__body {
  font-size: 0.95rem;
  line-height: 1.85;
}
.product-about__body > p:last-child,
.product-about__body > .product-about__list:last-child {
  margin-bottom: 0;
}
.product-about__em {
  color: #d32f2f;
}
body:not(.light-mode) .product-about__em {
  color: #ff8a80;
}
.product-about__list {
  margin: 0 0 0.75rem;
  padding-right: 1.25rem;
  padding-left: 0;
  list-style: disc;
}
.product-about__list li + li {
  margin-top: 0.35rem;
}
.product-about__contact {
  margin: 0.75rem 0 0;
  font-weight: 700;
}
