@charset "UTF-8";
/* ===========================
Base
=========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Vazirmatn", sans-serif;
}

.st-main {
  flex: 1;
}

@keyframes st-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes st-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes st-scale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.st-fade-in {
  animation: st-fade-in 0.5s ease;
}

.st-slide-up {
  animation: st-slide-up 0.6s ease;
}

.st-scale {
  animation: st-scale 0.4s ease;
}

/* ===========================
Helpers
=========================== */
/* ===========================
Helpers
=========================== */
/* ===========================
Layout
=========================== */
.st-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 15px;
}

.st-grid {
  display: grid;
  gap: 30px;
}

.st-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.st-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.st-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.st-flex {
  display: flex;
}

.st-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.st-mt-0 {
  margin-top: 0 !important;
}

.st-mt-1 {
  margin-top: 10px !important;
}

.st-mt-2 {
  margin-top: 20px !important;
}

.st-mt-3 {
  margin-top: 30px !important;
}

.st-mt-4 {
  margin-top: 40px !important;
}

.st-mt-5 {
  margin-top: 50px !important;
}

.st-mb-0 {
  margin-bottom: 0 !important;
}

.st-mb-1 {
  margin-bottom: 10px !important;
}

.st-mb-2 {
  margin-bottom: 20px !important;
}

.st-mb-3 {
  margin-bottom: 30px !important;
}

.st-mb-4 {
  margin-bottom: 40px !important;
}

.st-mb-5 {
  margin-bottom: 50px !important;
}

.st-pt-0 {
  padding-top: 0 !important;
}

.st-pt-1 {
  padding-top: 10px !important;
}

.st-pt-2 {
  padding-top: 20px !important;
}

.st-pt-3 {
  padding-top: 30px !important;
}

.st-pt-4 {
  padding-top: 40px !important;
}

.st-pt-5 {
  padding-top: 50px !important;
}

.st-pb-0 {
  padding-bottom: 0 !important;
}

.st-pb-1 {
  padding-bottom: 10px !important;
}

.st-pb-2 {
  padding-bottom: 20px !important;
}

.st-pb-3 {
  padding-bottom: 30px !important;
}

.st-pb-4 {
  padding-bottom: 40px !important;
}

.st-pb-5 {
  padding-bottom: 50px !important;
}

.st-header {
  height: 80px;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.st-header .st-container {
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.st-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.st-menu {
  display: flex;
  gap: 35px;
}

.st-menu a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: all 0.3s ease;
}

.st-menu a:hover {
  color: #0fa7a2;
}

.st-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-icon-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #dff8f6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.st-icon-btn:hover {
  background: #0fa7a2;
  color: #fff;
}

.st-login-btn {
  height: 42px;
  padding: 0 18px;
  border-radius: 40px;
  background: #dff8f6;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.st-login-btn:hover {
  background: #0fa7a2;
  color: #fff;
}

/* Navigation lists and responsive drawer. */
.st-logo > a,
.st-logo .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-logo .custom-logo {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.st-menu__list,
.st-menu__list ul,
.st-mobile-menu__list,
.st-mobile-menu__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-menu__list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.st-menu__list li {
  position: relative;
}

.st-menu__list .sub-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 14px);
  right: 0;
  min-width: 210px;
  display: grid;
  gap: 4px;
  visibility: hidden;
  padding: 10px;
  border: 1px solid #e4efed;
  border-radius: 16px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 43, 41, 0.12);
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.st-menu__list li:hover > .sub-menu,
.st-menu__list li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.st-menu__list .sub-menu a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  white-space: nowrap;
}

.st-menu__list .sub-menu a:hover {
  background: #edf9f7;
}

.st-header-actions .st-mobile-menu-trigger {
  display: none !important;
}

.st-mobile-menu {
  position: fixed;
  z-index: 10020;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.st-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  opacity: 0;
  background: rgba(0, 32, 30, 0.48);
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

.st-mobile-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(360px, 100vw - 44px);
  overflow-y: auto;
  padding: 22px;
  background: #fff;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: transform 0.32s ease;
}

.st-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7efee;
}

.st-mobile-menu__header strong {
  color: #002b29;
  font-size: 18px;
}

.st-mobile-menu__header button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: #002b29;
  background: #edf9f7;
  cursor: pointer;
}

.st-mobile-menu__nav {
  padding: 18px 0;
}

.st-mobile-menu__list {
  display: grid;
  gap: 4px;
}

.st-mobile-menu__list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 13px;
  border-radius: 12px;
  color: #314b48;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.st-mobile-menu__list a:hover,
.st-mobile-menu__list .current-menu-item > a {
  color: #002b29;
  background: #edf9f7;
}

.st-mobile-menu__list .sub-menu {
  display: grid;
  gap: 3px;
  padding-right: 14px;
}

.st-mobile-menu__list .sub-menu a {
  min-height: 42px;
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 13px;
}

.st-mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #e7efee;
}

.st-mobile-menu__actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #16b7b1, #087f79);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

body.st-mobile-menu-open {
  overflow: hidden;
}

body.st-mobile-menu-open .st-mobile-menu {
  visibility: visible;
  pointer-events: auto;
}

body.st-mobile-menu-open .st-mobile-menu__backdrop {
  opacity: 1;
}

body.st-mobile-menu-open .st-mobile-menu__panel {
  transform: translateX(0);
}

@media (max-width: 991px) {
  .st-menu__list {
    gap: 18px;
  }
}
@media (max-width: 760px) {
  .st-header-actions .st-mobile-menu-trigger {
    display: grid !important;
    place-items: center;
  }
  .st-logo .custom-logo {
    width: 52px;
    height: 52px;
  }
}
.st-footer {
  position: relative;
  margin-top: 120px;
  padding-top: 1px;
  background: linear-gradient(135deg, #0c8f89, #16b7b1);
}

.st-footer-box {
  width: min(100% - 30px, 1320px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 45px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55), transparent 24%), linear-gradient(100deg, #cdf5d8, #d9f8f5);
  box-shadow: 0 28px 65px rgba(0, 65, 61, 0.14);
  transform: translateY(-70px);
}

.st-footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(6, 105, 101, 0.12);
}

.st-footer-logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 72, 68, 0.12);
  text-decoration: none;
}

.st-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.st-footer-intro {
  min-width: 0;
}

.st-footer-intro > strong {
  display: block;
  margin-bottom: 5px;
  color: #113f3c;
  font-size: 18px;
  font-weight: 900;
}

.st-footer-intro p {
  max-width: 760px;
  margin: 0;
  color: #48615f;
  font-size: 13px;
  line-height: 2;
}

.st-footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.st-footer-contact-chips a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(10, 126, 120, 0.14);
  border-radius: 12px;
  color: #174b48;
  background: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.st-footer-contact-chips a:hover {
  color: #fff;
  border-color: #16b7b1;
  background: #16b7b1;
  transform: translateY(-2px);
}

.st-footer-content {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.st-footer-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.st-footer-col h3 {
  position: relative;
  margin: 0 0 8px;
  padding-bottom: 10px;
  color: #102f2d;
  font-size: 17px;
  font-weight: 900;
}

.st-footer-col h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #16b7b1;
}

.st-footer-col > a,
.st-footer-support-trigger {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border: 0;
  color: #284b49;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.st-footer-col > a > i,
.st-footer-support-trigger > i {
  width: 18px;
  color: #0aa59e;
  font-size: 12px;
  text-align: center;
  transition: transform 0.2s ease;
}

.st-footer-col > a:hover,
.st-footer-support-trigger:hover {
  color: #087f79;
  transform: translateX(-4px);
}

.st-footer-col > a:hover > i,
.st-footer-support-trigger:hover > i {
  transform: scale(1.14);
}

.st-footer-licenses {
  gap: 9px;
}

.st-footer-licenses > a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(10, 126, 120, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.st-footer-licenses > a > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #087f79;
  background: #fff;
  font-size: 18px;
}

.st-footer-licenses > a > strong {
  color: #284b49;
  font-size: 12px;
  font-weight: 900;
}

.st-footer-bottom {
  width: min(100% - 30px, 1320px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -48px auto 0;
  padding: 20px 0 30px;
  color: #fff;
}

.st-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.st-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.st-social a {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.st-social a:hover {
  color: #087f79;
  background: #fff;
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .st-footer-top {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .st-footer-contact-chips {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
  .st-footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .st-footer {
    margin-top: 95px;
  }
  .st-footer-box {
    width: min(100% - 22px, 1320px);
    padding: 25px 20px;
    border-radius: 24px;
    transform: translateY(-52px);
  }
  .st-footer-top {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 27px;
  }
  .st-footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }
  .st-footer-intro > strong {
    font-size: 16px;
  }
  .st-footer-intro p {
    font-size: 11px;
  }
  .st-footer-contact-chips a {
    max-width: 100%;
  }
  .st-footer-contact-chips a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .st-footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .st-footer-bottom {
    align-items: center;
    flex-direction: column;
    margin-top: -32px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .st-footer-content {
    grid-template-columns: 1fr;
  }
  .st-footer-col {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(6, 105, 101, 0.1);
  }
  .st-footer-col:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
/* Align the floating footer card directly with WooCommerce page endings. */
body.single-product .st-footer,
body.woocommerce-cart .st-footer,
body.woocommerce-checkout .st-footer {
  margin-top: 70px;
}

.st-support-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  direction: rtl;
}

.st-support-chat__toggle {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #19c6bd, #087f79);
  box-shadow: 0 16px 36px rgba(0, 88, 83, 0.32);
  font-size: 24px;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.st-support-chat__toggle:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(0, 88, 83, 0.4);
}

.st-support-chat__pulse {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 2px solid rgba(22, 183, 177, 0.42);
  border-radius: 50%;
  animation: st-support-pulse 2.2s infinite;
}

@keyframes st-support-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.82);
  }
  75%, 100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
.st-support-chat__badge {
  position: absolute;
  top: -6px;
  left: -5px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #ef476f;
  font-size: 10px;
  font-weight: 900;
}

.st-support-chat.is-open .st-support-chat__badge,
.st-support-chat.is-open .st-support-chat__pulse {
  display: none;
}

.st-support-chat__panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(370px, 100vw - 32px);
  overflow: hidden;
  border: 1px solid #d7e8e6;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 45, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.st-support-chat.is-open .st-support-chat__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.st-support-chat__header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 11px;
  padding: 17px;
  color: #fff;
  background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.2), transparent 24%), linear-gradient(135deg, #16b7b1, #087f79);
}

.st-support-chat__avatar {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #087f79;
  background: #fff;
  font-size: 19px;
}

.st-support-chat__avatar span {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 13px;
  height: 13px;
  border: 3px solid #087f79;
  border-radius: 50%;
  background: #29dc8b;
}

.st-support-chat__header strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 900;
}

.st-support-chat__header small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}

.st-support-chat__header small span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55e89f;
}

.st-support-chat__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.st-support-chat__close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(5deg);
}

.st-support-chat__body {
  max-height: 315px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 17px;
  background: #f4faf9;
  scrollbar-width: thin;
  scrollbar-color: #b8d8d5 transparent;
}

.st-support-message {
  max-width: 86%;
  display: grid;
  gap: 5px;
  padding: 11px 13px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.9;
  animation: st-support-message-in 0.2s ease;
}

@keyframes st-support-message-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.st-support-message p {
  margin: 0;
  white-space: pre-wrap;
}

.st-support-message time {
  justify-self: end;
  opacity: 0.58;
  font-size: 8px;
}

.st-support-message--agent {
  align-self: flex-start;
  border: 1px solid #dcebe9;
  border-bottom-right-radius: 5px;
  color: #35524f;
  background: #fff;
}

.st-support-message--user {
  align-self: flex-end;
  border-bottom-left-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, #16b7b1, #0b8d87);
}

.st-support-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.st-support-quick-replies button {
  min-height: 31px;
  padding: 5px 10px;
  border: 1px solid #bcdedb;
  border-radius: 999px;
  color: #087f79;
  background: #fff;
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.st-support-quick-replies button:hover {
  color: #fff;
  background: #16b7b1;
}

.st-support-chat__direct-actions {
  display: flex;
  gap: 8px;
  padding: 11px 15px 0;
  background: #fff;
}

.st-support-chat__direct-actions a {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid #d9e9e7;
  border-radius: 11px;
  color: #217a54;
  background: #f3fbf7;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.st-support-chat__direct-actions a:first-child {
  flex: 1;
}

.st-support-chat__direct-actions a:last-child:not(:first-child) {
  width: 42px;
  padding: 0;
}

.st-support-chat__form {
  display: grid;
  gap: 8px;
  padding: 13px 15px 15px;
  border-top: 1px solid #e3eeed;
  background: #fff;
}

.st-support-chat__form > input {
  width: 100%;
  min-height: 39px;
  padding: 8px 12px;
  border: 1px solid #d8e7e5;
  border-radius: 11px;
  outline: none;
  color: #294844;
  background: #f8fcfb;
  font-family: inherit;
  font-size: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-support-chat__form > input:focus,
.st-support-chat__composer textarea:focus {
  border-color: #16b7b1;
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.11);
}

.st-support-chat__composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 43px;
  align-items: end;
  gap: 8px;
}

.st-support-chat__composer textarea {
  width: 100%;
  min-height: 45px;
  max-height: 110px;
  resize: none;
  padding: 11px 12px;
  border: 1px solid #d8e7e5;
  border-radius: 12px;
  outline: none;
  color: #294844;
  background: #f8fcfb;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-support-chat__composer button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #16b7b1, #087f79);
  box-shadow: 0 8px 18px rgba(8, 127, 121, 0.2);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.st-support-chat__composer button:hover {
  transform: translateY(-2px);
}

.st-support-chat__composer button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.st-support-chat__status {
  min-height: 15px;
  margin: 0;
  color: #6d817e;
  font-size: 9px;
  line-height: 1.6;
}

.st-support-chat__status.is-success {
  color: #16895b;
}

.st-support-chat__status.is-error {
  color: #c53c58;
}

@media (max-width: 600px) {
  .st-support-chat {
    right: 14px;
    bottom: 14px;
  }
  .st-support-chat__toggle {
    width: 59px;
    height: 59px;
    font-size: 21px;
  }
  .st-support-chat__panel {
    position: fixed;
    right: 12px;
    bottom: 84px;
    left: 12px;
    width: auto;
    max-height: calc(100dvh - 105px);
    transform-origin: center bottom;
  }
  .st-support-chat__body {
    max-height: min(300px, 38dvh);
  }
}
/* Live-chat state enhancements. */
.st-support-chat__header em {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-style: normal;
}

.st-support-chat:not(.is-operator-online) .st-support-chat__avatar > span,
.st-support-chat:not(.is-operator-online) .st-support-chat__header small > span {
  background: #ffbf5b;
}

.st-support-chat__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  color: #6d817e;
  font-size: 10px;
}

.st-support-chat__loading[hidden],
.st-support-chat__badge[hidden] {
  display: none !important;
}

.st-support-message.is-pending {
  opacity: 0.64;
}

.st-support-message.is-failed {
  outline: 2px solid rgba(213, 58, 86, 0.25);
  opacity: 0.75;
}

.st-support-chat__privacy {
  margin: -2px 0 0;
  color: #9aa8a6;
  font-size: 8px;
  line-height: 1.6;
  text-align: center;
}

.st-floating-support > summary,
.st-floating-support .st-live-chat-toggle,
.st-floating-support .st-chat-toggle,
.st-live-chat > summary,
.st-live-chat .st-live-chat-toggle,
.st-live-chat .st-chat-toggle,
.st-support-chat > summary,
.st-support-chat .st-live-chat-toggle,
.st-support-chat .st-chat-toggle {
  position: relative;
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #19bbb2, #07837c);
  box-shadow: 0 14px 35px rgba(8, 131, 124, 0.3);
  cursor: pointer;
}
.st-floating-support > summary > i,
.st-floating-support > summary .st-chat-toggle-icon,
.st-floating-support .st-live-chat-toggle > i,
.st-floating-support .st-live-chat-toggle .st-chat-toggle-icon,
.st-floating-support .st-chat-toggle > i,
.st-floating-support .st-chat-toggle .st-chat-toggle-icon,
.st-live-chat > summary > i,
.st-live-chat > summary .st-chat-toggle-icon,
.st-live-chat .st-live-chat-toggle > i,
.st-live-chat .st-live-chat-toggle .st-chat-toggle-icon,
.st-live-chat .st-chat-toggle > i,
.st-live-chat .st-chat-toggle .st-chat-toggle-icon,
.st-support-chat > summary > i,
.st-support-chat > summary .st-chat-toggle-icon,
.st-support-chat .st-live-chat-toggle > i,
.st-support-chat .st-live-chat-toggle .st-chat-toggle-icon,
.st-support-chat .st-chat-toggle > i,
.st-support-chat .st-chat-toggle .st-chat-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
.st-floating-support > summary > i::before, .st-floating-support > summary > i::after,
.st-floating-support > summary .st-chat-toggle-icon::before,
.st-floating-support > summary .st-chat-toggle-icon::after,
.st-floating-support .st-live-chat-toggle > i::before,
.st-floating-support .st-live-chat-toggle > i::after,
.st-floating-support .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support .st-chat-toggle > i::before,
.st-floating-support .st-chat-toggle > i::after,
.st-floating-support .st-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat > summary > i::before,
.st-live-chat > summary > i::after,
.st-live-chat > summary .st-chat-toggle-icon::before,
.st-live-chat > summary .st-chat-toggle-icon::after,
.st-live-chat .st-live-chat-toggle > i::before,
.st-live-chat .st-live-chat-toggle > i::after,
.st-live-chat .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat .st-chat-toggle > i::before,
.st-live-chat .st-chat-toggle > i::after,
.st-live-chat .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat > summary > i::before,
.st-support-chat > summary > i::after,
.st-support-chat > summary .st-chat-toggle-icon::before,
.st-support-chat > summary .st-chat-toggle-icon::after,
.st-support-chat .st-live-chat-toggle > i::before,
.st-support-chat .st-live-chat-toggle > i::after,
.st-support-chat .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat .st-chat-toggle > i::before,
.st-support-chat .st-chat-toggle > i::after,
.st-support-chat .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat .st-chat-toggle .st-chat-toggle-icon::after {
  transition: transform 0.2s ease;
}
.st-floating-support[open] > summary,
.st-floating-support[open] .st-live-chat-toggle,
.st-floating-support[open] .st-chat-toggle, .st-floating-support.is-open > summary,
.st-floating-support.is-open .st-live-chat-toggle,
.st-floating-support.is-open .st-chat-toggle, .st-floating-support.active > summary,
.st-floating-support.active .st-live-chat-toggle,
.st-floating-support.active .st-chat-toggle,
.st-live-chat[open] > summary,
.st-live-chat[open] .st-live-chat-toggle,
.st-live-chat[open] .st-chat-toggle,
.st-live-chat.is-open > summary,
.st-live-chat.is-open .st-live-chat-toggle,
.st-live-chat.is-open .st-chat-toggle,
.st-live-chat.active > summary,
.st-live-chat.active .st-live-chat-toggle,
.st-live-chat.active .st-chat-toggle,
.st-support-chat[open] > summary,
.st-support-chat[open] .st-live-chat-toggle,
.st-support-chat[open] .st-chat-toggle,
.st-support-chat.is-open > summary,
.st-support-chat.is-open .st-live-chat-toggle,
.st-support-chat.is-open .st-chat-toggle,
.st-support-chat.active > summary,
.st-support-chat.active .st-live-chat-toggle,
.st-support-chat.active .st-chat-toggle {
  width: 66px !important;
  height: 66px !important;
  border-radius: 50% !important;
}
.st-floating-support[open] > summary > i,
.st-floating-support[open] > summary .st-chat-toggle-icon,
.st-floating-support[open] .st-live-chat-toggle > i,
.st-floating-support[open] .st-live-chat-toggle .st-chat-toggle-icon,
.st-floating-support[open] .st-chat-toggle > i,
.st-floating-support[open] .st-chat-toggle .st-chat-toggle-icon, .st-floating-support.is-open > summary > i,
.st-floating-support.is-open > summary .st-chat-toggle-icon,
.st-floating-support.is-open .st-live-chat-toggle > i,
.st-floating-support.is-open .st-live-chat-toggle .st-chat-toggle-icon,
.st-floating-support.is-open .st-chat-toggle > i,
.st-floating-support.is-open .st-chat-toggle .st-chat-toggle-icon, .st-floating-support.active > summary > i,
.st-floating-support.active > summary .st-chat-toggle-icon,
.st-floating-support.active .st-live-chat-toggle > i,
.st-floating-support.active .st-live-chat-toggle .st-chat-toggle-icon,
.st-floating-support.active .st-chat-toggle > i,
.st-floating-support.active .st-chat-toggle .st-chat-toggle-icon,
.st-live-chat[open] > summary > i,
.st-live-chat[open] > summary .st-chat-toggle-icon,
.st-live-chat[open] .st-live-chat-toggle > i,
.st-live-chat[open] .st-live-chat-toggle .st-chat-toggle-icon,
.st-live-chat[open] .st-chat-toggle > i,
.st-live-chat[open] .st-chat-toggle .st-chat-toggle-icon,
.st-live-chat.is-open > summary > i,
.st-live-chat.is-open > summary .st-chat-toggle-icon,
.st-live-chat.is-open .st-live-chat-toggle > i,
.st-live-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon,
.st-live-chat.is-open .st-chat-toggle > i,
.st-live-chat.is-open .st-chat-toggle .st-chat-toggle-icon,
.st-live-chat.active > summary > i,
.st-live-chat.active > summary .st-chat-toggle-icon,
.st-live-chat.active .st-live-chat-toggle > i,
.st-live-chat.active .st-live-chat-toggle .st-chat-toggle-icon,
.st-live-chat.active .st-chat-toggle > i,
.st-live-chat.active .st-chat-toggle .st-chat-toggle-icon,
.st-support-chat[open] > summary > i,
.st-support-chat[open] > summary .st-chat-toggle-icon,
.st-support-chat[open] .st-live-chat-toggle > i,
.st-support-chat[open] .st-live-chat-toggle .st-chat-toggle-icon,
.st-support-chat[open] .st-chat-toggle > i,
.st-support-chat[open] .st-chat-toggle .st-chat-toggle-icon,
.st-support-chat.is-open > summary > i,
.st-support-chat.is-open > summary .st-chat-toggle-icon,
.st-support-chat.is-open .st-live-chat-toggle > i,
.st-support-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon,
.st-support-chat.is-open .st-chat-toggle > i,
.st-support-chat.is-open .st-chat-toggle .st-chat-toggle-icon,
.st-support-chat.active > summary > i,
.st-support-chat.active > summary .st-chat-toggle-icon,
.st-support-chat.active .st-live-chat-toggle > i,
.st-support-chat.active .st-live-chat-toggle .st-chat-toggle-icon,
.st-support-chat.active .st-chat-toggle > i,
.st-support-chat.active .st-chat-toggle .st-chat-toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  font-size: 0;
}
.st-floating-support[open] > summary > i::before, .st-floating-support[open] > summary > i::after,
.st-floating-support[open] > summary .st-chat-toggle-icon::before,
.st-floating-support[open] > summary .st-chat-toggle-icon::after,
.st-floating-support[open] .st-live-chat-toggle > i::before,
.st-floating-support[open] .st-live-chat-toggle > i::after,
.st-floating-support[open] .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support[open] .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support[open] .st-chat-toggle > i::before,
.st-floating-support[open] .st-chat-toggle > i::after,
.st-floating-support[open] .st-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support[open] .st-chat-toggle .st-chat-toggle-icon::after, .st-floating-support.is-open > summary > i::before, .st-floating-support.is-open > summary > i::after,
.st-floating-support.is-open > summary .st-chat-toggle-icon::before,
.st-floating-support.is-open > summary .st-chat-toggle-icon::after,
.st-floating-support.is-open .st-live-chat-toggle > i::before,
.st-floating-support.is-open .st-live-chat-toggle > i::after,
.st-floating-support.is-open .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support.is-open .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support.is-open .st-chat-toggle > i::before,
.st-floating-support.is-open .st-chat-toggle > i::after,
.st-floating-support.is-open .st-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support.is-open .st-chat-toggle .st-chat-toggle-icon::after, .st-floating-support.active > summary > i::before, .st-floating-support.active > summary > i::after,
.st-floating-support.active > summary .st-chat-toggle-icon::before,
.st-floating-support.active > summary .st-chat-toggle-icon::after,
.st-floating-support.active .st-live-chat-toggle > i::before,
.st-floating-support.active .st-live-chat-toggle > i::after,
.st-floating-support.active .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support.active .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support.active .st-chat-toggle > i::before,
.st-floating-support.active .st-chat-toggle > i::after,
.st-floating-support.active .st-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support.active .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat[open] > summary > i::before,
.st-live-chat[open] > summary > i::after,
.st-live-chat[open] > summary .st-chat-toggle-icon::before,
.st-live-chat[open] > summary .st-chat-toggle-icon::after,
.st-live-chat[open] .st-live-chat-toggle > i::before,
.st-live-chat[open] .st-live-chat-toggle > i::after,
.st-live-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat[open] .st-chat-toggle > i::before,
.st-live-chat[open] .st-chat-toggle > i::after,
.st-live-chat[open] .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat[open] .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.is-open > summary > i::before,
.st-live-chat.is-open > summary > i::after,
.st-live-chat.is-open > summary .st-chat-toggle-icon::before,
.st-live-chat.is-open > summary .st-chat-toggle-icon::after,
.st-live-chat.is-open .st-live-chat-toggle > i::before,
.st-live-chat.is-open .st-live-chat-toggle > i::after,
.st-live-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.is-open .st-chat-toggle > i::before,
.st-live-chat.is-open .st-chat-toggle > i::after,
.st-live-chat.is-open .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.is-open .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.active > summary > i::before,
.st-live-chat.active > summary > i::after,
.st-live-chat.active > summary .st-chat-toggle-icon::before,
.st-live-chat.active > summary .st-chat-toggle-icon::after,
.st-live-chat.active .st-live-chat-toggle > i::before,
.st-live-chat.active .st-live-chat-toggle > i::after,
.st-live-chat.active .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.active .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.active .st-chat-toggle > i::before,
.st-live-chat.active .st-chat-toggle > i::after,
.st-live-chat.active .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.active .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat[open] > summary > i::before,
.st-support-chat[open] > summary > i::after,
.st-support-chat[open] > summary .st-chat-toggle-icon::before,
.st-support-chat[open] > summary .st-chat-toggle-icon::after,
.st-support-chat[open] .st-live-chat-toggle > i::before,
.st-support-chat[open] .st-live-chat-toggle > i::after,
.st-support-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat[open] .st-chat-toggle > i::before,
.st-support-chat[open] .st-chat-toggle > i::after,
.st-support-chat[open] .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat[open] .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.is-open > summary > i::before,
.st-support-chat.is-open > summary > i::after,
.st-support-chat.is-open > summary .st-chat-toggle-icon::before,
.st-support-chat.is-open > summary .st-chat-toggle-icon::after,
.st-support-chat.is-open .st-live-chat-toggle > i::before,
.st-support-chat.is-open .st-live-chat-toggle > i::after,
.st-support-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.is-open .st-chat-toggle > i::before,
.st-support-chat.is-open .st-chat-toggle > i::after,
.st-support-chat.is-open .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.is-open .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.active > summary > i::before,
.st-support-chat.active > summary > i::after,
.st-support-chat.active > summary .st-chat-toggle-icon::before,
.st-support-chat.active > summary .st-chat-toggle-icon::after,
.st-support-chat.active .st-live-chat-toggle > i::before,
.st-support-chat.active .st-live-chat-toggle > i::after,
.st-support-chat.active .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.active .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.active .st-chat-toggle > i::before,
.st-support-chat.active .st-chat-toggle > i::after,
.st-support-chat.active .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.active .st-chat-toggle .st-chat-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 3px;
  display: block;
  background: #fff;
  border-radius: 999px;
}
.st-floating-support[open] > summary > i::before,
.st-floating-support[open] > summary .st-chat-toggle-icon::before,
.st-floating-support[open] .st-live-chat-toggle > i::before,
.st-floating-support[open] .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support[open] .st-chat-toggle > i::before,
.st-floating-support[open] .st-chat-toggle .st-chat-toggle-icon::before, .st-floating-support.is-open > summary > i::before,
.st-floating-support.is-open > summary .st-chat-toggle-icon::before,
.st-floating-support.is-open .st-live-chat-toggle > i::before,
.st-floating-support.is-open .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support.is-open .st-chat-toggle > i::before,
.st-floating-support.is-open .st-chat-toggle .st-chat-toggle-icon::before, .st-floating-support.active > summary > i::before,
.st-floating-support.active > summary .st-chat-toggle-icon::before,
.st-floating-support.active .st-live-chat-toggle > i::before,
.st-floating-support.active .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-floating-support.active .st-chat-toggle > i::before,
.st-floating-support.active .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat[open] > summary > i::before,
.st-live-chat[open] > summary .st-chat-toggle-icon::before,
.st-live-chat[open] .st-live-chat-toggle > i::before,
.st-live-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat[open] .st-chat-toggle > i::before,
.st-live-chat[open] .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.is-open > summary > i::before,
.st-live-chat.is-open > summary .st-chat-toggle-icon::before,
.st-live-chat.is-open .st-live-chat-toggle > i::before,
.st-live-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.is-open .st-chat-toggle > i::before,
.st-live-chat.is-open .st-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.active > summary > i::before,
.st-live-chat.active > summary .st-chat-toggle-icon::before,
.st-live-chat.active .st-live-chat-toggle > i::before,
.st-live-chat.active .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-live-chat.active .st-chat-toggle > i::before,
.st-live-chat.active .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat[open] > summary > i::before,
.st-support-chat[open] > summary .st-chat-toggle-icon::before,
.st-support-chat[open] .st-live-chat-toggle > i::before,
.st-support-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat[open] .st-chat-toggle > i::before,
.st-support-chat[open] .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.is-open > summary > i::before,
.st-support-chat.is-open > summary .st-chat-toggle-icon::before,
.st-support-chat.is-open .st-live-chat-toggle > i::before,
.st-support-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.is-open .st-chat-toggle > i::before,
.st-support-chat.is-open .st-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.active > summary > i::before,
.st-support-chat.active > summary .st-chat-toggle-icon::before,
.st-support-chat.active .st-live-chat-toggle > i::before,
.st-support-chat.active .st-live-chat-toggle .st-chat-toggle-icon::before,
.st-support-chat.active .st-chat-toggle > i::before,
.st-support-chat.active .st-chat-toggle .st-chat-toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.st-floating-support[open] > summary > i::after,
.st-floating-support[open] > summary .st-chat-toggle-icon::after,
.st-floating-support[open] .st-live-chat-toggle > i::after,
.st-floating-support[open] .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support[open] .st-chat-toggle > i::after,
.st-floating-support[open] .st-chat-toggle .st-chat-toggle-icon::after, .st-floating-support.is-open > summary > i::after,
.st-floating-support.is-open > summary .st-chat-toggle-icon::after,
.st-floating-support.is-open .st-live-chat-toggle > i::after,
.st-floating-support.is-open .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support.is-open .st-chat-toggle > i::after,
.st-floating-support.is-open .st-chat-toggle .st-chat-toggle-icon::after, .st-floating-support.active > summary > i::after,
.st-floating-support.active > summary .st-chat-toggle-icon::after,
.st-floating-support.active .st-live-chat-toggle > i::after,
.st-floating-support.active .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-floating-support.active .st-chat-toggle > i::after,
.st-floating-support.active .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat[open] > summary > i::after,
.st-live-chat[open] > summary .st-chat-toggle-icon::after,
.st-live-chat[open] .st-live-chat-toggle > i::after,
.st-live-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat[open] .st-chat-toggle > i::after,
.st-live-chat[open] .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.is-open > summary > i::after,
.st-live-chat.is-open > summary .st-chat-toggle-icon::after,
.st-live-chat.is-open .st-live-chat-toggle > i::after,
.st-live-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.is-open .st-chat-toggle > i::after,
.st-live-chat.is-open .st-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.active > summary > i::after,
.st-live-chat.active > summary .st-chat-toggle-icon::after,
.st-live-chat.active .st-live-chat-toggle > i::after,
.st-live-chat.active .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-live-chat.active .st-chat-toggle > i::after,
.st-live-chat.active .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat[open] > summary > i::after,
.st-support-chat[open] > summary .st-chat-toggle-icon::after,
.st-support-chat[open] .st-live-chat-toggle > i::after,
.st-support-chat[open] .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat[open] .st-chat-toggle > i::after,
.st-support-chat[open] .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.is-open > summary > i::after,
.st-support-chat.is-open > summary .st-chat-toggle-icon::after,
.st-support-chat.is-open .st-live-chat-toggle > i::after,
.st-support-chat.is-open .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.is-open .st-chat-toggle > i::after,
.st-support-chat.is-open .st-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.active > summary > i::after,
.st-support-chat.active > summary .st-chat-toggle-icon::after,
.st-support-chat.active .st-live-chat-toggle > i::after,
.st-support-chat.active .st-live-chat-toggle .st-chat-toggle-icon::after,
.st-support-chat.active .st-chat-toggle > i::after,
.st-support-chat.active .st-chat-toggle .st-chat-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===========================
Components
=========================== */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: #16b7b1;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.st-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: #16b7b1;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  border: solid 1px 1px 2px 1px #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.st-btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
}

.st-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: #d7f8f5;
  color: #000000;
  border-radius: 25px;
  text-decoration: none;
  border: solid 1px 1px 2px 1px #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.st-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  background: #d7f8f5;
  color: #16b7b1;
  font-size: 13px;
}

.st-badge-success {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  background: #1eff00;
  color: #16b7b1;
  font-size: 13px;
}

.st-badge-danger {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  background: #ff0000;
  color: #16b7b1;
  font-size: 13px;
}

.st-badge-warning {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  background: #ffd000;
  color: #16b7b1;
  font-size: 13px;
}

.st-card {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.st-card:hover {
  transform: translateY(-5px);
}

.st-input {
  width: 100%;
  height: 55px;
  border: 1px solid #efefef;
  border-radius: 25px;
  padding: 0 20px;
  outline: none;
  transition: all 0.3s ease;
}

.st-input:focus {
  border-color: #16b7b1;
}

.st-textarea {
  width: 100%;
  min-height: 170px;
  resize: vertical;
  border: 1px solid #efefef;
  border-radius: 25px;
  padding: 18px;
  outline: none;
  font-family: "Vazirmatn", sans-serif;
  transition: 0.3s;
}

.st-textarea:focus {
  border-color: #16b7b1;
}

.st-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #16b7b1;
}

.st-select {
  width: 100%;
  height: 55px;
  padding: 0 18px;
  border: 1px solid #efefef;
  border-radius: 25px;
  background: #fff;
  color: #141414;
  font-family: "Vazirmatn", sans-serif;
  font-size: 15px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 7 9 10 12 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 18px center;
  background-size: 18px;
  padding-left: 50px;
}

.st-select:focus {
  border-color: #16b7b1;
  box-shadow: 0 0 0 4px rgba(22, 183, 177, 0.12);
}

.st-select:disabled {
  background: #f5f5f5;
  color: rgba(63, 63, 63, 0.8156862745);
  cursor: not-allowed;
}

.st-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #141414;
  font-size: 15px;
}

.st-radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #efefef;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.st-radio input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16b7b1;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
}

.st-radio input[type=radio]:checked {
  border-color: #16b7b1;
}

.st-radio input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.st-radio input[type=radio]:focus {
  box-shadow: 0 0 0 4px rgba(22, 183, 177, 0.12);
}

.st-radio input[type=radio]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.st-radio:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.6;
}

.st-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  color: #141414;
  font-size: 15px;
}

.st-switch input {
  display: none;
}

.st-switch__slider {
  position: relative;
  width: 52px;
  height: 28px;
  background: #efefef;
  border-radius: 999px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.st-switch__slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.st-switch input:checked + .st-switch__slider {
  background: #16b7b1;
}

.st-switch input:checked + .st-switch__slider::before {
  left: 27px;
}

.st-switch input:disabled + .st-switch__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.st-switch input:focus + .st-switch__slider {
  box-shadow: 0 0 0 4px rgba(22, 183, 177, 0.12);
}

.st-icon-box {
  text-align: center;
  padding: 35px;
  border-radius: 25px;
  background: #fff;
}

.st-icon-box i {
  font-size: 42px;
  color: #16b7b1;
  margin-bottom: 20px;
}

.st-social {
  display: flex;
  gap: 15px;
}

.st-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #16b7b1;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.st-social a:hover {
  transform: translateY(-4px);
}

.st-section-title {
  text-align: center;
  margin-bottom: 25px;
}

.st-section-subtitle {
  color: #16b7b1;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.st-section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.st-section-title p {
  max-width: 700px;
  margin: auto;
  line-height: 2;
  color: #141414;
}

.st-section-description {
  color: rgba(63, 63, 63, 0.8156862745);
}

.st-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.st-team-card {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.st-team-card:hover {
  transform: translateY(-8px);
}

.st-team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.st-team-card h3 {
  margin-bottom: 8px;
}

.st-team-card span {
  color: #16b7b1;
}

.st-category-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.st-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-category-icon {
  font-size: 45px;
  color: #16b7b1;
  margin-bottom: 20px;
}

.st-article-card {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-article-image img {
  width: 100%;
  display: block;
}

.st-article-body {
  padding: 20px;
}

.st-article-date {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 13px;
  margin-bottom: 10px;
}

.st-alert {
  padding: 18px 22px;
  border-radius: 25px;
  color: #fff;
  margin-bottom: 20px;
}

.st-alert-success {
  background: #00b652;
}

.st-alert-warning {
  background: #fae100;
}

.st-alert-danger {
  background: #b40000;
}

.st-alert-info {
  background: #d36804;
}

/* WooCommerce messages are copied into this fixed, non-blocking toast stack. */
.st-notice-source {
  display: none !important;
}

.st-woocommerce-toasts {
  position: fixed;
  z-index: 10050;
  top: 94px;
  right: 18px;
  left: auto;
  width: min(420px, 100% - 36px);
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.admin-bar .st-woocommerce-toasts {
  top: 126px;
}

.st-woocommerce-toast {
  position: relative;
  width: 100%;
  min-height: 70px;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas: "icon message" ". action";
  align-items: center;
  column-gap: 11px;
  row-gap: 8px;
  margin: 0 !important;
  padding: 13px 14px 13px 44px !important;
  border: 1px solid #dceae8 !important;
  border-right: 4px solid #16b7b1 !important;
  border-radius: 16px !important;
  color: #173231 !important;
  background: rgba(255, 255, 255, 0.985) !important;
  box-shadow: 0 16px 42px rgba(0, 65, 61, 0.16) !important;
  direction: rtl;
  font-family: inherit !important;
  pointer-events: auto;
  animation: st-toast-in 0.28s ease both;
}

.st-woocommerce-toast::before {
  content: "\f00c" !important;
  grid-area: icon;
  position: static !important;
  width: 32px;
  height: 32px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  border-radius: 10px;
  color: #fff !important;
  background: #16b7b1 !important;
  font-family: "Font Awesome 6 Free" !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.st-woocommerce-toast.is-error {
  border-right-color: #df5468 !important;
}

.st-woocommerce-toast.is-error::before {
  content: "\f071" !important;
  background: #df5468 !important;
}

.st-woocommerce-toast.is-info {
  border-right-color: #d99a13 !important;
}

.st-woocommerce-toast.is-info::before {
  content: "\f129" !important;
  background: #d99a13 !important;
}

.st-woocommerce-toast__message {
  grid-area: message;
  min-width: 0;
  color: #294441;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.st-woocommerce-toast .st-woocommerce-toast__action,
.st-woocommerce-toast .button,
.st-woocommerce-toast a.button {
  grid-area: action;
  justify-self: start;
  width: auto !important;
  max-width: 100%;
  min-width: 0 !important;
  min-height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 5px 12px !important;
  border: 0 !important;
  border-radius: 9px !important;
  color: #fff !important;
  background: #087f79 !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  line-height: 1.6 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.st-woocommerce-toast .st-woocommerce-toast__action:hover,
.st-woocommerce-toast .button:hover,
.st-woocommerce-toast a.button:hover {
  color: #fff !important;
  background: #002b29 !important;
  transform: none !important;
}

.st-woocommerce-toast__close {
  position: absolute;
  top: 10px;
  right: auto;
  left: 10px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #718381;
  background: #f0f7f6;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.st-woocommerce-toast__close:hover {
  color: #304744;
  background: #e4efed;
}

.st-woocommerce-toast.is-leaving {
  animation: st-toast-out 0.26s ease both;
}

@keyframes st-toast-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes st-toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(18px);
  }
}
@media (max-width: 782px) {
  .admin-bar .st-woocommerce-toasts {
    top: 134px;
  }
}
@media (max-width: 600px) {
  .st-woocommerce-toasts {
    top: 88px;
    right: 10px;
    left: auto;
    width: calc(100% - 20px);
    gap: 8px;
  }
  .admin-bar .st-woocommerce-toasts {
    top: 134px;
  }
  .st-woocommerce-toast {
    min-height: 64px;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 9px;
    padding: 11px 12px 11px 40px !important;
    border-radius: 14px !important;
  }
  .st-woocommerce-toast::before {
    width: 29px;
    height: 29px;
    border-radius: 9px;
    font-size: 12px !important;
  }
  .st-woocommerce-toast__message {
    padding-left: 2px;
    font-size: 11px;
    line-height: 1.8;
  }
  .st-woocommerce-toast .st-woocommerce-toast__action,
  .st-woocommerce-toast .button,
  .st-woocommerce-toast a.button {
    min-height: 30px;
    padding: 4px 10px !important;
    font-size: 9.5px !important;
  }
  .st-woocommerce-toast__close {
    top: 8px;
    left: 8px;
    width: 23px;
    height: 23px;
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .st-woocommerce-toast,
  .st-woocommerce-toast.is-leaving {
    animation: none;
  }
}
.st-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.st-modal.active {
  display: flex;
}

.st-modal__box {
  width: 500px;
  max-width: 95%;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
}

.st-loading {
  width: 45px;
  height: 45px;
  border: 4px solid #efefef;
  border-top-color: #16b7b1;
  border-radius: 50%;
  animation: st-loading 0.8s linear infinite;
}

@keyframes st-loading {
  to {
    transform: rotate(360deg);
  }
}
.st-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 40px;
}

.st-breadcrumb a {
  color: rgba(63, 63, 63, 0.8156862745);
  text-decoration: none;
}

.st-breadcrumb span {
  color: #16b7b1;
}

.st-counter {
  text-align: center;
}

.st-counter__number {
  font-size: 42px;
  font-weight: 700;
  color: #16b7b1;
  margin-bottom: 10px;
}

.st-counter__title {
  color: rgba(63, 63, 63, 0.8156862745);
}

.st-accordion {
  border: 1px solid #efefef;
  border-radius: 25px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-accordion__item {
  border-bottom: 1px solid #efefef;
  transition: background 0.3s ease;
}

.st-accordion__item:last-child {
  border-bottom: none;
}

.st-accordion__header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #141414;
  transition: all 0.3s ease;
}

.st-accordion__header:hover {
  background: rgba(22, 183, 177, 0.05);
}

.st-accordion__header i {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #d7f8f5;
  color: #16b7b1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.st-accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.st-accordion__item.active {
  background: rgba(22, 183, 177, 0.03);
}

.st-accordion__item.active .st-accordion__content {
  display: block;
}

.st-accordion__item.active .st-accordion__header i {
  transform: rotate(45deg);
  background: #16b7b1;
  color: #fff;
}

.st-slider {
  overflow: hidden;
}

.st-slider__track {
  display: flex;
}

/* ===========================
Pages
=========================== */
/* =====================================================
   Hero
===================================================== */
.st-hero {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
}

/* Background */
.st-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(22, 183, 177, 0.12), transparent 35%), radial-gradient(circle at bottom right, rgba(143, 211, 199, 0.18), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
  z-index: -2;
}

.st-hero::after {
  content: "";
  position: absolute;
  left: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(22, 183, 177, 0.08);
  filter: blur(90px);
  z-index: -1;
}

/* =====================================================
   Slider
===================================================== */
.st-hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
}

.st-hero-slider .swiper-slide {
  padding: 20px 0;
}

/* =====================================================
   Wrapper
===================================================== */
.st-hero__wrapper {
  display: grid;
  grid-template-columns: 800px 1fr;
  align-items: center;
  gap: 80px;
  min-height: 700px;
}

/* =====================================================
   Left
===================================================== */
.st-hero__content {
  position: relative;
  z-index: 5;
}

/* =====================================================
   Right
===================================================== */
.st-hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px;
}

/* =====================================================
   Decorative Shapes
===================================================== */
.st-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.st-hero__shape.shape-1 {
  width: 520px;
  height: 520px;
  background: rgba(22, 183, 177, 0.1);
  filter: blur(10px);
}

.st-hero__shape.shape-2 {
  width: 360px;
  height: 360px;
  border: 2px dashed rgba(22, 183, 177, 0.18);
  animation: cdRotate 25s linear infinite;
}

.st-hero__shape.shape-3 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   Product Image
===================================================== */
.st-hero__image img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  animation: cdHeroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.12));
}

/* =====================================================
   Floating Animation
===================================================== */
@keyframes cdHeroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
/* =====================================================
   Rotate Animation
===================================================== */
@keyframes cdRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* =====================================================
   Hero Content
===================================================== */
.st-hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(22, 183, 177, 0.08);
  color: #16b7b1;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 25px;
}

.st-hero__subtitle i {
  font-size: 14px;
}

/* =====================================================
   Title
===================================================== */
.st-hero__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.25;
  color: #141414;
  margin-bottom: 30px;
  letter-spacing: -1px;
  max-width: 600px;
}

.st-hero__title span {
  color: #16b7b1;
}

/* =====================================================
   Description
===================================================== */
.st-hero__text {
  max-width: 560px;
  font-size: 18px;
  line-height: 2.2;
  color: rgba(63, 63, 63, 0.8156862745);
  margin-bottom: 45px;
}

/* =====================================================
   Buttons
===================================================== */
.st-hero__buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 60px;
}

.st-hero__buttons .st-btn {
  min-width: 190px;
  justify-content: center;
  height: 58px;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 18px 35px rgba(22, 183, 177, 0.22);
}

.st-hero__buttons .st-btn:hover {
  transform: translateY(-4px);
}

.st-hero__buttons .st-btn-outline {
  min-width: 190px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(22, 183, 177, 0.18);
  border-radius: 50px;
  background: #fff;
  color: #141414;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

.st-hero__buttons .st-btn-outline:hover {
  background: #16b7b1;
  border-color: #16b7b1;
  color: #fff;
  transform: translateY(-4px);
}

/* =====================================================
   Stats
===================================================== */
.st-hero__stats {
  display: flex;
  gap: 55px;
  align-items: center;
}

.st-stat {
  position: relative;
}

.st-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 1px;
  height: 46px;
  background: #efefef;
}

.st-stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #16b7b1;
  margin-bottom: 8px;
}

.st-stat span {
  display: block;
  font-size: 14px;
  color: rgba(63, 63, 63, 0.8156862745);
}

/* =====================================================
   Small Decoration
===================================================== */
.st-hero__content::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(22, 183, 177, 0.05);
  right: -40px;
  top: 180px;
  z-index: -1;
}

/* =====================================================
   Image Box
===================================================== */
.st-hero__image {
  position: relative;
}

.st-hero__image img {
  position: relative;
  z-index: 20;
  transition: transform 0.5s ease;
}

.st-hero__image:hover img {
  transform: scale(1.03);
}

/* =====================================================
   Floating Cards
===================================================== */
.st-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 240px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  z-index: 30;
  transition: all 0.35s ease;
  animation: cdFloatingCard 5s ease-in-out infinite;
}

.st-floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   Card Icon
===================================================== */
.st-floating-card i {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #16b7b1;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

/* =====================================================
   Card Text
===================================================== */
.st-floating-card strong {
  display: block;
  margin-bottom: 5px;
  color: #141414;
  font-size: 17px;
  font-weight: 700;
}

.st-floating-card span {
  display: block;
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 14px;
}

/* =====================================================
   Card Positions
===================================================== */
.card-sale {
  top: 60px;
  right: -20px;
  animation-delay: 0.2s;
}

.card-shipping {
  left: -40px;
  top: 48%;
  animation-delay: 0.8s;
}

.card-support {
  bottom: 40px;
  right: 20px;
  animation-delay: 1.4s;
}

/* =====================================================
   Floating Animation
===================================================== */
@keyframes cdFloatingCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* =====================================================
   Decorative Dots
===================================================== */
.st-hero__image::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: 40px;
  top: 120px;
  background-image: radial-gradient(#16b7b1 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.18;
  z-index: 1;
}

.st-hero__image::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 20px;
  bottom: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(22, 183, 177, 0.15);
  animation: cdRotate 30s linear infinite;
}

/* =====================================================
   Shadow Under Product
===================================================== */
.st-hero__shadow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  filter: blur(18px);
  z-index: 5;
}

/* =====================================================
   Swiper Navigation
===================================================== */
.st-hero-next,
.st-hero-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  color: #16b7b1;
  transition: all 0.35s ease;
  z-index: 50;
}

.st-hero-next {
  right: 30px;
}

.st-hero-prev {
  left: 30px;
}

.st-hero-next:hover,
.st-hero-prev:hover {
  background: #16b7b1;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

/* =====================================================
   Pagination
===================================================== */
.st-hero-pagination {
  position: absolute !important;
  bottom: 0px !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  gap: 10px;
  z-index: 50;
}

.st-hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border-radius: 50px;
  background: #d9d9d9;
  opacity: 1;
  transition: all 0.35s ease;
}

.st-hero-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: #16b7b1;
}

/* =====================================================
   Slide Animation
===================================================== */
.swiper-slide-active .st-hero__subtitle {
  animation: fadeUp 0.5s 0.2s both;
}

.swiper-slide-active .st-hero__title {
  animation: fadeUp 0.6s 0.35s both;
}

.swiper-slide-active .st-hero__text {
  animation: fadeUp 0.6s 0.5s both;
}

.swiper-slide-active .st-hero__buttons {
  animation: fadeUp 0.6s 0.65s both;
}

.swiper-slide-active .st-hero__stats {
  animation: fadeUp 0.6s 0.8s both;
}

.swiper-slide-active .st-hero__image {
  animation: fadeLeft 0.8s 0.35s both;
}

/* =====================================================
   Animations
===================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* =====================================================
   Responsive
===================================================== */
@media (max-width: 1200px) {
  .st-hero__wrapper {
    grid-template-columns: 1fr 480px;
    gap: 40px;
  }
  .st-hero__title {
    font-size: 52px;
  }
}
@media (max-width: 992px) {
  .st-hero {
    padding: 20px 0 70px;
  }
  .st-hero__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: 50px;
  }
  .st-hero__content {
    order: 2;
  }
  .st-hero__image {
    order: 1;
    min-height: 450px;
  }
  .st-hero__buttons {
    justify-content: center;
  }
  .st-hero__stats {
    justify-content: center;
  }
  .st-floating-card {
    display: none;
  }
}
@media (max-width: 768px) {
  .st-hero__title {
    font-size: 40px;
  }
  .st-hero__text {
    font-size: 16px;
  }
  .st-hero__buttons {
    flex-direction: column;
  }
  .st-hero__buttons .st-btn,
  .st-hero__buttons .st-btn-outline {
    width: 100%;
  }
  .st-hero__stats {
    gap: 25px;
    flex-wrap: wrap;
  }
  .st-stat::after {
    display: none;
  }
  .st-hero-next,
  .st-hero-prev {
    display: none;
  }
}
@media (max-width: 576px) {
  .st-hero__title {
    font-size: 34px;
    line-height: 1.5;
  }
  .st-hero__subtitle {
    font-size: 13px;
  }
  .st-hero__image {
    min-height: 300px;
  }
}
/* 2026 layout pass: show the actual featured product and reduce empty space. */
.st-hero {
  padding: 24px 0 64px;
}

.st-hero__wrapper {
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 56px;
  min-height: 610px;
}

.st-hero__image {
  min-height: 560px;
}

.st-hero__product-image {
  position: relative;
  z-index: 20;
  width: min(430px, 82%);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(22, 183, 177, 0.14);
  border-radius: 42% 58% 49% 51%/47% 42% 58% 53%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), transparent 30%), linear-gradient(145deg, #effbf9, #dff5f2);
  box-shadow: 0 30px 70px rgba(0, 65, 61, 0.12);
  text-decoration: none;
  transform: rotate(-2deg);
}

.st-hero__product-image img,
.st-hero__image .st-hero__product-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  border-radius: 28px;
  background: #fff;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 43, 41, 0.11));
}

.st-hero__title {
  font-size: clamp(42px, 4.1vw, 61px);
  margin-bottom: 22px;
}

.st-hero__text {
  margin-bottom: 32px;
}

.st-hero__buttons {
  margin-bottom: 42px;
}

@media (max-width: 1100px) {
  .st-hero__wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 30px;
  }
  .st-floating-card {
    min-width: 205px;
    padding: 15px 17px;
  }
}
@media (max-width: 991px) {
  .st-hero__wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .st-hero__image {
    min-height: 500px;
  }
  .st-hero__product-image {
    width: min(420px, 72vw);
  }
}
@media (max-width: 600px) {
  .st-hero {
    padding: 12px 0 44px;
  }
  .st-hero__image {
    min-height: 410px;
  }
  .st-hero__product-image {
    width: min(310px, 76vw);
    padding: 18px;
  }
  .st-hero__stats {
    gap: 25px;
  }
  .st-stat strong {
    font-size: 26px;
  }
}
.st-categories {
  padding: 70px 0;
}

.st-categories .st-grid {
  gap: 30px;
}

.st-category-card {
  background: #ffffff;
  border-radius: 35px;
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.st-category-card:hover {
  transform: translateY(-8px);
  border-color: #d7f8f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-category-card__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #d7f8f5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.st-category-card:hover .st-category-card__icon {
  background: #16b7b1;
}

.st-category-card__icon i {
  font-size: 34px;
  color: #16b7b1;
  transition: all 0.3s ease;
}

.st-category-card:hover .st-category-card__icon i {
  color: #fff;
}

.st-category-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #141414;
}

.st-category-card span {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 14px;
}

/* Mobile: category cards must stack and never force horizontal scrolling. */
@media (max-width: 760px) {
  .st-categories {
    padding: 52px 0;
    overflow: hidden;
  }
  .st-categories .st-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }
  .st-categories .st-home-categories-grid,
  .st-categories .st-grid-4 {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
  }
  .st-categories .st-category-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas: "icon title" "icon count";
    align-items: center;
    column-gap: 16px;
    row-gap: 4px;
    padding: 18px 20px;
    text-align: right;
    border-radius: 22px;
  }
  .st-categories .st-category-card__icon {
    grid-area: icon;
    width: 74px;
    height: 74px;
    margin: 0;
  }
  .st-categories .st-category-card h3 {
    grid-area: title;
    min-width: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }
  .st-categories .st-category-card span {
    grid-area: count;
    min-width: 0;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 380px) {
  .st-categories .st-category-card {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 15px;
  }
  .st-categories .st-category-card__icon {
    width: 62px;
    height: 62px;
  }
}
.st-features .st-grid {
  gap: 30px;
}

.st-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.st-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-feature-card__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d7f8f5;
  transition: all 0.3s ease;
}

.st-feature-card:hover .st-feature-card__icon {
  background: #16b7b1;
}

.st-feature-card__icon i {
  font-size: 28px;
  color: #16b7b1;
  transition: all 0.3s ease;
}

.st-feature-card:hover .st-feature-card__icon i {
  color: #fff;
}

.st-feature-card__content h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #141414;
}

.st-feature-card__content p {
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 1.9;
  font-size: 14px;
}

/* Mobile: every feature occupies its own row. */
@media (max-width: 760px) {
  .st-features {
    overflow: hidden;
  }
  .st-features .st-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }
  .st-features .st-grid,
  .st-features .st-grid-4 {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
  }
  .st-features .st-feature-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }
  .st-features .st-feature-card__icon {
    width: 64px;
    height: 64px;
  }
  .st-features .st-feature-card__content {
    min-width: 0;
    flex: 1;
  }
  .st-features .st-feature-card__content h3 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.7;
  }
  .st-features .st-feature-card__content p {
    font-size: 13px;
    line-height: 1.9;
    overflow-wrap: anywhere;
  }
}
.st-products {
  padding: 100px 0;
}

.st-products__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.st-products__description {
  margin-top: 15px;
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2;
}

@media (max-width: 760px) {
  .st-products {
    padding: 70px 0;
  }
}
@media (max-width: 520px) {
  .st-products__header {
    align-items: flex-start;
    flex-direction: column;
  }
}
.st-banner {
  padding: 100px 0;
}

.st-banner .st-grid {
  gap: 30px;
}

.st-banner-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  min-height: 320px;
  padding: 50px;
  border-radius: 35px;
  background: linear-gradient(135deg, #d8f8f5, #c8f4d3);
  text-decoration: none;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.st-banner-card--secondary {
  background: linear-gradient(135deg, #ffe9d2, #fff3e8);
}

.st-banner-card__content {
  max-width: 320px;
  z-index: 2;
}

.st-banner-card__content span {
  display: inline-block;
  margin-bottom: 15px;
  color: #16b7b1;
  font-weight: 600;
}

.st-banner-card__content h2 {
  font-size: 38px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #141414;
}

.st-banner-card__content p {
  color: rgba(63, 63, 63, 0.8156862745);
  margin-bottom: 30px;
  line-height: 2;
}

.st-banner-card__image {
  flex-shrink: 0;
}

.st-banner-card__image img {
  width: 250px;
  border-radius: 25px;
  transition: transform 0.5s ease;
}

.st-banner-card:hover img {
  transform: scale(1.08);
}

.st-banner-card:hover {
  box-shadow: none;
}

.st-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #fff;
  border-radius: 50px;
  color: #141414;
  font-weight: 600;
  transition: all 0.3s ease;
}

.st-banner-card:hover .st-btn-white {
  background: #16b7b1;
  color: #fff;
}

/* Mobile: the two promotional cards stack vertically. */
@media (max-width: 760px) {
  .st-banner {
    padding: 64px 0;
    overflow: hidden;
  }
  .st-banner .st-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }
  .st-banner .st-grid,
  .st-banner .st-grid-2 {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }
  .st-banner-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 250px;
    gap: 16px;
    padding: 26px 22px;
    border-radius: 28px;
  }
  .st-banner-card__content {
    min-width: 0;
    max-width: none;
    flex: 1;
  }
  .st-banner-card__content h2 {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
  .st-banner-card__content span {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.8;
  }
  .st-banner-card__price {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .st-banner-card__image {
    width: 112px;
    max-width: 34%;
    flex: 0 0 112px;
  }
  .st-banner-card__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .st-btn-white {
    padding: 11px 20px;
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .st-banner-card {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .st-banner-card__image {
    width: 92px;
    max-width: 92px;
    flex-basis: auto;
  }
}
.st-brands {
  padding: 100px 0;
}

.st-brands .st-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.st-brands .st-section-content {
  max-width: 700px;
  margin: 0 auto;
}

.st-brands-slider {
  overflow: hidden;
}

.st-brand-card {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 35px;
  transition: all 0.3s ease;
}

.st-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-brand-card img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 25px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.st-brand-card:hover img {
  opacity: 1;
  filter: none;
}

/* Homepage mobile overflow guard: children may shrink inside grids/flex rows. */
.st-main,
.st-main > section,
.st-main .st-container,
.st-main .st-grid,
.st-main .st-grid > * {
  min-width: 0;
}

@media (max-width: 760px) {
  .st-main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .st-main img {
    max-width: 100%;
  }
}
.st-about-hero {
  padding: 90px 0;
}

.st-about-hero__content {
  display: grid;
  grid-template-columns: 1fr 550px;
  align-items: center;
  gap: 70px;
}

.st-about-hero__left h1 {
  font-size: 52px;
  line-height: 1.4;
  color: #141414;
  margin: 20px 0;
}

.st-about-hero__left p {
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2.2;
  margin-bottom: 35px;
  font-size: 16px;
}

.st-about-hero__actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.st-about-hero__right {
  position: relative;
}

.st-about-hero__right img {
  width: 100%;
  display: block;
  border-radius: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-breadcrumb {
  margin-bottom: 25px;
}

.st-about-story {
  padding: 100px 0;
}

.st-about-story__wrapper {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 70px;
}

.st-about-story__image img {
  width: 100%;
  display: block;
  border-radius: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-about-story__content h2 {
  font-size: 42px;
  color: #141414;
  margin: 20px 0;
  line-height: 1.5;
}

.st-about-story__content p {
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2.2;
  margin-bottom: 20px;
}

.st-about-story__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 35px 0;
}

.st-about-story__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-about-story__item i {
  color: #16b7b1;
  font-size: 18px;
}

.st-about-story__item span {
  color: #141414;
  font-weight: 500;
}

.st-about-features {
  padding: 100px 0;
  background: #16b7b1;
}

.st-about-features .st-section-subtitle {
  color: #002b29;
}

.st-about-features .st-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.st-about-features .st-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: 100%;
  background: #ffffff;
  border-radius: 35px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #efefef;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.st-about-features .st-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-about-features .st-feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(22, 183, 177, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-about-features .st-feature-card__icon i {
  font-size: 34px;
  color: #16b7b1;
}

.st-about-features .st-feature-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #141414;
}

.st-about-features .st-feature-card p {
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2;
}

@media (max-width: 992px) {
  .st-about-features .st-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .st-about-features .st-grid {
    grid-template-columns: 1fr;
  }
}
.st-about-stats {
  padding: 100px 0;
  background: #16b7b1;
}

.st-about-stats .st-grid {
  gap: 30px;
}

.st-counter {
  background: #fff;
  border-radius: 25px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.st-counter:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-counter__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #d7f8f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-counter__icon i {
  font-size: 34px;
  color: #16b7b1;
}

.st-counter__number {
  font-size: 40px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 10px;
}

.st-counter__title {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 16px;
}

.st-about-team {
  padding: 100px 0;
  background: #16b7b1;
}

.st-about-team .st-section-subtitle {
  color: #002b29;
}

.st-about-team .st-team-card {
  padding: 0;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.st-about-team .st-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-about-team .st-team-card__image {
  overflow: hidden;
}

.st-about-team .st-team-card__image img {
  width: 100%;
  height: 280px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.st-about-team .st-team-card:hover .st-team-card__image img {
  transform: scale(1.08);
}

.st-about-team .st-team-card__body {
  padding: 25px;
}

.st-about-team .st-team-card__name {
  font-size: 22px;
  margin-bottom: 8px;
  color: #141414;
}

.st-about-team .st-team-card__role {
  display: block;
  color: #16b7b1;
  margin-bottom: 20px;
  font-size: 15px;
}

.st-about-team .st-team-card__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.st-about-team .st-team-card__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #d7f8f5;
  color: #16b7b1;
  transition: all 0.3s ease;
}

.st-about-team .st-team-card__social a:hover {
  background: #16b7b1;
  color: #fff;
}

.st-about-cta {
  padding: 100px 0;
}

.st-about-cta__box {
  background: linear-gradient(135deg, #16b7b1, #002b29);
  border-radius: 35px;
  padding: 70px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.st-about-cta__content {
  max-width: 650px;
}

.st-about-cta__content .st-badge {
  margin-bottom: 20px;
}

.st-about-cta__content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.st-about-cta__content p {
  line-height: 2;
  opacity: 0.9;
}

.st-about-cta__actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.st-about-cta__actions .st-btn {
  min-width: 180px;
}

.st-about-cta__actions .st-btn-light {
  min-width: 180px;
}

/* About page responsive system. */
.st-about-hero,
.st-about-story,
.st-about-features,
.st-about-stats,
.st-about-team,
.st-about-cta {
  width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.st-about-hero__content,
.st-about-hero__left,
.st-about-hero__right,
.st-about-story__wrapper,
.st-about-story__image,
.st-about-story__content,
.st-about-cta__box,
.st-about-cta__content,
.st-about-cta__actions,
.st-about-team .st-grid,
.st-about-team .st-team-card {
  min-width: 0;
}

/* The title and team grid belong on separate rows. */
.st-about-team > .st-container {
  display: block;
}

.st-about-team .st-grid {
  width: 100%;
}

@media (max-width: 1180px) {
  .st-about-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 44%);
    gap: 44px;
  }
  .st-about-story__wrapper {
    grid-template-columns: minmax(390px, 43%) minmax(0, 1fr);
    gap: 44px;
  }
  .st-about-hero__left h1 {
    font-size: 44px;
  }
  .st-about-story__content h2,
  .st-about-cta__content h2 {
    font-size: 37px;
  }
  .st-about-stats .st-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .st-about-hero,
  .st-about-story {
    padding: 70px 0;
  }
  .st-about-hero__content,
  .st-about-story__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .st-about-hero__left,
  .st-about-hero__right,
  .st-about-story__image,
  .st-about-story__content {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }
  .st-about-hero__right img,
  .st-about-story__image img {
    max-height: 500px;
    object-fit: cover;
  }
  .st-about-team .st-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .st-about-cta__box {
    flex-direction: column;
    align-items: stretch;
    padding: 52px 42px;
    text-align: center;
  }
  .st-about-cta__content {
    max-width: 760px;
    margin-inline: auto;
  }
  .st-about-cta__actions {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .st-about-hero,
  .st-about-story,
  .st-about-features,
  .st-about-stats,
  .st-about-team,
  .st-about-cta {
    padding: 52px 0;
  }
  .st-about-hero__content,
  .st-about-story__wrapper {
    gap: 30px;
  }
  .st-about-hero__left h1 {
    margin: 14px 0;
    font-size: 32px;
    line-height: 1.55;
  }
  .st-about-hero__left p,
  .st-about-story__content p {
    font-size: 14px;
    line-height: 2;
  }
  .st-about-hero__actions {
    width: 100%;
    flex-direction: column;
  }
  .st-about-hero__actions .st-btn,
  .st-about-hero__actions .st-btn-light {
    width: 100%;
    min-height: 50px;
  }
  .st-about-hero__right img,
  .st-about-story__image img {
    min-height: 250px;
    max-height: 350px;
    border-radius: 24px;
  }
  .st-about-story__content h2,
  .st-about-cta__content h2,
  .st-about-features .st-section-title h2,
  .st-about-team .st-section-title h2 {
    font-size: 30px;
    line-height: 1.55;
  }
  .st-about-story__items {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 26px 0;
  }
  .st-about-story__item {
    align-items: flex-start;
  }
  .st-about-features .st-grid,
  .st-about-stats .st-grid,
  .st-about-team .st-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .st-about-features .st-feature-card,
  .st-counter {
    padding: 28px 20px;
    border-radius: 22px;
  }
  .st-counter__icon,
  .st-about-features .st-feature-card__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }
  .st-counter__number {
    font-size: 34px;
  }
  .st-about-team .st-team-card__image img {
    height: 250px;
  }
  .st-about-cta__box {
    gap: 28px;
    padding: 34px 22px;
    border-radius: 26px;
  }
  .st-about-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  .st-about-cta__actions .st-btn,
  .st-about-cta__actions .st-btn-light {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }
}
@media (max-width: 380px) {
  .st-about-hero__left h1 {
    font-size: 28px;
  }
  .st-about-cta__box {
    padding-inline: 18px;
  }
}
.st-contact-hero {
  padding: 90px 0;
}

.st-contact-hero__content {
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 70px;
}

.st-contact-hero__left h1 {
  margin: 20px 0;
  font-size: 52px;
  line-height: 1.4;
  color: #141414;
}

.st-contact-hero__left p {
  margin-bottom: 35px;
  line-height: 2.2;
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 16px;
}

.st-contact-hero__actions {
  display: flex;
  gap: 15px;
}

.st-contact-hero__right {
  position: relative;
}

.st-contact-hero__right img {
  width: 100%;
  display: block;
  border-radius: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-breadcrumb {
  margin-bottom: 25px;
}

.st-contact-info {
  padding: 100px 0;
  background: #16b7b1;
}

.st-contact-info .st-grid {
  gap: 30px;
}

.st-contact-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.st-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-contact-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #d7f8f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-contact-card__icon i {
  font-size: 30px;
  color: #16b7b1;
}

.st-contact-card h3 {
  margin-bottom: 15px;
  color: #141414;
  font-size: 22px;
}

.st-contact-card p,
.st-contact-card a {
  color: rgba(63, 63, 63, 0.8156862745);
  text-decoration: none;
  line-height: 2;
  transition: all 0.3s ease;
}

.st-contact-card a:hover {
  color: #16b7b1;
}

.st-contact-form {
  padding: 100px 0;
}

.st-contact-form__wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.st-contact-form__content h2 {
  margin: 20px 0;
  font-size: 42px;
  color: #141414;
}

.st-contact-form__content p {
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2.2;
  margin-bottom: 30px;
}

.st-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.st-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #141414;
}

.st-contact-list i {
  color: #16b7b1;
}

.st-contact-form__box {
  background: #ffffff;
  border-radius: 35px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.st-form-group label {
  font-weight: 600;
  color: #141414;
}

.st-contact-form .st-btn {
  width: 100%;
  justify-content: center;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-spinner {
  margin-top: 15px;
}

.wpcf7-response-output {
  margin-top: 20px !important;
  border-radius: 25px;
  padding: 15px !important;
}

.wpcf7-submit {
  width: 100%;
}

/* Contact Form 7 */
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: #141414;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 180px;
}

.wpcf7-submit {
  width: 100%;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #dc2626;
  font-size: 14px;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px 20px !important;
  border-radius: 25px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #22c55e;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #ef4444;
}

.st-submit {
  position: relative;
  display: inline-block;
  width: 100%;
}

.st-submit .wpcf7-submit {
  width: 100%;
}

.st-submit .wpcf7-spinner {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.st-contact-social {
  padding: 100px 0;
  background: #16b7b1;
}

.st-contact-social .st-grid {
  gap: 30px;
}

.st-social-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.st-social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.st-social-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #d7f8f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-social-card__icon i {
  font-size: 34px;
  color: #16b7b1;
}

.st-social-card h3 {
  margin-bottom: 10px;
  color: #141414;
}

.st-social-card span {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 14px;
}

.st-contact-faq {
  padding: 100px 0;
}

.st-contact-faq .st-accordion {
  max-width: 900px;
  margin: auto;
}

/* Contact page responsive system. Keep the desktop identity while removing
   fixed-width columns and horizontal overflow on tablets and phones. */
.st-contact-hero,
.st-contact-info,
.st-contact-form,
.st-contact-social,
.st-contact-faq {
  width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.st-contact-hero__content,
.st-contact-hero__left,
.st-contact-hero__right,
.st-contact-form__wrapper,
.st-contact-form__content,
.st-contact-form__box,
.st-contact-card,
.st-social-card {
  min-width: 0;
}

.st-contact-card a,
.st-social-card span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1180px) {
  .st-contact-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 44%);
    gap: 42px;
  }
  .st-contact-hero__left h1 {
    font-size: 44px;
  }
  .st-contact-form__wrapper {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 40px;
  }
  .st-contact-info .st-grid,
  .st-contact-social .st-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .st-contact-hero {
    padding: 70px 0;
  }
  .st-contact-hero__content,
  .st-contact-form__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .st-contact-hero__left,
  .st-contact-hero__right,
  .st-contact-form__content,
  .st-contact-form__box {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }
  .st-contact-hero__right img {
    max-height: 480px;
    object-fit: cover;
  }
  .st-contact-form__content {
    text-align: center;
  }
  .st-contact-list {
    width: min(100%, 520px);
    margin-inline: auto;
    text-align: right;
  }
}
@media (max-width: 640px) {
  .st-contact-hero,
  .st-contact-info,
  .st-contact-form,
  .st-contact-social,
  .st-contact-faq {
    padding: 52px 0;
  }
  .st-contact-hero__content {
    gap: 30px;
  }
  .st-contact-hero__left h1 {
    margin: 14px 0;
    font-size: 32px;
    line-height: 1.55;
  }
  .st-contact-hero__left p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 2;
  }
  .st-contact-hero__actions {
    width: 100%;
  }
  .st-contact-hero__actions .st-btn {
    width: 100%;
    min-height: 50px;
  }
  .st-contact-hero__right img {
    min-height: 250px;
    max-height: 340px;
    border-radius: 24px;
  }
  .st-contact-info .st-grid,
  .st-contact-social .st-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .st-contact-card,
  .st-social-card {
    padding: 28px 20px;
    border-radius: 22px;
  }
  .st-contact-card__icon,
  .st-social-card__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }
  .st-contact-card__icon i,
  .st-social-card__icon i {
    font-size: 27px;
  }
  .st-contact-card h3,
  .st-social-card h3 {
    font-size: 19px;
  }
  .st-contact-form__wrapper {
    gap: 28px;
  }
  .st-contact-form__content h2,
  .st-contact-faq .st-section-title h2,
  .st-contact-info .st-section-title h2,
  .st-contact-social .st-section-title h2 {
    font-size: 30px;
    line-height: 1.55;
  }
  .st-contact-form__content p,
  .st-section-title p {
    font-size: 14px;
  }
  .st-contact-form__box {
    padding: 22px 18px;
    border-radius: 24px;
  }
  .wpcf7 form {
    gap: 18px;
  }
  .wpcf7 textarea {
    min-height: 140px;
  }
  .st-accordion__header {
    gap: 14px;
    padding: 18px 16px;
    font-size: 14px;
    line-height: 1.9;
  }
  .st-accordion__header i {
    width: 30px;
    height: 30px;
  }
  .st-accordion__content {
    padding-inline: 16px;
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .st-contact-hero__left h1 {
    font-size: 28px;
  }
  .st-contact-form__box {
    padding-inline: 14px;
  }
}
/* Header commerce actions and product search */
.st-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #141414;
  text-decoration: none;
}

.st-header-cart__count {
  position: absolute;
  inset-block-start: -5px;
  inset-inline-start: -5px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #ef476f;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.st-search-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 110px 20px 30px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.st-search-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 43, 41, 0.58);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.st-search-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 42px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 43, 41, 0.25);
  transform: translateY(-24px) scale(0.98);
  transition: transform 0.3s ease;
}

.st-search-open {
  overflow: hidden;
}

.st-search-open .st-search-modal {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.st-search-open .st-search-modal__dialog {
  transform: translateY(0) scale(1);
}

.st-search-modal__close {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #002b29;
  background: #d7f8f5;
  cursor: pointer;
}

.st-search-modal__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #16b7b1;
  font-size: 13px;
  font-weight: 800;
}

.st-search-modal h2 {
  margin-bottom: 24px;
  color: #141414;
  font-size: clamp(24px, 4vw, 36px);
}

.st-product-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid #dcebea;
  border-radius: 18px;
  background: #f8fbfb;
}

.st-product-search-form input[type=search] {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: #141414;
  background: transparent;
  font: inherit;
}

.st-product-search-form button {
  min-width: 130px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: #16b7b1;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.st-product-search-form button:hover {
  background: #002b29;
  transform: translateY(-2px);
}

.st-search-modal__shop-link {
  display: inline-block;
  margin-top: 16px;
  color: #16b7b1;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* Dynamic home hero */
.st-hero__product-image {
  position: relative;
  z-index: 10;
  width: min(520px, 90%);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 38% 62% 48% 52%/46% 39% 61% 54%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 60px rgba(0, 43, 41, 0.14);
}

.st-hero__product-image img,
.st-hero__image .st-hero__product-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.st-hero__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -22px 0 28px;
  color: #002b29;
  font-size: 24px;
  font-weight: 900;
}

.st-hero__price del {
  color: #8a9998;
  font-size: 15px;
  font-weight: 500;
}

.st-hero__price ins {
  color: #ef476f;
  text-decoration: none;
}

.st-hero-next,
.st-hero-prev {
  border: 0;
  cursor: pointer;
}

/* Dynamic categories */
.st-home-categories-grid {
  width: 100%;
}

.st-category-card__icon.has-image {
  overflow: hidden;
  background: #eef8f7;
}

.st-category-card__icon.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.st-category-card:hover .st-category-card__icon.has-image img {
  transform: scale(1.08);
}

.st-category-card--all {
  border: 1px dashed rgba(22, 183, 177, 0.45);
  background: linear-gradient(145deg, #f1fffd, #fff);
}

/* Product-card visuals are centralized in components/_product-card.scss. */
/* Dynamic banners */
.st-banner-card__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #002b29;
  font-size: 20px;
  font-weight: 900;
}

.st-banner-card__price del {
  color: #899594;
  font-size: 13px;
  font-weight: 500;
}

.st-banner-card__price ins {
  color: #ef476f;
  text-decoration: none;
}

.st-banner-card__image {
  width: 42%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-banner-card__image img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Single product */
.st-single-product {
  background: #f7fbfa;
}

.st-single-product__hero {
  padding: 34px 0 76px;
}

.st-single-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: #6c7d7b;
  font-size: 13px;
}

.st-single-breadcrumb a {
  color: #6c7d7b;
  text-decoration: none;
}

.st-single-breadcrumb a:hover {
  color: #16b7b1;
}

.st-single-breadcrumb i {
  font-size: 10px;
}

.st-single-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.3fr);
  gap: 55px;
  align-items: start;
}

.st-single-product__gallery,
.st-single-product__summary {
  min-width: 0;
}

.st-single-product__gallery {
  position: relative;
  padding: 22px;
  border: 1px solid #e2efed;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 43, 41, 0.07);
}

.st-single-product .woocommerce-product-gallery,
.woocommerce .st-single-product div.images,
.woocommerce-page .st-single-product div.images {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.st-single-product .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border-radius: 22px;
  background: #f4f8f7;
}

.st-single-product .woocommerce-product-gallery__image a {
  display: block;
  aspect-ratio: 1/1;
}

.st-single-product .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.st-single-product .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px !important;
  padding: 0 !important;
}

.st-single-product .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
}

.st-single-product .flex-control-thumbs li:has(img.flex-active) {
  border-color: #16b7b1;
}

.st-single-product .flex-control-thumbs img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.st-single-product .onsale {
  z-index: 4;
  inset-block-start: 34px !important;
  inset-inline-start: 34px !important;
  right: auto !important;
  left: auto !important;
  min-width: auto;
  min-height: auto;
  margin: 0 !important;
  padding: 8px 14px;
  border-radius: 12px;
  color: #fff;
  background: #ef476f;
  font-size: 12px;
  line-height: 1.4;
}

.st-single-product__summary,
.woocommerce div.product .st-single-product__summary {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 36px;
  border: 1px solid #e2efed;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 43, 41, 0.07);
}

.st-single-product__category {
  margin-bottom: 12px;
  color: #16b7b1;
  font-size: 13px;
  font-weight: 700;
}

.st-single-product__category a {
  color: inherit;
  text-decoration: none;
}

.woocommerce div.product .st-single-product__summary .product_title {
  margin: 0 0 15px;
  color: #141414;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.45;
}

.woocommerce div.product .st-single-product__summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.st-single-product__summary .star-rating {
  float: none;
  color: #f3b61f;
}

.st-single-product__summary .woocommerce-review-link {
  color: #697977;
  font-size: 12px;
  text-decoration: none;
}

.woocommerce div.product .st-single-product__summary p.price,
.woocommerce div.product .st-single-product__summary span.price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 23px;
  color: #002b29;
  font-size: 25px;
  font-weight: 900;
}

.st-single-product__summary .price del {
  color: #9aa7a6;
  font-size: 15px;
  font-weight: 500;
  opacity: 1;
}

.st-single-product__summary .price ins {
  color: #ef476f;
  text-decoration: none;
}

.st-single-product__summary .woocommerce-product-details__short-description {
  margin-bottom: 24px;
  color: #536260;
  font-size: 15px;
  line-height: 2.1;
}

.st-single-product__summary .stock {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px !important;
  padding: 5px 12px;
  border-radius: 10px;
  color: #087b45 !important;
  background: #e8f9f0;
  font-size: 12px;
  font-weight: 700;
}

.st-single-product__summary .stock.out-of-stock {
  color: #9b263e !important;
  background: #fff0f3;
}

.woocommerce div.product .st-single-product__summary form.cart {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 25px;
  padding: 20px 0;
  border-top: 1px solid #edf2f1;
  border-bottom: 1px solid #edf2f1;
}

.st-single-product__summary form.cart .quantity {
  float: none !important;
  margin: 0 !important;
}

.st-single-product__summary .quantity .qty {
  width: 82px;
  height: 52px;
  border: 1px solid #dce8e7;
  border-radius: 13px;
  color: #141414;
  background: #f8fbfb;
  font: inherit;
  font-weight: 700;
}

.woocommerce div.product .st-single-product__summary .single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
  min-height: 52px;
  margin: 0;
  padding: 10px 24px;
  border-radius: 13px;
  color: #fff;
  background: #16b7b1;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}

.woocommerce div.product .st-single-product__summary .single_add_to_cart_button:hover {
  color: #fff;
  background: #002b29;
}

.st-single-product__summary .variations {
  width: 100%;
  margin-bottom: 12px !important;
}

.st-single-product__summary .variations th,
.st-single-product__summary .variations td {
  display: block;
  padding: 4px 0 !important;
  text-align: right;
}

.st-single-product__summary .variations select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #dce8e7;
  border-radius: 12px;
  background: #f8fbfb;
  font: inherit;
}

.st-single-product__summary .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: #ef476f;
  font-size: 12px;
}

.st-single-product__summary .product_meta {
  display: grid;
  gap: 8px;
  color: #637371;
  font-size: 12px;
}

.st-single-product__summary .product_meta a {
  color: #16b7b1;
  text-decoration: none;
}

.st-single-product__assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.st-single-product__assurances > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #f4fbfa;
}

.st-single-product__assurances i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #16b7b1;
  background: #d7f8f5;
}

.st-single-product__assurances span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.st-single-product__assurances strong {
  color: #263331;
  font-size: 11px;
}

.st-single-product__assurances small {
  overflow: hidden;
  color: #7a8987;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.st-single-product__details {
  padding: 0 0 90px;
}

.woocommerce div.product .st-single-product__details .woocommerce-tabs {
  padding: 32px;
  border: 1px solid #e2efed;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 43, 41, 0.05);
}

.woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
}

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

.woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: #f1f7f6;
}

.woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs li a {
  padding: 11px 18px;
  color: #4e5d5b;
  font-weight: 700;
}

.woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs li.active {
  color: #fff;
  background: #16b7b1;
}

.woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.st-single-product__details .woocommerce-Tabs-panel {
  color: #485654;
  font-size: 14px;
  line-height: 2.15;
}

.st-single-product__details .woocommerce-Tabs-panel h2 {
  margin-bottom: 14px;
  color: #141414;
  font-size: 24px;
}

.st-single-product__details .related,
.st-single-product__details .upsells {
  margin-top: 65px;
}

.st-single-product__details .related > h2,
.st-single-product__details .upsells > h2 {
  margin-bottom: 28px;
  color: #141414;
  font-size: 30px;
}

@media (max-width: 1180px) {
  .st-single-product__assurances {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .st-menu {
    gap: 18px;
  }
  .st-login-btn span {
    display: none;
  }
  .st-login-btn {
    width: 42px;
    padding: 0;
    justify-content: center;
  }
  .st-hero__wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    min-height: auto;
  }
  .st-hero__content {
    text-align: center;
  }
  .st-hero__title,
  .st-hero__text {
    max-width: 760px;
    margin-inline: auto;
  }
  .st-hero__buttons,
  .st-hero__stats,
  .st-hero__price {
    justify-content: center;
  }
  .st-hero__image {
    min-height: 540px;
  }
  .st-single-product__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 760px) {
  .st-header {
    height: 70px;
  }
  .st-menu {
    display: none;
  }
  .st-logo img {
    width: 52px;
    height: 52px;
  }
  .st-search-modal {
    padding-top: 84px;
  }
  .st-search-modal__dialog {
    padding: 34px 20px 24px;
    border-radius: 24px;
  }
  .st-product-search-form {
    grid-template-columns: 1fr;
  }
  .st-product-search-form button {
    width: 100%;
  }
  .st-banner-card {
    min-height: 0;
    padding: 28px;
  }
  .st-banner-card__content h2 {
    font-size: 27px;
  }
  .st-banner-card__image {
    width: 40%;
  }
  .st-single-product__hero {
    padding-top: 22px;
  }
  .st-single-product__gallery,
  .st-single-product__summary,
  .woocommerce div.product .st-single-product__summary {
    padding: 18px;
    border-radius: 23px;
  }
  .st-single-product__details .woocommerce-tabs,
  .woocommerce div.product .st-single-product__details .woocommerce-tabs {
    padding: 20px;
    border-radius: 22px;
  }
}
@media (max-width: 520px) {
  .st-header-actions {
    gap: 7px;
  }
  .st-icon-btn,
  .st-login-btn {
    width: 38px;
    height: 38px;
  }
  .st-hero__title {
    font-size: 36px;
  }
  .st-hero__text {
    font-size: 15px;
  }
  .st-hero__buttons {
    flex-direction: column;
  }
  .st-hero__buttons .st-btn,
  .st-hero__buttons .st-btn-outline {
    width: 100%;
    min-width: 0;
  }
  .st-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .st-stat {
    padding-inline: 6px;
  }
  .st-stat strong {
    font-size: 19px;
  }
  .st-stat span {
    font-size: 9px;
  }
  .st-hero__image {
    min-height: 410px;
  }
  .st-floating-card {
    transform: scale(0.78);
  }
  .st-products__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .st-banner-card {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 22px;
  }
  .st-banner-card__image {
    width: 100%;
  }
  .st-banner-card__image img {
    max-width: none;
  }
  .woocommerce div.product .st-single-product__summary form.cart {
    align-items: stretch;
    flex-direction: column;
  }
  .st-single-product__summary .quantity .qty {
    width: 100%;
  }
  .woocommerce div.product .st-single-product__summary .single_add_to_cart_button {
    width: 100%;
    min-width: 0;
  }
  .woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs {
    align-items: stretch;
    flex-direction: column;
  }
  .woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs li,
  .woocommerce div.product .st-single-product__details .woocommerce-tabs ul.tabs li a {
    width: 100%;
    text-align: center;
  }
}
/* ==========================================================
   SiXThem commerce redesign v2 — product, cart, account
   ========================================================== */
:root {
  --st-ink: #172321;
  --st-deep: #063f3b;
  --st-brand: #16b7b1;
  --st-brand-dark: #087f7a;
  --st-mint: #e9f8f6;
  --st-soft: #f6faf9;
  --st-line: #dfecea;
  --st-muted: #6e7d7a;
  --st-pink: #ef476f;
  --st-gold: #f3b61f;
  --st-card-shadow: 0 18px 55px rgba(0, 43, 41, .08);
}

.woocommerce-cart .woocommerce,
.woocommerce-account .woocommerce {
  width: min(1220px, 100% - 40px);
  margin: 0 auto;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  margin: 24px auto !important;
  padding: 17px 58px 17px 20px !important;
  border: 1px solid var(--st-line) !important;
  border-top: 0 !important;
  border-radius: 16px;
  color: var(--st-ink);
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 43, 41, 0.06);
  line-height: 1.9;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  inset-inline-start: 22px;
  inset-inline-end: auto;
  top: 18px;
  color: var(--st-brand);
}

.woocommerce-error::before {
  color: var(--st-pink);
}

/* Compact quantity control */
.st-quantity-control.quantity {
  width: 132px !important;
  height: 48px;
  float: none !important;
  display: grid !important;
  grid-template-columns: 38px minmax(42px, 1fr) 38px;
  align-items: center;
  overflow: hidden;
  margin: 0 !important;
  border: 1px solid #d6e5e3;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.st-quantity-control__btn {
  width: 38px;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--st-deep);
  background: #f0f8f7;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.st-quantity-control__btn:hover {
  color: #fff;
  background: var(--st-brand);
}

.st-quantity-control .qty,
.woocommerce .st-quantity-control .qty {
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  padding: 0 3px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0;
  color: var(--st-ink);
  background: #fff !important;
  box-shadow: none !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}

.st-quantity-control .qty::-webkit-outer-spin-button,
.st-quantity-control .qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/* ---------------- Single product ---------------- */
.st-single-product {
  background: radial-gradient(circle at 15% 3%, rgba(22, 183, 177, 0.08), transparent 25%), var(--st-soft);
}

.st-single-product__hero {
  padding: 32px 0 64px;
}

.st-single-product__layout {
  gap: clamp(28px, 4vw, 58px);
}

.st-single-product__gallery,
.st-single-product__summary,
.woocommerce div.product .st-single-product__summary {
  border-color: rgba(197, 221, 218, 0.8);
  box-shadow: var(--st-card-shadow);
}

.st-single-product__gallery {
  position: sticky;
  top: 105px;
  padding: 18px;
}

.st-single-product .woocommerce-product-gallery__wrapper {
  border-radius: 24px;
}

.st-single-product .woocommerce-product-gallery__trigger {
  top: 18px !important;
  right: auto !important;
  left: 18px !important;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 43, 41, 0.12);
}

.st-single-product__summary,
.woocommerce div.product .st-single-product__summary {
  padding: clamp(24px, 4vw, 42px);
}

.woocommerce div.product .st-single-product__summary .product_title {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.3vw, 43px);
  letter-spacing: -0.5px;
}

.st-single-product__summary .woocommerce-product-details__short-description {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid #e1eeec;
  border-radius: 17px;
  color: #52615f;
  background: #f8fcfb;
  line-height: 2.05;
}

.woocommerce div.product .st-single-product__summary p.price,
.woocommerce div.product .st-single-product__summary span.price {
  min-height: 48px;
  margin-bottom: 17px;
  padding: 10px 0;
  font-size: clamp(22px, 3vw, 29px);
}

.woocommerce div.product .st-single-product__summary form.cart {
  align-items: center;
  gap: 13px;
  margin: 8px 0 20px;
  padding: 20px 0;
}

.woocommerce div.product .st-single-product__summary .single_add_to_cart_button,
.woocommerce div.product .st-single-product__summary button.single_add_to_cart_button.button.alt {
  flex: 1;
  min-width: 210px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 24px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--st-brand), var(--st-brand-dark));
  box-shadow: 0 12px 26px rgba(22, 183, 177, 0.24);
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.woocommerce div.product .st-single-product__summary .single_add_to_cart_button::before {
  content: "\f217";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.woocommerce div.product .st-single-product__summary .single_add_to_cart_button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--st-deep), #0a6560);
  box-shadow: 0 15px 30px rgba(0, 43, 41, 0.22);
  transform: translateY(-2px);
}

.woocommerce div.product .st-single-product__summary .single_add_to_cart_button.disabled,
.woocommerce div.product .st-single-product__summary .single_add_to_cart_button:disabled {
  opacity: 0.55;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.st-single-product__summary form.cart .quantity:not(.st-quantity-control) {
  max-width: 132px;
}

.st-single-product__summary .variations_form.cart {
  display: block !important;
}

.st-single-product__summary .variations_form .single_variation_wrap {
  margin-top: 15px;
}

.st-single-product__summary .variations_form .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-single-product__summary .variations label {
  display: block;
  margin-bottom: 7px;
  color: var(--st-ink);
  font-size: 13px;
  font-weight: 800;
}

.st-single-product__summary .variations select {
  min-height: 50px;
  border-radius: 14px;
}

.st-single-product__summary .product_meta {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 15px;
  background: #f7fbfa;
}

.st-product-real-stock {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid #dcece8;
  border-radius: 16px;
  background: #f8fcfb;
}

.st-product-real-stock > i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #087b45;
  background: #dcf7e9;
  font-size: 18px;
}

.st-product-real-stock > div {
  display: grid;
  gap: 3px;
}

.st-product-real-stock strong {
  color: #43524f;
  font-size: 11px;
}

.st-product-real-stock span {
  color: #087b45;
  font-size: 14px;
  font-weight: 900;
}

.st-product-real-stock.is-out > i,
.st-product-real-stock.is-out span {
  color: #a52c46;
}

.st-product-real-stock.is-out > i {
  background: #ffe9ee;
}

.st-product-real-stock.is-backorder > i,
.st-product-real-stock.is-backorder span {
  color: #9b6a08;
}

.st-product-real-stock.is-backorder > i {
  background: #fff5d6;
}

.st-single-product__assurances {
  margin-top: 14px;
}

.st-single-product__assurances > div {
  border: 1px solid #e3efed;
  background: #fbfefd;
}

.st-single-product__assurances strong {
  font-size: 10px;
}

.st-single-product__assurances small {
  font-size: 8.5px;
}

.st-single-product__details {
  padding-bottom: 95px;
}

.st-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.st-product-detail-card,
.st-product-reviews-card {
  overflow: hidden;
  border: 1px solid var(--st-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 43, 41, 0.06);
}

.st-product-detail-card__heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px 27px;
  border-bottom: 1px solid #e9f1f0;
  background: linear-gradient(135deg, #fbfefd, #f2fbfa);
}

.st-product-detail-card__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--st-brand);
  background: #dcf7f4;
  font-size: 18px;
}

.st-product-detail-card__heading > div {
  display: grid;
  gap: 2px;
}

.st-product-detail-card__heading span:not(.st-product-detail-card__icon) {
  color: var(--st-brand-dark);
  font-size: 11px;
  font-weight: 800;
}

.st-product-detail-card__heading h2 {
  margin: 0;
  color: var(--st-ink);
  font-size: clamp(19px, 2.5vw, 25px);
}

.st-product-detail-card__content {
  padding: 28px;
  color: #4e5e5b;
  font-size: 14px;
  line-height: 2.2;
}

.st-product-detail-card__content > :first-child {
  margin-top: 0;
}

.st-product-detail-card__content > :last-child {
  margin-bottom: 0;
}

.st-product-detail-card__content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.st-product-detail-card--specs {
  position: sticky;
  top: 105px;
}

.st-product-detail-card--specs .woocommerce-product-attributes {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 9px;
}

.st-product-detail-card--specs .woocommerce-product-attributes th,
.st-product-detail-card--specs .woocommerce-product-attributes td {
  padding: 12px 13px !important;
  border: 0 !important;
  background: #f7fbfa !important;
  font-style: normal;
  text-align: right;
}

.st-product-detail-card--specs .woocommerce-product-attributes th {
  width: 42%;
  border-radius: 0 12px 12px 0;
  color: #53615f;
  font-size: 12px;
}

.st-product-detail-card--specs .woocommerce-product-attributes td {
  border-radius: 12px 0 0 12px;
  color: var(--st-ink);
  font-weight: 800;
}

.st-product-detail-card--specs .woocommerce-product-attributes p {
  margin: 0;
  padding: 0;
}

.st-product-basic-specs {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-product-basic-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #f7fbfa;
}

.st-product-basic-specs span {
  color: var(--st-muted);
  font-size: 12px;
}

.st-product-basic-specs strong {
  color: var(--st-ink);
  font-size: 12px;
  text-align: left;
}

.st-product-basic-specs a {
  color: var(--st-brand-dark);
  text-decoration: none;
}

.st-product-empty-content {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  color: var(--st-muted);
  text-align: center;
}

.st-product-empty-content i {
  color: #9acbc7;
  font-size: 38px;
}

.st-product-empty-content p {
  margin: 0;
}

.st-product-reviews-card {
  margin-top: 24px;
}

.st-product-reviews-card #reviews {
  padding: 28px;
}

.st-product-reviews-card #reviews #comments,
.st-product-reviews-card #reviews #review_form_wrapper {
  width: auto;
  float: none;
}

.st-product-reviews-card #reviews #comments {
  margin-bottom: 30px;
}

.st-product-reviews-card #reviews .woocommerce-Reviews-title {
  margin: 0 0 20px;
  color: var(--st-ink);
  font-size: 18px;
}

.st-product-reviews-card #reviews ol.commentlist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.st-product-reviews-card #reviews ol.commentlist li {
  margin: 0;
}

.st-product-reviews-card #reviews ol.commentlist li .comment_container {
  min-height: 90px;
  padding: 18px;
  border: 1px solid #e4efed;
  border-radius: 17px;
  background: #fbfefd;
}

.st-product-reviews-card #reviews ol.commentlist li img.avatar {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
}

.st-product-reviews-card #reviews ol.commentlist li .comment-text {
  min-height: 48px;
  margin: 0 62px 0 0;
  padding: 0;
  border: 0;
}

.st-product-reviews-card #reviews .star-rating {
  color: var(--st-gold);
}

.st-product-reviews-card #review_form_wrapper {
  padding: 24px;
  border-radius: 20px;
  background: #f5fbfa;
}

.st-product-reviews-card #reply-title {
  display: block;
  margin-bottom: 7px;
  color: var(--st-ink);
  font-size: 20px;
  font-weight: 900;
}

.st-product-reviews-card .comment-form-rating,
.st-product-reviews-card .comment-form-comment {
  margin-top: 18px;
}

.st-product-reviews-card textarea,
.st-product-reviews-card input[type=text],
.st-product-reviews-card input[type=email] {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid #d9e8e6;
  border-radius: 13px;
  outline: 0;
  background: #fff;
  font-family: inherit;
}

.st-product-reviews-card textarea {
  min-height: 140px;
  resize: vertical;
}

.st-product-reviews-card input.submit {
  min-height: 48px !important;
  padding: 10px 25px !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: var(--st-brand) !important;
  font-family: inherit !important;
  font-weight: 900 !important;
}

.st-product-related-wrap .woocommerce-tabs {
  display: none !important;
}

.st-product-related-wrap .related,
.st-product-related-wrap .upsells {
  margin-top: 58px;
}

.st-product-related-wrap .related > h2,
.st-product-related-wrap .upsells > h2 {
  margin: 0 0 24px;
  color: var(--st-ink);
  font-size: clamp(23px, 3vw, 31px);
}

/* ---------------- Empty cart ---------------- */
.woocommerce-cart .woocommerce {
  padding-top: 36px;
  padding-bottom: 95px;
}

.woocommerce-cart .woocommerce-notices-wrapper:empty {
  display: none;
}

.st-empty-cart-page {
  width: 100%;
}

.st-empty-cart-card {
  min-height: 610px;
  padding: 48px 34px 38px;
  border: 1px solid var(--st-line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--st-card-shadow);
  text-align: center;
}

.st-empty-cart-card h1 {
  margin: 0;
  color: var(--st-ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.6;
}

.st-empty-cart-card__separator {
  width: min(850px, 86%);
  height: 4px;
  margin: 32px auto 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(113, 113, 113, 0.48);
}

.st-empty-cart-card h2 {
  margin: 0 0 28px;
  color: var(--st-ink);
  font-size: clamp(22px, 3vw, 30px);
}

.st-empty-cart-card__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--st-brand), var(--st-brand-dark));
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 760px) {
  .st-empty-cart-card {
    min-height: auto;
    padding: 34px 16px 28px;
    border-radius: 23px;
  }
}
/* ---------------- Filled cart ---------------- */
.st-cart-page {
  display: grid;
  gap: 28px;
}

.st-commerce-page-header {
  min-height: 158px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: 31px 36px;
  border: 1px solid rgba(188, 219, 215, 0.75);
  border-radius: 28px;
  background: radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.8), transparent 17%), linear-gradient(135deg, #e9f9f7, #f9fdfc);
}

.st-commerce-page-header span {
  color: var(--st-brand-dark);
  font-size: 11px;
  font-weight: 900;
}

.st-commerce-page-header h1 {
  margin: 3px 0 5px;
  color: var(--st-ink);
  font-size: clamp(29px, 4vw, 42px);
}

.st-commerce-page-header p {
  margin: 0;
  color: var(--st-muted);
  font-size: 13px;
}

.st-commerce-page-header > a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 20px;
  border: 1px solid #b9dbd8;
  border-radius: 13px;
  color: var(--st-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.st-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.st-cart-items-panel,
.st-cart-summary-panel__sticky {
  border: 1px solid var(--st-line);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 43, 41, 0.055);
}

.st-cart-items-panel {
  overflow: hidden;
}

.st-cart-items {
  display: grid;
}

.st-cart-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid #e8f0ef;
}

.st-cart-item:last-child {
  border-bottom: 0;
}

.st-cart-item__media {
  overflow: hidden;
  border-radius: 18px;
  background: #f2f8f7;
}

.st-cart-item__media a,
.st-cart-item__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.st-cart-item__media img {
  aspect-ratio: 1/1;
  padding: 8px;
  background: #fff;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.st-cart-item:hover .st-cart-item__media img {
  transform: scale(1.04);
}

.st-cart-item__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.st-cart-item__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.st-cart-item__category,
.st-cart-item__category a {
  color: var(--st-brand-dark);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.st-cart-item__heading h2 {
  margin: 5px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.st-cart-item__heading h2 a {
  color: var(--st-ink);
  text-decoration: none;
}

.st-cart-item__remove,
.woocommerce a.remove.st-cart-item__remove {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ae4057 !important;
  background: #fff0f3;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.st-cart-item__remove:hover,
.woocommerce a.remove.st-cart-item__remove:hover {
  color: #fff !important;
  background: var(--st-pink);
}

.st-cart-item__main dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 15px;
  margin: 9px 0 0;
  color: var(--st-muted);
  font-size: 11px;
}

.st-cart-item__main dl.variation dt,
.st-cart-item__main dl.variation dd,
.st-cart-item__main dl.variation p {
  margin: 0;
  padding: 0;
}

.st-cart-item__footer {
  display: grid;
  grid-template-columns: minmax(105px, 0.8fr) 145px minmax(105px, 0.8fr);
  align-items: end;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px dashed #dce8e6;
}

.st-cart-item__footer > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.st-cart-item__footer span {
  color: var(--st-muted);
  font-size: 10px;
}

.st-cart-item__footer strong {
  color: var(--st-deep);
  font-size: 14px;
}

.st-cart-item__subtotal {
  text-align: left;
}

.st-cart-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-top: 1px solid #e8f0ef;
  background: #fbfefd;
}

.st-cart-coupon {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.st-cart-coupon > label {
  color: #465552;
  font-size: 11px;
  font-weight: 800;
}

.st-cart-coupon > label i {
  margin-left: 5px;
  color: var(--st-brand);
}

.st-cart-coupon > div {
  display: flex;
  gap: 8px;
}

.st-cart-coupon input.input-text {
  width: 220px !important;
  height: 44px;
  padding: 0 13px !important;
  border: 1px solid #d9e7e5;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
}

.st-cart-coupon button.button,
.st-update-cart.button {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 !important;
  padding: 8px 16px !important;
  border: 0 !important;
  border-radius: 12px !important;
  color: #fff !important;
  background: var(--st-brand) !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.st-update-cart.button {
  color: var(--st-deep) !important;
  background: #dff5f2 !important;
}

.st-cart-summary-panel__sticky {
  position: sticky;
  top: 100px;
  overflow: hidden;
  padding: 24px;
}

.st-cart-summary-panel .cart_totals {
  width: 100% !important;
  float: none !important;
}

.st-cart-summary-panel .cart_totals h2 {
  margin: 0 0 19px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7efee;
  color: var(--st-ink);
  font-size: 22px;
}

.st-cart-summary-panel .shop_table {
  margin: 0 0 20px !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 7px;
}

.st-cart-summary-panel .shop_table th,
.st-cart-summary-panel .shop_table td {
  padding: 12px 10px !important;
  border: 0 !important;
  background: #f7fbfa;
  font-size: 12px;
}

.st-cart-summary-panel .shop_table th {
  border-radius: 0 12px 12px 0;
  color: var(--st-muted);
  font-weight: 700;
}

.st-cart-summary-panel .shop_table td {
  border-radius: 12px 0 0 12px;
  color: var(--st-deep);
  font-weight: 900;
  text-align: left;
}

.st-cart-summary-panel .order-total th,
.st-cart-summary-panel .order-total td {
  color: #fff;
  background: var(--st-deep);
}

.st-cart-summary-panel .order-total strong {
  color: #fff;
}

.st-cart-summary-panel .wc-proceed-to-checkout {
  padding: 0;
}

.st-cart-summary-panel .checkout-button,
.woocommerce .st-cart-summary-panel a.checkout-button.button.alt {
  min-height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px 20px !important;
  border-radius: 14px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--st-brand), var(--st-brand-dark)) !important;
  box-shadow: 0 12px 25px rgba(22, 183, 177, 0.22);
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.st-cart-summary-trust {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e7efee;
}

.st-cart-summary-trust > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-cart-summary-trust > div > i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--st-brand-dark);
  background: var(--st-mint);
}

.st-cart-summary-trust span {
  display: grid;
  gap: 2px;
}

.st-cart-summary-trust strong {
  color: #3d4c49;
  font-size: 10px;
}

.st-cart-summary-trust small {
  color: var(--st-muted);
  font-size: 8px;
}

.st-cart-cross-sells {
  margin-top: 17px;
}

.st-cart-cross-sells .cross-sells {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--st-line);
  border-radius: 28px;
  background: #fff;
}

.st-cart-cross-sells .cross-sells > h2 {
  margin: 0 0 23px;
  color: var(--st-ink);
  font-size: 25px;
}

/* Cross-sell grids and card visuals are centralized in shop/_products.scss and components/_product-card.scss. */
/* ---------------- Account: logged in ---------------- */
.woocommerce-account .woocommerce {
  padding-top: 36px;
  padding-bottom: 95px;
}

.st-account-page {
  display: grid;
  gap: 25px;
}

.st-commerce-page-header--account {
  background: radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.72), transparent 18%), linear-gradient(135deg, #e8f8f6, #fff8f3);
}

.st-account-header-user {
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(181, 215, 211, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.75);
}

.st-account-header-user img {
  width: 54px;
  height: 54px;
  border-radius: 15px;
}

.st-account-header-user > div {
  display: grid;
  gap: 3px;
}

.st-account-header-user small {
  color: var(--st-muted);
  font-size: 10px;
}

.st-account-header-user strong {
  max-width: 140px;
  overflow: hidden;
  color: var(--st-ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.st-account-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.st-account-nav,
.woocommerce-account .woocommerce-MyAccount-navigation.st-account-nav {
  width: auto;
  float: none;
  overflow: hidden;
  border: 1px solid var(--st-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(0, 43, 41, 0.055);
}

.st-account-nav__title {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px;
  border-bottom: 1px solid #e8f0ef;
  background: #f7fbfa;
}

.st-account-nav__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--st-brand);
}

.st-account-nav__title > div {
  display: grid;
  gap: 2px;
}

.st-account-nav__title small {
  color: var(--st-muted);
  font-size: 9px;
}

.st-account-nav__title strong {
  color: var(--st-ink);
  font-size: 13px;
}

.st-account-nav ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  list-style: none;
}

.st-account-nav li {
  margin: 0;
}

.st-account-nav li a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 12px;
  color: #53625f;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.st-account-nav li a > i:first-child {
  color: #86aaa6;
  text-align: center;
}

.st-account-nav__arrow {
  color: #afc2c0;
  font-size: 9px;
}

.st-account-nav li.is-active a,
.st-account-nav li a:hover {
  color: var(--st-deep);
  background: var(--st-mint);
}

.st-account-nav li.is-active a > i:first-child {
  color: var(--st-brand-dark);
}

.st-account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #a73e55;
}

.st-account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a > i:first-child {
  color: #d06b81;
}

.st-account-content,
.woocommerce-account .woocommerce-MyAccount-content.st-account-content {
  width: auto;
  min-width: 0;
  float: none;
  padding: 27px;
  border: 1px solid var(--st-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(0, 43, 41, 0.055);
}

.st-account-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e8f8f6, #f8fcfb);
}

.st-account-welcome span {
  color: var(--st-brand-dark);
  font-size: 11px;
  font-weight: 900;
}

.st-account-welcome h2 {
  margin: 4px 0 7px;
  color: var(--st-ink);
  font-size: 24px;
}

.st-account-welcome p {
  max-width: 590px;
  margin: 0;
  color: var(--st-muted);
  font-size: 12px;
  line-height: 1.9;
}

.st-account-welcome > a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px;
  border-radius: 12px;
  color: #fff;
  background: var(--st-deep);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.st-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 18px;
}

.st-account-stats > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e3eeec;
  border-radius: 17px;
  color: var(--st-ink);
  background: #fbfefd;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.st-account-stats > a:hover {
  border-color: #acd8d4;
  transform: translateY(-3px);
}

.st-account-stats__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--st-brand-dark);
  background: var(--st-mint);
}

.st-account-stats > a > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.st-account-stats strong {
  overflow: hidden;
  color: var(--st-ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.st-account-stats small {
  overflow: hidden;
  color: var(--st-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.st-account-stats > a > i {
  color: #a4b9b6;
  font-size: 9px;
}

/* Account endpoints, tables, forms */
.st-account-content > p:first-child {
  margin-top: 0;
}

.st-account-content a {
  color: #00cdc5;
}

.st-account-content .woocommerce-Orders-table,
.st-account-content .woocommerce-table,
.st-account-content table.shop_table {
  overflow: hidden;
  margin: 18px 0 !important;
  border: 1px solid #e0ecea !important;
  border-radius: 16px !important;
  border-collapse: separate !important;
  border-spacing: 0;
}

.st-account-content table th,
.st-account-content table td {
  padding: 14px !important;
  border-color: #e7efee !important;
  font-size: 12px;
  text-align: right !important;
}

.st-account-content table th {
  color: #50605d;
  background: #f3f9f8;
}

.st-account-content .button,
.st-account-content button.button,
.st-account-content input.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px !important;
  border: 0 !important;
  border-radius: 11px !important;
  color: #fff !important;
  background: var(--st-brand) !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.st-account-content .woocommerce-Address {
  width: calc(50% - 8px) !important;
  min-height: 220px;
  float: none !important;
  display: inline-block;
  margin: 7px;
  padding: 22px;
  vertical-align: top;
  border: 1px solid #e1ecea;
  border-radius: 18px;
  background: #fbfefd;
}

.st-account-content .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.st-account-content .woocommerce-Address-title h2 {
  margin: 0;
  color: var(--st-ink);
  font-size: 18px;
}

.st-account-content address {
  color: var(--st-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 2;
}

.st-account-content form .form-row {
  margin-bottom: 16px;
}

.st-account-content form label {
  display: block;
  margin-bottom: 7px;
  color: #465653;
  font-size: 11px;
  font-weight: 800;
}

.st-account-content form input.input-text,
.st-account-content form select,
.st-account-content form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #d8e7e5;
  border-radius: 12px;
  outline: 0;
  color: var(--st-ink);
  background: #fbfefd;
  font-family: inherit;
}

.st-account-content form textarea {
  min-height: 120px;
}

.st-account-content fieldset {
  margin: 25px 0;
  padding: 20px;
  border: 1px solid #dfecea;
  border-radius: 17px;
}

.st-account-content fieldset legend {
  padding: 0 10px;
  color: var(--st-deep);
  font-size: 13px;
  font-weight: 900;
}

/* ---------------- Login / register ---------------- */
.woocommerce-account:not(.logged-in) .woocommerce {
  width: min(1180px, 100% - 40px);
}

.st-auth-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: stretch;
}

.st-auth-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(31px, 5vw, 54px);
  border-radius: 30px;
  color: #fff;
  background: radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12), transparent 25%), linear-gradient(145deg, var(--st-deep), #08645f);
  box-shadow: 0 22px 55px rgba(0, 43, 41, 0.18);
}

.st-auth-intro::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -80px;
  left: -70px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.035), 0 0 0 76px rgba(255, 255, 255, 0.025);
}

.st-auth-intro__eyebrow {
  position: relative;
  z-index: 1;
  color: #a9eeea;
  font-size: 11px;
  font-weight: 900;
}

.st-auth-intro h1 {
  position: relative;
  z-index: 1;
  margin: 8px 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.55;
}

.st-auth-intro > p {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 2;
}

.st-auth-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.st-auth-benefits > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
}

.st-auth-benefits > div > i {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--st-deep);
  background: #b7eeea;
}

.st-auth-benefits span {
  display: grid;
  gap: 3px;
}

.st-auth-benefits strong {
  color: #fff;
  font-size: 11px;
}

.st-auth-benefits small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8.5px;
}

.st-auth-forms {
  display: grid;
  gap: 18px;
}

.st-auth-forms.has-registration {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.st-auth-card {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--st-line);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 43, 41, 0.055);
}

.st-auth-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8f0ef;
}

.st-auth-card__heading > span {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--st-brand-dark);
  background: var(--st-mint);
}

.st-auth-card__heading > div {
  display: grid;
  gap: 2px;
}

.st-auth-card__heading small {
  color: var(--st-muted);
  font-size: 9px;
}

.st-auth-card__heading h2 {
  margin: 0;
  color: var(--st-ink);
  font-size: 20px;
}

.st-auth-card form {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.st-auth-card .form-row {
  margin: 0 0 15px !important;
  padding: 0 !important;
}

.st-auth-card label {
  display: block;
  margin-bottom: 7px;
  color: #485754;
  font-size: 10px;
  font-weight: 800;
}

.st-form-field-icon {
  position: relative;
  display: block;
}

.st-form-field-icon > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 14px;
  color: #91aaa7;
  font-size: 13px;
  transform: translateY(-50%);
}

.st-auth-card input.input-text {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 13px !important;
  border: 1px solid #d8e6e4;
  border-radius: 12px;
  outline: 0;
  background: #fbfefd;
  font-family: inherit;
  font-size: 12px;
}

.st-auth-card input.input-text:focus {
  border-color: var(--st-brand);
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.1);
}

.st-auth-card__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 4px 0 18px;
}

.st-auth-card__options label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 9px;
}

.st-auth-card__options a {
  color: var(--st-brand-dark);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.st-auth-card .woocommerce-button.button {
  width: 100%;
  min-height: 49px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 !important;
  padding: 9px 18px !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--st-brand), var(--st-brand-dark)) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.st-auth-card--register .woocommerce-button.button {
  background: var(--st-deep) !important;
}

.st-auth-auto-password {
  padding: 12px 13px;
  border-radius: 11px;
  color: #5e6c69;
  background: #f3f9f8;
  font-size: 10px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1100px) {
  .st-cart-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  }
  .st-empty-cart-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .st-account-stats {
    grid-template-columns: 1fr;
  }
  .st-auth-page {
    grid-template-columns: 1fr;
  }
  .st-auth-intro {
    min-height: auto;
  }
}
@media (max-width: 920px) {
  .st-single-product__gallery,
  .st-product-detail-card--specs,
  .st-cart-summary-panel__sticky {
    position: static;
  }
  .st-product-detail-grid,
  .st-cart-layout,
  .st-account-shell {
    grid-template-columns: 1fr;
  }
  .st-account-nav ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .st-account-nav li a {
    grid-template-columns: 25px minmax(0, 1fr);
  }
  .st-account-nav__arrow {
    display: none;
  }
}
@media (max-width: 720px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-account .woocommerce,
  .woocommerce-account:not(.logged-in) .woocommerce {
    width: min(100% - 24px, 1220px);
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .st-single-product__hero {
    padding-top: 20px;
  }
  .st-single-product__gallery,
  .st-single-product__summary,
  .woocommerce div.product .st-single-product__summary,
  .st-product-detail-card,
  .st-product-reviews-card {
    border-radius: 21px;
  }
  .st-single-product__summary,
  .woocommerce div.product .st-single-product__summary {
    padding: 22px;
  }
  .woocommerce div.product .st-single-product__summary form.cart,
  .st-single-product__summary .variations_form .woocommerce-variation-add-to-cart {
    align-items: stretch;
    flex-direction: column;
  }
  .woocommerce div.product .st-single-product__summary .single_add_to_cart_button {
    width: 100%;
    min-width: 0;
  }
  .st-single-product__summary .st-quantity-control {
    width: 100% !important;
    grid-template-columns: 46px minmax(50px, 1fr) 46px;
  }
  .st-product-detail-card__heading {
    padding: 19px;
  }
  .st-product-detail-card__content,
  .st-product-reviews-card #reviews {
    padding: 20px;
  }
  .st-product-reviews-card #reviews ol.commentlist li .comment-text {
    margin: 60px 0 0;
  }
  .st-commerce-page-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    border-radius: 21px;
  }
  .st-empty-cart-card {
    min-height: 400px;
    border-radius: 24px;
  }
  .st-empty-cart-categories {
    padding: 20px;
    border-radius: 22px;
  }
  .st-empty-cart-categories__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .st-empty-cart-categories__grid {
    grid-template-columns: 1fr;
  }
  .st-cart-item {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .st-cart-item__footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .st-cart-item__subtotal {
    text-align: right;
  }
  .st-cart-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .st-cart-coupon > div {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .st-cart-coupon input.input-text {
    width: 100% !important;
  }
  .st-update-cart.button {
    width: 100%;
  }
  .st-account-header-user {
    width: 100%;
  }
  .st-account-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .st-account-content,
  .woocommerce-account .woocommerce-MyAccount-content.st-account-content {
    padding: 19px;
    border-radius: 20px;
  }
  .st-account-welcome {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .st-account-content .woocommerce-Address {
    width: 100% !important;
    margin: 7px 0;
  }
  .st-auth-forms.has-registration {
    grid-template-columns: 1fr;
  }
  .st-auth-intro,
  .st-auth-card {
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .st-cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .st-cart-item__heading h2 {
    font-size: 14px;
  }
  .st-cart-item__remove,
  .woocommerce a.remove.st-cart-item__remove {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  .st-cart-item__footer {
    grid-column: 1/-1;
  }
  .st-account-nav ul {
    grid-template-columns: 1fr;
  }
  .st-auth-card__options {
    align-items: flex-start;
    flex-direction: column;
  }
}
.st-quantity-control--static {
  width: 70px !important;
  display: grid !important;
  grid-template-columns: 1fr;
  place-items: center;
  color: var(--st-ink);
  background: #f4f9f8;
  font-size: 14px;
  font-weight: 900;
}

/* ==========================================================
   SiXThem commerce polish v3
   Product choices, purchase box, notices and account actions
   ========================================================== */
/* Explicit purchase area on the single-product page. */
.st-single-product__purchase {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid #d9e9e7;
  border-radius: 19px;
  background: linear-gradient(145deg, #fbfefd, #f1faf8);
  box-shadow: 0 12px 32px rgba(0, 43, 41, 0.055);
}

.st-single-product__purchase-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.st-single-product__purchase-heading > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--st-brand), var(--st-brand-dark));
  box-shadow: 0 9px 20px rgba(22, 183, 177, 0.22);
}

.st-single-product__purchase-heading > div {
  display: grid;
  gap: 2px;
}

.st-single-product__purchase-heading small {
  color: var(--st-muted);
  font-size: 10px;
}

.st-single-product__purchase-heading strong {
  color: var(--st-ink);
  font-size: 14px;
}

.woocommerce div.product .st-single-product__purchase form.cart {
  margin: 0;
  padding: 0;
  border: 0;
}

.woocommerce div.product .st-single-product__purchase .single_add_to_cart_button,
.woocommerce div.product .st-single-product__purchase button.single_add_to_cart_button.button.alt {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1;
}

.st-product-purchase-unavailable {
  display: grid;
  gap: 9px;
}

.st-product-purchase-unavailable .single_add_to_cart_button {
  width: 100%;
  min-width: 0 !important;
}

.st-product-purchase-unavailable small {
  color: var(--st-muted);
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

/* Three reusable choices configured in the WooCommerce product editor. */
.st-product-choice {
  width: 100%;
  margin: 0 0 17px;
  padding: 0;
  border: 0;
}

.st-product-choice legend {
  display: block;
  margin-bottom: 10px;
  color: var(--st-ink);
  font-size: 13px;
  font-weight: 900;
}

.st-product-choice legend span {
  color: var(--st-pink);
}

.st-product-choice__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.st-product-choice__options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.st-product-choice__options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.st-product-choice__options span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #d6e6e3;
  border-radius: 13px;
  color: #52625f;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.st-product-choice__options input:checked + span {
  border-color: var(--st-brand);
  color: var(--st-deep);
  background: var(--st-mint);
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.11);
}

.st-product-choice__options input:focus-visible + span {
  outline: 2px solid var(--st-brand);
  outline-offset: 2px;
}

.st-product-choice > small {
  display: block;
  margin-top: 8px;
  color: #80908d;
  font-size: 9px;
}

/* Better variable-product attribute controls. */
.st-single-product__summary .variations_form .variations {
  display: grid;
  gap: 13px;
  margin: 0 0 15px !important;
  padding: 16px;
  border: 1px solid #dceae8;
  border-radius: 16px;
  background: #fbfefd;
}

.st-single-product__summary .variations_form .variations tbody,
.st-single-product__summary .variations_form .variations tr {
  display: grid;
  gap: 6px;
}

.st-single-product__summary .variations_form .variations td,
.st-single-product__summary .variations_form .variations th {
  width: 100%;
  display: block;
  padding: 0 !important;
}

.st-single-product__summary .variations_form .variations select {
  width: 100%;
  min-height: 49px;
  padding-inline: 14px 42px;
  border: 1px solid #cfe1df;
  border-radius: 13px;
  color: var(--st-ink);
  background-color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
}

.st-single-product__summary .variations_form .reset_variations {
  margin-top: 7px;
  color: var(--st-pink);
  font-size: 10px;
  font-weight: 800;
}

.st-single-product__summary .woocommerce-variation-description,
.st-single-product__summary .woocommerce-variation-price,
.st-single-product__summary .woocommerce-variation-availability {
  margin-bottom: 10px;
}

/* WooCommerce notifications with a clear modern RTL layout. */
.woocommerce-notices-wrapper {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 !important;
  padding: 15px 64px 15px 18px !important;
  border: 1px solid #dceae8 !important;
  border-right: 5px solid var(--st-brand) !important;
  border-top: 1px solid #dceae8 !important;
  border-radius: 17px !important;
  color: #34423f !important;
  background: linear-gradient(135deg, #fff, #f7fcfb) !important;
  box-shadow: 0 12px 32px rgba(0, 43, 41, 0.065) !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
  list-style: none !important;
}

.woocommerce-message {
  border-right-color: #19a974 !important;
  background: linear-gradient(135deg, #fff, #f1fbf7) !important;
}

.woocommerce-info {
  border-right-color: #2e8ed8 !important;
  background: linear-gradient(135deg, #fff, #f2f8fe) !important;
}

.woocommerce-error {
  display: grid;
  border-right-color: var(--st-pink) !important;
  background: linear-gradient(135deg, #fff, #fff4f6) !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: absolute !important;
  top: 50% !important;
  right: 17px !important;
  left: auto !important;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff !important;
  background: var(--st-brand);
  transform: translateY(-50%);
}

.woocommerce-message::before {
  background: #19a974;
}

.woocommerce-info::before {
  background: #2e8ed8;
}

.woocommerce-error::before {
  background: var(--st-pink);
}

.woocommerce-error li {
  margin: 0;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  float: none !important;
  margin-inline-start: auto !important;
  padding: 7px 14px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: var(--st-deep) !important;
  font-family: inherit !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-decoration: none !important;
}

/* Account actions: centered browse button and polished address actions. */
.st-account-welcome > a {
  justify-content: center;
  text-align: center;
}

.st-account-content .woocommerce-Message .woocommerce-Button,
.st-account-content .woocommerce-info .button,
.st-account-content .woocommerce-message .button {
  justify-content: center;
  text-align: center;
}

.st-account-content .woocommerce-Address-title a.edit {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  float: none;
  padding: 7px 13px;
  border: 1px solid #bfe1dd;
  border-radius: 11px;
  color: var(--st-deep);
  background: var(--st-mint);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.st-account-content .woocommerce-Address-title a.edit::before {
  content: "\f304";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.st-account-content .woocommerce-Address-title a.edit:hover {
  color: #fff;
  background: var(--st-brand-dark);
  transform: translateY(-1px);
}

.st-account-content .woocommerce-address-fields button.button,
.st-account-content form button[name=save_address] {
  min-width: 170px;
  min-height: 48px;
  gap: 8px;
  box-shadow: 0 11px 24px rgba(22, 183, 177, 0.2);
}

.st-account-content .woocommerce-address-fields button.button::before,
.st-account-content form button[name=save_address]::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@media (max-width: 720px) {
  .st-product-choice__options {
    grid-template-columns: 1fr;
  }
  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 58px 16px 15px !important;
  }
  .woocommerce-message .button,
  .woocommerce-info .button,
  .woocommerce-error .button {
    width: 100%;
    margin-inline-start: 0 !important;
  }
  .st-account-content .woocommerce-Address-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .st-account-content .woocommerce-Address-title a.edit {
    width: 100%;
  }
}
/* ===== Category + account follow-up fixes ===== */
.woocommerce-account:not(.logged-in) .st-auth-forms.has-registration {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.woocommerce-account:not(.logged-in) .st-auth-card {
  padding: clamp(24px, 3vw, 34px);
}

.woocommerce-account:not(.logged-in) .st-auth-card label {
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 1.7;
}

.woocommerce-account:not(.logged-in) .st-auth-card .st-form-field-icon {
  min-height: 58px;
}

.woocommerce-account:not(.logged-in) .st-auth-card .st-form-field-icon > i {
  right: 18px;
  font-size: 15px;
}

.woocommerce-account:not(.logged-in) .st-auth-card input.input-text,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=text],
.woocommerce-account:not(.logged-in) .st-auth-card input[type=email],
.woocommerce-account:not(.logged-in) .st-auth-card input[type=password] {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 50px 0 17px !important;
  border: 1px solid #cfe0de !important;
  border-radius: 16px !important;
  color: var(--st-ink) !important;
  background: #f8fcfb !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  box-shadow: inset 0 1px 2px rgba(0, 43, 41, 0.025);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.woocommerce-account:not(.logged-in) .st-auth-card input.input-text:hover,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=text]:hover,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=email]:hover,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=password]:hover {
  border-color: #9fc9c5 !important;
  background: #fff !important;
}

.woocommerce-account:not(.logged-in) .st-auth-card input.input-text:focus,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=text]:focus,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=email]:focus,
.woocommerce-account:not(.logged-in) .st-auth-card input[type=password]:focus {
  border-color: var(--st-brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(22, 183, 177, 0.12) !important;
}

.woocommerce-account:not(.logged-in) .st-auth-card .woocommerce-button.button {
  min-height: 56px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
}

@media (max-width: 900px) {
  .woocommerce-account:not(.logged-in) .st-auth-forms.has-registration {
    grid-template-columns: 1fr;
  }
}
/* ----------------------------------------------------------
   Standard content, comments and 404 refinements
---------------------------------------------------------- */
.st-comments,
.st-error-card {
  width: min(100%, 900px);
  margin: 60px auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #efefef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-comments__title {
  margin: 0 0 24px;
  font-size: clamp(21px, 3vw, 29px);
}

.st-comments__list {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.st-comments__list .comment-body {
  padding: 18px;
  border: 1px solid #efefef;
  border-radius: 18px;
  background: #fbfdfd;
}

.st-error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  background: #f6fbfb;
}

.st-error-card {
  margin-block: 0;
  text-align: center;
}

.st-error-card__code {
  display: block;
  color: #16b7b1;
  font-size: clamp(70px, 14vw, 140px);
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
}

.st-error-card h1 {
  margin: -20px 0 12px;
  font-size: clamp(28px, 5vw, 44px);
}

.st-error-card p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2;
}

.st-error-card__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ----------------------------------------------------------
   Default content/archive templates
---------------------------------------------------------- */
.st-content-archive,
.st-single-content {
  min-height: 60vh;
  padding: clamp(42px, 6vw, 78px) 0;
  background: #f6fbfb;
}

.st-content-archive__header,
.st-single-content__header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.st-content-archive__header > span,
.st-single-content__header time,
.st-content-card time {
  color: #002b29;
  font-size: 12px;
  font-weight: 800;
}

.st-content-archive__header h1,
.st-single-content__header h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.5;
}

.st-content-archive__header > div {
  margin-top: 12px;
  color: rgba(63, 63, 63, 0.8156862745);
  line-height: 2;
}

.st-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.st-content-card {
  overflow: hidden;
  border: 1px solid #efefef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-content-card__media {
  aspect-ratio: 16/10;
  display: block;
  overflow: hidden;
  background: #d7f8f5;
}

.st-content-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.st-content-card:hover .st-content-card__media img {
  transform: scale(1.04);
}

.st-content-card__body {
  padding: 22px;
}

.st-content-card h2 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.8;
}

.st-content-card h2 a {
  color: #141414;
  text-decoration: none;
}

.st-content-card__body > div {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 13px;
  line-height: 2;
}

.st-content-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #002b29;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.st-content-pagination {
  margin-top: 34px;
}

.st-content-pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.st-content-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 7px 12px;
  border: 1px solid #efefef;
  border-radius: 12px;
  color: #141414;
  background: #fff;
  text-decoration: none;
}

.st-content-pagination .page-numbers.current,
.st-content-pagination a.page-numbers:hover {
  border-color: #16b7b1;
  color: #fff;
  background: #16b7b1;
}

.st-content-empty,
.st-single-content__article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #efefef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-content-empty {
  text-align: center;
}

.st-content-empty > i {
  color: #16b7b1;
  font-size: 48px;
}

.st-content-empty form.search-form {
  max-width: 520px;
  margin: 22px auto 0;
}

.st-single-content__article {
  padding: 0;
  overflow: hidden;
}

.st-single-content__header {
  padding: clamp(28px, 5vw, 56px) clamp(22px, 5vw, 64px) 24px;
}

.st-single-content__media {
  width: calc(100% - clamp(32px, 7vw, 80px));
  max-height: 560px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 22px;
  background: #d7f8f5;
}

.st-single-content__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.st-single-content__body {
  padding: clamp(26px, 5vw, 64px);
  color: #141414;
  font-size: 15px;
  line-height: 2.2;
}

.st-single-content__body img {
  max-width: 100%;
  height: auto;
}

.st-single-content__nav {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 18px auto 0;
}

.st-single-content__nav a {
  padding: 10px 16px;
  border: 1px solid #efefef;
  border-radius: 12px;
  color: #002b29;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .st-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 580px) {
  .st-content-grid {
    grid-template-columns: 1fr;
  }
}
.st-shop {
  flex: 1;
  background: #f6fbfb;
  color: #141414;
}

.st-shop-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 68px;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.25) 0 7%, transparent 7.5%), linear-gradient(135deg, #002b29 0%, #075b57 46%, #16b7b1 100%);
  color: #fff;
}

.st-shop-hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -110px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.st-shop-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
}

.st-shop-breadcrumb a,
.st-shop-breadcrumb span {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.st-shop-breadcrumb a:hover,
.st-shop-breadcrumb span:last-child {
  color: #fff;
}

.st-shop-breadcrumb i {
  font-size: 10px;
  opacity: 0.65;
}

.st-shop-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.st-shop-hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #27ffc9;
  font-size: 14px;
  font-weight: 700;
}

.st-shop-hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.35;
}

.st-shop-hero__description {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 2;
}

.st-shop-hero__description p:last-child {
  margin-bottom: 0;
}

.st-shop-hero__icon {
  flex: 0 0 104px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transform: rotate(-6deg);
}

.st-shop-hero__icon i {
  color: #27ffc9;
  font-size: 44px;
}

.st-shop-categories {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding-bottom: 44px;
}

.st-shop-categories .st-container {
  padding: 25px;
  border: 1px solid rgba(22, 183, 177, 0.12);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 43, 41, 0.09);
}

.st-shop-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.st-shop-section-heading span {
  display: block;
  margin-bottom: 6px;
  color: #16b7b1;
  font-size: 13px;
  font-weight: 700;
}

.st-shop-section-heading h2 {
  margin: 0;
  font-size: 23px;
}

.st-shop-section-heading > a {
  color: #002b29;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.st-shop-section-heading > a:hover {
  color: #16b7b1;
}

.st-shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.st-shop-category {
  min-width: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #efefef;
  border-radius: 18px;
  color: #141414;
  background: #fbfdfd;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.st-shop-category:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 183, 177, 0.38);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-shop-category__image {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 14px;
  background: #d7f8f5;
}

.st-shop-category__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.st-shop-category:hover .st-shop-category__image img {
  transform: scale(1.08);
}

.st-shop-category__content {
  min-width: 0;
}

.st-shop-category__content strong,
.st-shop-category__content small {
  display: block;
}

.st-shop-category__content strong {
  overflow: hidden;
  margin-bottom: 5px;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.st-shop-category__content small {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 12px;
}

.st-shop-category > i {
  color: #16b7b1;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.st-shop-category:hover > i {
  transform: translateX(-4px);
}

@media (max-width: 1100px) {
  .st-shop-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .st-shop-hero {
    padding: 38px 0 68px;
  }
  .st-shop-hero__content {
    align-items: flex-start;
  }
  .st-shop-hero__icon {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
    border-radius: 24px;
  }
  .st-shop-hero__icon i {
    font-size: 34px;
  }
  .st-shop-categories .st-container {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .st-shop-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  .st-shop-hero__icon {
    display: none;
  }
  .st-shop-categories__grid {
    grid-template-columns: 1fr;
  }
}
.st-shop-products {
  padding: 0 0 68px;
}

.st-shop-layout {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.st-shop-sidebar {
  position: sticky;
  top: 24px;
  padding: 21px;
  border: 1px solid #efefef;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-shop-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #efefef;
}

.st-shop-sidebar__header h2 {
  margin: 0;
  font-size: 20px;
}

.st-shop-sidebar__header button {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #141414;
  background: #f0f7f6;
  cursor: pointer;
}

.st-shop-widget {
  padding: 22px 0;
  border-bottom: 1px solid #efefef;
}

.st-shop-widget:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.st-shop-widget__title,
.st-shop-widget .widget-title {
  position: relative;
  margin: 0 0 18px;
  padding-right: 15px;
  font-size: 16px;
}

.st-shop-widget__title::before,
.st-shop-widget .widget-title::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 6px;
  height: 18px;
  border-radius: 10px;
  background: #16b7b1;
  transform: translateY(-50%);
}

.st-shop-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-shop-widget li {
  margin: 0 0 11px;
}

.st-shop-widget li:last-child {
  margin-bottom: 0;
}

.st-shop-widget li a {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.st-shop-widget li a:hover,
.st-shop-widget li.current-cat > a {
  color: #16b7b1;
}

.st-shop-widget .count {
  float: left;
  min-width: 25px;
  padding: 1px 7px;
  border-radius: 12px;
  color: rgba(63, 63, 63, 0.8156862745);
  background: #eff7f6;
  font-size: 11px;
  text-align: center;
}

.st-shop-widget .children {
  padding: 10px 14px 0 0;
}

.st-shop-widget .woocommerce-product-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.st-shop-widget .woocommerce-product-search input {
  min-width: 0;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #efefef;
  border-radius: 13px;
  outline: none;
  font-family: inherit;
}

.st-shop-widget .woocommerce-product-search input:focus {
  border-color: #16b7b1;
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.12);
}

.st-shop-widget .woocommerce-product-search button {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  color: transparent;
  background: #16b7b1;
  cursor: pointer;
  position: relative;
}

.st-shop-widget .woocommerce-product-search button::before {
  content: "\f002";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font: 900 15px/1 "Font Awesome 6 Free";
}

.st-shop-widget .price_slider_wrapper .ui-widget-content {
  position: relative;
  height: 5px;
  margin: 10px 0 22px;
  border-radius: 10px;
  background: #e5efee;
}

.st-shop-widget .price_slider_wrapper .ui-slider-range {
  background: #16b7b1;
}

.st-shop-widget .price_slider_wrapper .ui-slider-handle {
  position: absolute;
  top: -6px;
  width: 17px;
  height: 17px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #16b7b1;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
}

.st-shop-widget .price_slider_amount {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 12px;
}

.st-shop-widget .price_slider_amount .button {
  order: 2;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #16b7b1;
  font-family: inherit;
  cursor: pointer;
}

.st-shop-widget .price_label {
  order: 1;
  flex: 1 1 100%;
}

.st-shop-status-filter {
  display: grid;
  gap: 12px;
}

.st-shop-status-filter a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 14px;
  text-decoration: none;
}

.st-shop-check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #cad8d7;
  border-radius: 6px;
  color: transparent;
  background: #fff;
  font-size: 10px;
  transition: all 0.3s ease;
}

.st-shop-status-filter a.is-active {
  color: #002b29;
  font-weight: 600;
}

.st-shop-status-filter a.is-active .st-shop-check {
  border-color: #16b7b1;
  color: #fff;
  background: #16b7b1;
}

.st-shop-filter-overlay {
  display: none;
}

@media (max-width: 991px) {
  .st-shop-layout {
    grid-template-columns: 1fr;
  }
  .st-shop-sidebar {
    position: fixed;
    z-index: 1002;
    inset: 0 auto 0 0;
    width: min(360px, 100vw - 44px);
    max-height: 100vh;
    overflow-y: auto;
    border-radius: 0 26px 26px 0;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.18);
    transform: translateX(-105%);
    transition: transform 0.35s ease;
  }
  [dir=rtl] .st-shop-sidebar {
    inset: 0 0 0 auto;
    border-radius: 26px 0 0 26px;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
  }
  .st-shop-sidebar__header button {
    display: grid;
  }
  .st-shop-filter-overlay {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 25, 24, 0.48);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  body.st-shop-filter-open {
    overflow: hidden;
  }
  body.st-shop-filter-open .st-shop-sidebar {
    transform: translateX(0);
  }
  body.st-shop-filter-open .st-shop-filter-overlay {
    visibility: visible;
    opacity: 1;
  }
}
/* Product-card layout and visuals live only in components/_product-card.scss. */
.st-shop-pagination {
  margin-top: 38px;
}

.st-shop-pagination .woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  border: 0;
}

.st-shop-pagination .woocommerce-pagination ul.page-numbers li {
  float: none;
  overflow: visible;
  border: 0;
}

.st-shop-pagination .page-numbers a,
.st-shop-pagination .page-numbers span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  padding: 0 !important;
  border: 1px solid #efefef;
  border-radius: 13px;
  color: #141414;
  background: #fff;
  text-decoration: none;
}

.st-shop-pagination .page-numbers a:hover,
.st-shop-pagination .page-numbers span.current {
  border-color: #16b7b1;
  color: #fff;
  background: #16b7b1;
}

.st-shop-empty {
  padding: 70px 25px;
  border: 1px solid #efefef;
  border-radius: 28px;
  background: #fff;
  text-align: center;
}

.st-shop-empty > i {
  margin-bottom: 20px;
  color: #16b7b1;
  font-size: 58px;
}

.st-shop-empty h2 {
  margin-bottom: 10px;
}

.st-shop-empty p {
  margin-bottom: 24px;
  color: rgba(63, 63, 63, 0.8156862745);
}

.st-shop-main {
  min-width: 0;
}

.st-shop-toolbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid #efefef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-shop-toolbar__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.st-shop-toolbar .woocommerce-result-count,
.st-shop-toolbar .woocommerce-ordering {
  float: none;
  margin: 0;
}

.st-shop-toolbar .woocommerce-result-count {
  color: rgba(63, 63, 63, 0.8156862745);
  font-size: 13px;
}

.st-shop-toolbar .woocommerce-ordering select {
  min-width: 190px;
  height: 46px;
  padding: 0 15px 0 38px;
  border: 1px solid #efefef;
  border-radius: 14px;
  color: #141414;
  background-color: #f9fbfb;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.st-shop-toolbar .woocommerce-ordering select:focus {
  border-color: #16b7b1;
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.12);
}

.st-shop-filter-button {
  height: 44px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: #16b7b1;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 991px) {
  .st-shop-filter-button {
    display: inline-flex;
  }
}
@media (max-width: 620px) {
  .st-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .st-shop-toolbar__info {
    justify-content: space-between;
  }
  .st-shop-toolbar .woocommerce-ordering,
  .st-shop-toolbar .woocommerce-ordering select {
    width: 100%;
  }
}
.st-policy-page {
  --st-policy-primary: #14b4ad;
  --st-policy-dark: #0a7470;
  --st-policy-text: #173c39;
  --st-policy-muted: #6c8380;
  --st-policy-border: #dbeae8;
  --st-policy-soft: #f2faf9;
  direction: rtl;
  padding-bottom: 20px;
  background: linear-gradient(180deg, #f3faf9 0, #fff 390px);
}

.st-policy-page__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(65px, 9vw, 110px) 20px clamp(90px, 11vw, 135px);
  color: #fff;
  background: radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.18), transparent 20%), radial-gradient(circle at 88% 70%, rgba(132, 255, 214, 0.18), transparent 24%), linear-gradient(135deg, #0b7772, #18bdb5);
}

.st-policy-page__hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -110px;
  width: 116%;
  height: 155px;
  border-radius: 50% 50% 0 0;
  background: #f3faf9;
}

.st-policy-page__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
}

.st-policy-page__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  flex: 0 0 82px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  color: #08736e;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 70, 66, 0.18);
  font-size: 31px;
}

.st-policy-page__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #c8fff0;
  font-size: 13px;
  font-weight: 900;
}

.st-policy-page__hero h1 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(31px, 4.2vw, 54px);
  font-weight: 950;
}

.st-policy-page__hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.st-policy-page__container {
  position: relative;
  z-index: 2;
  width: min(100% - 30px, 1180px);
  margin: -62px auto 0;
}

.st-policy-page__content {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--st-policy-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(11, 86, 81, 0.1);
}

.st-policy-intro,
.st-faq-intro {
  margin-bottom: 30px;
  padding: 19px 22px;
  border: 1px solid #cce7e4;
  border-right: 5px solid var(--st-policy-primary);
  border-radius: 17px;
  color: #3d5c59;
  background: linear-gradient(110deg, #edf9f7, #f8fdfc);
  line-height: 2.15;
}

.st-policy-intro p,
.st-faq-intro p {
  margin: 0;
}

.st-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.st-policy-card {
  display: grid;
  gap: 13px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--st-policy-border);
  border-radius: 19px;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.st-policy-card:hover {
  border-color: #abdcd8;
  box-shadow: 0 12px 30px rgba(18, 116, 109, 0.08);
  transform: translateY(-3px);
}

.st-policy-card > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--st-policy-dark);
  background: #ddf6f3;
  font-weight: 900;
}

.st-policy-card h2,
.st-policy-sections h2 {
  margin: 0 0 8px;
  color: var(--st-policy-text);
  font-size: 17px;
  font-weight: 900;
}

.st-policy-card p,
.st-policy-sections p {
  margin: 0;
  color: var(--st-policy-muted);
  font-size: 13px;
  line-height: 2.1;
}

.st-policy-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.st-policy-sections section {
  padding: 22px;
  border: 1px solid var(--st-policy-border);
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #fbfdfd);
}

.st-policy-sections h2 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.st-policy-sections h2 i {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--st-policy-dark);
  background: #e1f6f4;
  font-size: 15px;
}

.st-policy-note {
  margin-top: 25px;
  padding: 17px 20px;
  border: 1px solid #f1dfb7;
  border-radius: 15px;
  color: #79591c;
  background: #fff9eb;
  font-size: 12px;
  line-height: 2;
}

.st-faq-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.st-faq-chat-button,
.st-policy-page__support button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--st-policy-primary), var(--st-policy-dark));
  box-shadow: 0 9px 20px rgba(10, 116, 112, 0.17);
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
}

.st-faq-list {
  display: grid;
  gap: 11px;
}

.st-faq-list details {
  overflow: hidden;
  border: 1px solid var(--st-policy-border);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-faq-list details[open] {
  border-color: #acdcd8;
  box-shadow: 0 10px 28px rgba(10, 116, 112, 0.07);
}

.st-faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 18px;
  list-style: none;
  color: var(--st-policy-text);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.st-faq-list summary::-webkit-details-marker {
  display: none;
}

.st-faq-list summary i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 10px;
  color: var(--st-policy-dark);
  background: #e3f6f4;
  transition: transform 0.22s ease;
}

.st-faq-list details[open] summary i {
  transform: rotate(45deg);
}

.st-faq-list details > div {
  padding: 0 18px 18px;
  color: var(--st-policy-muted);
  font-size: 13px;
  line-height: 2.1;
}

.st-faq-list details p {
  margin: 0;
}

.st-policy-page__support {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid #cde6e3;
  border-radius: 20px;
  background: linear-gradient(110deg, #e9f9f6, #fff);
}

.st-policy-page__support > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--st-policy-primary);
  font-size: 21px;
}

.st-policy-page__support strong {
  display: block;
  margin-bottom: 3px;
  color: var(--st-policy-text);
}

.st-policy-page__support p {
  margin: 0;
  color: var(--st-policy-muted);
  font-size: 11px;
}

@media (max-width: 760px) {
  .st-policy-page__hero-inner {
    align-items: flex-start;
  }
  .st-policy-page__icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    border-radius: 20px;
    font-size: 25px;
  }
  .st-policy-page__container {
    width: min(100% - 22px, 1180px);
    margin-top: -48px;
  }
  .st-policy-page__content {
    padding: 20px 15px;
    border-radius: 23px;
  }
  .st-policy-grid,
  .st-policy-sections {
    grid-template-columns: 1fr;
  }
  .st-faq-intro {
    align-items: stretch;
    flex-direction: column;
  }
  .st-faq-chat-button {
    width: 100%;
  }
  .st-policy-page__support {
    grid-template-columns: 47px minmax(0, 1fr);
    padding: 15px;
  }
  .st-policy-page__support > span {
    width: 47px;
    height: 47px;
  }
  .st-policy-page__support button {
    grid-column: 1/-1;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .st-policy-page__hero {
    padding-right: 15px;
    padding-left: 15px;
  }
  .st-policy-page__hero-inner {
    gap: 13px;
  }
  .st-policy-page__hero h1 {
    font-size: 29px;
  }
  .st-policy-card {
    grid-template-columns: 37px minmax(0, 1fr);
    padding: 16px;
  }
  .st-policy-card > span {
    width: 37px;
    height: 37px;
  }
}
/* ===========================
WooCommerce
=========================== */
/* =====================================================
   SiXThem - WooCommerce Cart Block Compatibility
   This file styles the modern Cart block without changing
   table display modes, so WooCommerce remains responsive.
===================================================== */
body.woocommerce-cart {
  --st-cart-brand: #16b7b1;
  --st-cart-brand-dark: #087f79;
  --st-cart-ink: #173231;
  --st-cart-muted: #718381;
  --st-cart-line: #dceae8;
  --st-cart-soft: #f3faf9;
  --st-cart-danger: #df5468;
  background: #f4faf9;
}

body.woocommerce-cart .wp-site-blocks,
body.woocommerce-cart .site-main,
body.woocommerce-cart main {
  overflow: visible;
}

body.woocommerce-cart .wp-block-post-title,
body.woocommerce-cart .entry-title {
  width: min(100% - 30px, 1240px);
  margin: 38px auto 18px;
  color: var(--st-cart-ink);
  font-size: clamp(29px, 4vw, 43px);
  font-weight: 900;
  line-height: 1.4;
}

body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-cart .wc-block-cart {
  width: min(100% - 30px, 1240px);
  margin: 28px auto 90px;
  padding: 0;
  direction: rtl;
}

body.woocommerce-cart .wc-block-cart .wc-block-components-sidebar-layout {
  align-items: flex-start;
  gap: 24px;
}

body.woocommerce-cart .wc-block-cart__main {
  min-width: 0;
  padding: 0 !important;
}

body.woocommerce-cart .wc-block-cart__sidebar {
  min-width: 320px;
  align-self: flex-start;
  padding: 24px !important;
  border: 1px solid var(--st-cart-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.07);
}

/* Product list: keep native table semantics intact. */
body.woocommerce-cart table.wc-block-cart-items {
  width: 100%;
  overflow: hidden;
  margin: 0 !important;
  border: 1px solid var(--st-cart-line) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.07);
}

body.woocommerce-cart table.wc-block-cart-items thead {
  display: none;
}

body.woocommerce-cart table.wc-block-cart-items td {
  padding: 24px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #e7f0ef !important;
  vertical-align: middle !important;
  background: #fff;
}

body.woocommerce-cart table.wc-block-cart-items tr:last-child td {
  border-bottom: 0 !important;
}

body.woocommerce-cart .wc-block-cart-item__image {
  width: 128px !important;
  padding-left: 8px !important;
}

body.woocommerce-cart .wc-block-cart-item__image a {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--st-cart-line);
  border-radius: 18px;
  background: var(--st-cart-soft);
}

body.woocommerce-cart .wc-block-cart-item__image img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  margin: 0 !important;
  object-fit: contain;
  transition: transform 0.3s ease;
}

body.woocommerce-cart .wc-block-cart-item__image:hover img {
  transform: scale(1.05);
}

body.woocommerce-cart .wc-block-cart-item__product {
  min-width: 0;
}

body.woocommerce-cart .wc-block-components-product-name {
  display: inline-block;
  margin: 0 0 7px !important;
  color: var(--st-cart-ink) !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.8;
  text-decoration: none !important;
}

body.woocommerce-cart .wc-block-components-product-name:hover {
  color: var(--st-cart-brand-dark) !important;
}

body.woocommerce-cart .wc-block-components-product-metadata {
  margin: 2px 0 8px !important;
  color: var(--st-cart-muted);
  font-size: 11px;
  line-height: 1.9;
}

body.woocommerce-cart .wc-block-components-product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 !important;
}

body.woocommerce-cart .wc-block-components-product-details li {
  margin: 0 !important;
  padding: 4px 9px;
  border: 1px solid var(--st-cart-line);
  border-radius: 9px;
  background: var(--st-cart-soft);
}

body.woocommerce-cart .wc-block-components-product-price {
  color: var(--st-cart-brand-dark);
  font-size: 14px;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-cart-item__quantity {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 11px;
}

body.woocommerce-cart .wc-block-components-quantity-selector {
  width: 112px !important;
  min-width: 112px !important;
  height: 40px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--st-cart-line) !important;
  border-radius: 12px !important;
  background: #fff;
  box-shadow: none !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector::after {
  display: none !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector input {
  min-width: 40px !important;
  height: 38px !important;
  padding: 0 !important;
  color: var(--st-cart-ink);
  font-family: inherit;
  font-size: 14px !important;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-quantity-selector button {
  width: 35px !important;
  min-width: 35px !important;
  height: 38px !important;
  padding: 0 !important;
  color: var(--st-cart-brand-dark) !important;
  background: var(--st-cart-soft) !important;
  font-size: 17px !important;
  transition: color 0.2s ease, background 0.2s ease;
}

body.woocommerce-cart .wc-block-components-quantity-selector button:hover {
  color: #fff !important;
  background: var(--st-cart-brand) !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link {
  min-height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 5px 10px !important;
  border: 0 !important;
  border-radius: 9px;
  color: var(--st-cart-danger) !important;
  background: rgba(223, 84, 104, 0.08) !important;
  font-family: inherit;
  font-size: 10px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  color: #fff !important;
  background: var(--st-cart-danger) !important;
}

body.woocommerce-cart .wc-block-cart-item__total {
  width: 155px !important;
  padding-right: 10px !important;
  text-align: left !important;
}

body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
  align-items: flex-end !important;
}

body.woocommerce-cart .wc-block-cart-item__total .wc-block-components-product-price {
  color: var(--st-cart-ink);
  font-size: 17px;
}

/* Totals card. */
body.woocommerce-cart .wc-block-cart__totals-title {
  margin: 0 0 14px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid var(--st-cart-line);
  color: var(--st-cart-ink);
  font-size: 21px !important;
  font-weight: 900 !important;
  text-align: right !important;
}

body.woocommerce-cart .wc-block-components-totals-wrapper {
  padding: 15px 0 !important;
  border-top: 1px solid var(--st-cart-line) !important;
}

body.woocommerce-cart .wc-block-components-totals-wrapper:first-of-type {
  border-top: 0 !important;
}

body.woocommerce-cart .wc-block-components-totals-item {
  color: var(--st-cart-muted);
  font-size: 12px;
}

body.woocommerce-cart .wc-block-components-totals-item__label {
  font-weight: 800;
}

body.woocommerce-cart .wc-block-components-totals-item__value {
  color: var(--st-cart-ink);
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-totals-footer-item {
  margin-top: 8px;
  padding: 17px 14px !important;
  border: 1px solid var(--st-cart-line);
  border-radius: 14px;
  background: var(--st-cart-soft);
}

body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: var(--st-cart-ink);
  font-size: 15px;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--st-cart-brand-dark);
  font-size: 18px;
}

body.woocommerce-cart .wc-block-components-panel__button {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px !important;
  border: 1px solid var(--st-cart-line) !important;
  border-radius: 11px !important;
  color: var(--st-cart-ink) !important;
  background: var(--st-cart-soft) !important;
  font-family: inherit;
  font-size: 11px !important;
  font-weight: 900 !important;
}

body.woocommerce-cart .wc-block-components-totals-coupon__form {
  gap: 8px;
  margin-top: 10px;
}

body.woocommerce-cart .wc-block-components-text-input input {
  min-height: 46px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--st-cart-line) !important;
  border-radius: 11px !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

body.woocommerce-cart .wc-block-components-text-input input:focus {
  border-color: var(--st-cart-brand) !important;
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.11) !important;
}

body.woocommerce-cart .wc-block-components-totals-coupon__button {
  min-height: 46px;
  padding: 0 15px !important;
  border: 0 !important;
  border-radius: 11px !important;
  color: #fff !important;
  background: var(--st-cart-brand-dark) !important;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-cart__submit {
  margin-top: 19px !important;
}

body.woocommerce-cart .wc-block-cart__submit-container {
  position: static !important;
  padding: 0 !important;
  background: transparent !important;
}

body.woocommerce-cart .wc-block-cart__submit-button {
  min-height: 55px !important;
  border: 0 !important;
  border-radius: 14px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--st-cart-brand), var(--st-cart-brand-dark)) !important;
  box-shadow: 0 12px 26px rgba(8, 127, 121, 0.22);
  font-family: inherit;
  font-size: 13px !important;
  font-weight: 900 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-cart .wc-block-cart__submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 31px rgba(8, 127, 121, 0.29);
}

/* Empty block cart. */
/* =====================================================
   Empty cart
===================================================== */
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  width: 100%;
  min-height: 440px;
  display: block;
  padding: 50px 32px 42px;
  border: 1px solid var(--st-cart-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.07);
  text-align: center;
  /*
   * حذف قطعی آیکون یا تصویر صورت ناراحت
   * هم آیکون ووکامرس و هم آیکون ساخته‌شده توسط قالب
   */
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-image:first-child,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > figure:first-child,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > img:first-child {
  display: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon {
  margin: 0 0 18px;
  color: var(--st-cart-ink);
  font-size: clamp(27px, 4vw, 39px);
  font-weight: 900;
  line-height: 1.6;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::before, body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::after,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title.with-empty-cart-icon::after,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  mask: none !important;
  -webkit-mask: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > p {
  margin: 0 0 28px;
  color: var(--st-cart-muted);
  font-size: 14px;
  line-height: 2;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > p a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 25px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--st-cart-brand), var(--st-cart-brand-dark));
  box-shadow: 0 11px 24px rgba(8, 127, 121, 0.2);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > p a:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 29px rgba(8, 127, 121, 0.28);
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator {
  width: 100%;
  max-width: 950px;
  margin: 35px auto;
  border: none;
  border-top: 5px solid rgba(113, 113, 113, 0.4784313725);
  border-radius: 10px;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator::before, body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator::after {
  display: none !important;
  content: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2:not(.wc-block-cart__empty-cart__title) {
  margin: 0 0 25px;
  color: var(--st-cart-ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
}

/* Suggested-product grids and card visuals are centralized in
   components/_product-card.scss. */
body.woocommerce-cart .wc-block-components-notice-banner {
  margin-bottom: 18px !important;
  padding: 14px 15px !important;
  border: 1px solid var(--st-cart-line) !important;
  border-right: 4px solid var(--st-cart-brand) !important;
  border-radius: 13px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 65, 61, 0.05);
}

@media (max-width: 960px) {
  body.woocommerce-cart .wc-block-cart .wc-block-components-sidebar-layout {
    display: block;
  }
  body.woocommerce-cart .wc-block-cart__sidebar {
    width: 100% !important;
    min-width: 0;
    margin-top: 22px;
  }
}
@media (max-width: 700px) {
  body.woocommerce-cart .wp-block-post-title,
  body.woocommerce-cart .entry-title,
  body.woocommerce-cart .wp-block-woocommerce-cart,
  body.woocommerce-cart .wc-block-cart {
    width: min(100% - 22px, 1240px);
  }
  body.woocommerce-cart table.wc-block-cart-items {
    border-radius: 19px;
  }
  body.woocommerce-cart table.wc-block-cart-items td {
    padding: 17px 10px !important;
  }
  body.woocommerce-cart .wc-block-cart-item__image {
    width: 88px !important;
  }
  body.woocommerce-cart .wc-block-cart-item__image a {
    width: 78px;
    height: 78px;
    padding: 5px;
    border-radius: 13px;
  }
  body.woocommerce-cart .wc-block-components-product-name {
    font-size: 14px !important;
  }
  body.woocommerce-cart .wc-block-cart-item__total {
    width: auto !important;
    padding-right: 5px !important;
  }
  body.woocommerce-cart .wc-block-cart-item__total .wc-block-components-product-price {
    font-size: 14px;
  }
  body.woocommerce-cart .wc-block-cart__sidebar {
    padding: 19px !important;
    border-radius: 19px;
  }
}
/* Compact trash button used by the Cart block. */
body.woocommerce-cart .wc-block-cart-item__remove-link {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid rgba(223, 84, 104, 0.18) !important;
  border-radius: 10px !important;
  color: var(--st-cart-danger) !important;
  background: rgba(223, 84, 104, 0.08) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  appearance: none;
  -webkit-appearance: none;
}

body.woocommerce-cart .wc-block-cart-item__remove-link svg {
  width: 17px !important;
  height: 17px !important;
  display: block !important;
  flex: 0 0 17px;
  color: inherit !important;
  fill: currentColor !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link svg *,
body.woocommerce-cart .wc-block-cart-item__remove-link svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  color: #fff !important;
  border-color: var(--st-cart-danger) !important;
  background: var(--st-cart-danger) !important;
}

/* =====================================================
   Multi-item cart polish
===================================================== */
@media (min-width: 701px) {
  body.woocommerce-cart table.wc-block-cart-items {
    overflow: visible;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 14px !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.woocommerce-cart table.wc-block-cart-items td {
    border-top: 1px solid var(--st-cart-line) !important;
    border-bottom: 1px solid var(--st-cart-line) !important;
    background: #fff;
    box-shadow: 0 13px 34px rgba(0, 65, 61, 0.055);
  }
  body.woocommerce-cart table.wc-block-cart-items tr td:first-child {
    border-right: 1px solid var(--st-cart-line) !important;
    border-radius: 0 22px 22px 0;
  }
  body.woocommerce-cart table.wc-block-cart-items tr td:last-child {
    border-left: 1px solid var(--st-cart-line) !important;
    border-radius: 22px 0 0 22px;
    height: 190px;
  }
}
body.woocommerce-cart .wc-block-cart-item__total {
  vertical-align: middle !important;
}

body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
  min-width: 136px;
  align-items: center !important;
  justify-content: center;
  gap: 5px;
  padding: 13px 12px;
  border: 1px solid var(--st-cart-line);
  border-radius: 14px;
  background: var(--st-cart-soft);
  text-align: center;
}

body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper::before {
  content: "جمع این محصول";
  display: block;
  color: var(--st-cart-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
}

body.woocommerce-cart .wc-block-cart-item__total .wc-block-components-product-price {
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--st-cart-brand-dark);
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 700px) {
  body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    min-width: 0;
    padding: 9px;
    border-radius: 11px;
  }
  body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper::before {
    font-size: 8px;
  }
}
/* =====================================================
   SiXThem - WooCommerce Checkout Block
   Visual parity with the shop/cart design system.
===================================================== */
body.woocommerce-checkout {
  --st-checkout-brand: #16b7b1;
  --st-checkout-brand-dark: #087f79;
  --st-checkout-ink: #173231;
  --st-checkout-muted: #718381;
  --st-checkout-line: #dceae8;
  --st-checkout-soft: #f3faf9;
  --st-checkout-danger: #df5468;
  background: #f4faf9;
}

body.woocommerce-checkout .st-page-content {
  padding: 0 0 36px;
  background: #f4faf9;
}

body.woocommerce-checkout .st-page-content > .st-container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

body.woocommerce-checkout .st-page-content article {
  width: 100%;
}

body.woocommerce-checkout .st-page-content article > h1,
body.woocommerce-checkout .wp-block-post-title,
body.woocommerce-checkout .entry-title {
  width: min(100% - 30px, 1240px);
  margin: 38px auto 22px;
  color: var(--st-checkout-ink);
  font-size: clamp(29px, 4vw, 43px);
  font-weight: 900;
  line-height: 1.4;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
  width: min(100% - 30px, 1240px);
  margin: 0 auto 72px;
  padding: 0 !important;
  direction: rtl;
  color: var(--st-checkout-ink);
  font-family: inherit;
}

body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout {
  align-items: flex-start;
  gap: 28px;
}

body.woocommerce-checkout .wc-block-checkout__main {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  width: 370px !important;
  min-width: 370px;
  flex: 0 0 370px;
  align-self: flex-start;
  position: sticky;
  top: 96px;
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid var(--st-checkout-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.07);
}

/* Main checkout sections. */
body.woocommerce-checkout .wc-block-components-checkout-step {
  margin: 0 0 20px !important;
  padding: 24px !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.055);
}

body.woocommerce-checkout .wc-block-components-checkout-step::after,
body.woocommerce-checkout .wc-block-components-checkout-step::before {
  content: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step__heading {
  position: relative;
  margin: 0 0 20px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid var(--st-checkout-line);
}

body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-checkout-step h2,
body.woocommerce-checkout .wc-block-components-checkout-step h3 {
  margin: 0 !important;
  color: var(--st-checkout-ink) !important;
  font-family: inherit !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.7 !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step__heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--st-checkout-brand);
}

body.woocommerce-checkout .wc-block-components-checkout-step__description {
  margin: 6px 0 0 !important;
  color: var(--st-checkout-muted) !important;
  font-size: 12px !important;
  line-height: 1.9;
}

body.woocommerce-checkout .wc-block-components-checkout-step__container {
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step__content {
  padding: 0 !important;
}

/* Remove block step-number rail; the cards provide hierarchy. */
body.woocommerce-checkout .wc-block-components-checkout-step__step-number,
body.woocommerce-checkout .wc-block-components-checkout-step::before {
  display: none !important;
}

/* Address/contact form grid. */
body.woocommerce-checkout .wc-block-components-address-form {
  gap: 14px !important;
}

body.woocommerce-checkout .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-country-input,
body.woocommerce-checkout .wc-block-components-state-input {
  margin: 0 !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input textarea,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-address-form select,
body.woocommerce-checkout .wc-block-checkout input[type=email],
body.woocommerce-checkout .wc-block-checkout input[type=tel],
body.woocommerce-checkout .wc-block-checkout input[type=text] {
  width: 100%;
  min-height: 54px !important;
  padding: 20px 15px 7px !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 13px !important;
  outline: 0;
  color: var(--st-checkout-ink) !important;
  background: #f9fcfc !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-text-input textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-address-form select:focus,
body.woocommerce-checkout .wc-block-checkout input[type=email]:focus,
body.woocommerce-checkout .wc-block-checkout input[type=tel]:focus,
body.woocommerce-checkout .wc-block-checkout input[type=text]:focus {
  border-color: var(--st-checkout-brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(22, 183, 177, 0.12) !important;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox-control label {
  right: 14px !important;
  left: auto !important;
  color: var(--st-checkout-muted) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  transform-origin: right top !important;
}

body.woocommerce-checkout .wc-block-components-text-input.is-active label,
body.woocommerce-checkout .wc-block-components-text-input input:focus + label,
body.woocommerce-checkout .wc-block-components-combobox-control.is-active label {
  color: var(--st-checkout-brand-dark) !important;
}

body.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__suggestions-list,
body.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__suggestions-list[role=listbox] {
  overflow: hidden;
  border: 1px solid var(--st-checkout-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 65, 61, 0.12);
}

body.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__suggestion {
  padding: 10px 13px;
  font-family: inherit;
  font-size: 12px;
}

body.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__suggestion.is-selected,
body.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__suggestion:hover {
  color: var(--st-checkout-ink);
  background: var(--st-checkout-soft);
}

body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
  display: inline-flex;
  align-items: center;
  margin: 3px 0 2px !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--st-checkout-brand-dark) !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle:hover {
  color: var(--st-checkout-brand) !important;
}

/* Checkboxes. */
body.woocommerce-checkout .wc-block-components-checkbox {
  margin: 12px 0 0 !important;
}

body.woocommerce-checkout .wc-block-components-checkbox label {
  align-items: center !important;
  gap: 9px;
  color: var(--st-checkout-ink);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
}

body.woocommerce-checkout .wc-block-components-checkbox input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 6px !important;
  accent-color: var(--st-checkout-brand);
}

/* Shipping and payment choices. */
body.woocommerce-checkout .wc-block-components-radio-control,
body.woocommerce-checkout .wc-block-checkout__shipping-option,
body.woocommerce-checkout .wc-block-checkout__payment-method {
  overflow: hidden;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 15px !important;
  background: #fff;
}

body.woocommerce-checkout .wc-block-components-radio-control__option {
  min-height: 58px;
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--st-checkout-line) !important;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-radio-control__option:last-child {
  border-bottom: 0 !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option:hover,
body.woocommerce-checkout .wc-block-components-radio-control__option-checked {
  background: var(--st-checkout-soft) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__input {
  accent-color: var(--st-checkout-brand);
}

body.woocommerce-checkout .wc-block-components-radio-control__label,
body.woocommerce-checkout .wc-block-components-radio-control__label-group {
  color: var(--st-checkout-ink) !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__description {
  color: var(--st-checkout-muted) !important;
  font-size: 11px !important;
  line-height: 1.9;
}

body.woocommerce-checkout .wc-block-components-shipping-rates-control__package {
  margin: 0 !important;
}

body.woocommerce-checkout .wc-block-components-shipping-rates-control__package-items {
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control {
  margin: 0 !important;
}

body.woocommerce-checkout .wc-block-components-shipping-rates-control__package-not-selected,
body.woocommerce-checkout .wc-block-components-shipping-rates-control__no-results,
body.woocommerce-checkout .wc-block-checkout__no-shipping-methods {
  margin: 0 !important;
  padding: 18px !important;
  border: 1px dashed var(--st-checkout-line) !important;
  border-radius: 13px;
  color: var(--st-checkout-muted) !important;
  background: var(--st-checkout-soft) !important;
  font-size: 12px !important;
  line-height: 2;
  text-align: center;
}

/* Payment content box. */
body.woocommerce-checkout .wc-block-components-radio-control-accordion-content {
  padding: 14px 16px 18px !important;
  border-top: 1px solid var(--st-checkout-line);
  color: var(--st-checkout-muted);
  background: #f9fcfc;
  font-size: 12px;
  line-height: 2;
}

body.woocommerce-checkout .wc-block-components-radio-control-accordion-content p:last-child {
  margin-bottom: 0;
}

/* Order notes. */
body.woocommerce-checkout .wc-block-checkout__order-notes textarea,
body.woocommerce-checkout textarea.wc-block-components-textarea {
  min-height: 115px !important;
  padding: 15px !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 13px !important;
  background: #f9fcfc !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 13px !important;
  resize: vertical;
}

/* Checkout actions and legal text. */
body.woocommerce-checkout .wc-block-checkout__terms {
  margin: 16px 0 !important;
  padding: 14px 16px;
  border: 1px solid var(--st-checkout-line);
  border-radius: 13px;
  color: var(--st-checkout-muted);
  background: var(--st-checkout-soft);
  font-size: 11px;
  line-height: 2;
}

body.woocommerce-checkout .wc-block-checkout__terms a {
  color: var(--st-checkout-brand-dark);
  font-weight: 800;
  text-decoration: none;
}

body.woocommerce-checkout .wc-block-checkout__actions {
  align-items: center;
  gap: 13px;
  margin-top: 18px !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  min-height: 58px !important;
  padding: 0 25px !important;
  border: 0 !important;
  border-radius: 14px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--st-checkout-brand), var(--st-checkout-brand-dark)) !important;
  box-shadow: 0 12px 26px rgba(8, 127, 121, 0.22);
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 31px rgba(8, 127, 121, 0.29);
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:disabled {
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 13px !important;
  color: var(--st-checkout-brand-dark) !important;
  background: #fff !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:hover {
  border-color: var(--st-checkout-brand) !important;
  background: var(--st-checkout-soft) !important;
}

/* Order summary sidebar. */
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title-text,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary__button-text,
body.woocommerce-checkout .wc-block-checkout__sidebar h2 {
  color: var(--st-checkout-ink) !important;
  font-family: inherit !important;
  font-size: 21px !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary {
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary__button-text {
  width: 100%;
  padding: 21px 22px 16px;
  border-bottom: 1px solid var(--st-checkout-line);
  text-align: right;
}

body.woocommerce-checkout .wc-block-components-order-summary__content {
  padding: 0 20px !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
  min-height: 104px;
  gap: 12px;
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--st-checkout-line) !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item:last-child {
  border-bottom: 0 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
  width: 76px !important;
  height: 76px !important;
  flex: 0 0 76px;
  display: grid;
  place-items: center;
  overflow: visible !important;
  padding: 5px;
  border: 1px solid var(--st-checkout-line);
  border-radius: 14px;
  background: var(--st-checkout-soft);
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inset: -8px -8px auto auto !important;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--st-checkout-brand-dark);
  font-size: 10px;
  font-weight: 900;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  min-width: 0;
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-product-name {
  margin: 0 0 5px !important;
  color: var(--st-checkout-ink) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.7;
  text-decoration: none !important;
}

body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-details {
  color: var(--st-checkout-muted) !important;
  font-size: 10px !important;
  line-height: 1.8;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
  color: var(--st-checkout-brand-dark) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

/* Coupon and totals inside sidebar. */
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
  padding: 15px 20px !important;
  border-top: 1px solid var(--st-checkout-line) !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-panel__button {
  width: 100%;
  min-height: 44px;
  padding: 9px 0 !important;
  border: 0 !important;
  color: var(--st-checkout-ink) !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon__form {
  gap: 8px;
  margin-top: 10px;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon__form input {
  min-height: 45px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-radius: 11px !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon__button {
  min-height: 45px;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 11px !important;
  color: #fff !important;
  background: var(--st-checkout-brand-dark) !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item {
  min-height: 31px;
  align-items: center;
  color: var(--st-checkout-muted);
  font-size: 11px;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__label {
  font-weight: 800;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__value {
  color: var(--st-checkout-ink);
  font-weight: 900;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item {
  margin: 0 !important;
  padding: 18px 20px !important;
  border-top: 1px solid var(--st-checkout-line) !important;
  background: var(--st-checkout-soft);
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: var(--st-checkout-ink);
  font-size: 16px;
  font-weight: 900;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--st-checkout-brand-dark);
  font-size: 19px;
  font-weight: 900;
}

body.woocommerce-checkout .wc-block-components-totals-shipping__fieldset {
  padding: 0 !important;
}

/* Notices and validation. */
body.woocommerce-checkout .wc-block-components-notice-banner {
  margin: 0 0 18px !important;
  padding: 14px 15px !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-right: 4px solid var(--st-checkout-brand) !important;
  border-radius: 13px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 65, 61, 0.05);
}

body.woocommerce-checkout .wc-block-components-validation-error {
  margin: 5px 3px 0 !important;
  color: var(--st-checkout-danger) !important;
  font-size: 10px !important;
  font-weight: 700;
}

body.woocommerce-checkout .has-error input,
body.woocommerce-checkout .has-error textarea,
body.woocommerce-checkout .has-error .wc-block-components-combobox-control input {
  border-color: rgba(223, 84, 104, 0.75) !important;
  box-shadow: 0 0 0 3px rgba(223, 84, 104, 0.08) !important;
}

/* Avoid an oversized gap before the footer on checkout. */
body.woocommerce-checkout .st-footer {
  margin-top: 82px;
}

@media (max-width: 1020px) {
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout {
    display: block;
  }
  body.woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100% !important;
    min-width: 0;
    position: static;
    margin-top: 22px;
  }
}
@media (max-width: 700px) {
  body.woocommerce-checkout .st-page-content article > h1,
  body.woocommerce-checkout .wp-block-post-title,
  body.woocommerce-checkout .entry-title,
  body.woocommerce-checkout .wp-block-woocommerce-checkout,
  body.woocommerce-checkout .wc-block-checkout {
    width: min(100% - 22px, 1240px);
  }
  body.woocommerce-checkout .st-page-content article > h1,
  body.woocommerce-checkout .wp-block-post-title,
  body.woocommerce-checkout .entry-title {
    margin-top: 24px;
    font-size: 30px;
  }
  body.woocommerce-checkout .wc-block-components-checkout-step {
    margin-bottom: 14px !important;
    padding: 18px !important;
    border-radius: 19px;
  }
  body.woocommerce-checkout .wc-block-components-checkout-step__title,
  body.woocommerce-checkout .wc-block-components-checkout-step h2,
  body.woocommerce-checkout .wc-block-components-checkout-step h3 {
    font-size: 17px !important;
  }
  body.woocommerce-checkout .wc-block-components-address-form {
    display: block !important;
  }
  body.woocommerce-checkout .wc-block-components-address-form > * {
    width: 100% !important;
    margin-bottom: 11px !important;
  }
  body.woocommerce-checkout .wc-block-checkout__sidebar {
    border-radius: 19px;
  }
  body.woocommerce-checkout .wc-block-checkout__actions {
    align-items: stretch;
    flex-direction: column;
  }
  body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
  body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    width: 100%;
  }
  body.woocommerce-checkout .st-footer {
    margin-top: 60px;
  }
}
/* =====================================================
   Successful payment / order received
===================================================== */
body.woocommerce-order-received .st-page-content {
  padding: 42px 0 0;
}

body.woocommerce-order-received .st-page-content > .st-container {
  width: min(100% - 30px, 1240px);
  max-width: 1240px;
  padding-inline: 15px;
}

body.woocommerce-order-received .st-page-content article > h1 {
  display: none;
}

body.woocommerce-order-received .woocommerce {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: var(--st-checkout-ink);
  direction: rtl;
}

body.woocommerce-order-received .woocommerce-order {
  display: grid;
  gap: 22px;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received {
  position: relative;
  min-height: 124px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 28px 92px 28px 30px !important;
  border: 1px solid rgba(22, 183, 177, 0.24) !important;
  border-radius: 26px;
  color: var(--st-checkout-ink) !important;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.75), transparent 25%), linear-gradient(135deg, #dff8ee, #e4faf8) !important;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.075);
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.7;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received::before {
  content: "✓";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--st-checkout-brand), var(--st-checkout-brand-dark));
  box-shadow: 0 10px 25px rgba(8, 127, 121, 0.23);
  font-family: Arial, sans-serif;
  font-size: 26px;
  transform: translateY(-50%);
}

body.woocommerce-order-received .woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--st-checkout-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(0, 65, 61, 0.055);
  list-style: none !important;
}

body.woocommerce-order-received .woocommerce-order-overview li {
  min-width: 0;
  min-height: 96px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  margin: 0 !important;
  padding: 18px !important;
  border-left: 1px solid var(--st-checkout-line);
  color: var(--st-checkout-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: none;
}

body.woocommerce-order-received .woocommerce-order-overview li:last-child {
  border-left: 0;
}

body.woocommerce-order-received .woocommerce-order-overview li strong {
  overflow-wrap: anywhere;
  color: var(--st-checkout-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

body.woocommerce-order-received .woocommerce-order > p:not(.woocommerce-thankyou-order-received) {
  margin: 0 !important;
  padding: 15px 18px;
  border: 1px solid var(--st-checkout-line);
  border-radius: 14px;
  color: var(--st-checkout-muted);
  background: var(--st-checkout-soft);
  font-size: 12px;
  line-height: 2;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  margin: 0 !important;
  padding: 25px;
  border: 1px solid var(--st-checkout-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.055);
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-customer-details > h2,
body.woocommerce-order-received .woocommerce-column__title {
  margin: 0 0 18px !important;
  color: var(--st-checkout-ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.7;
}

body.woocommerce-order-received table.woocommerce-table--order-details {
  width: 100%;
  overflow: hidden;
  margin: 0 !important;
  border: 1px solid var(--st-checkout-line) !important;
  border-collapse: separate !important;
  border-spacing: 0;
  border-radius: 16px;
  background: #fff;
}

body.woocommerce-order-received table.woocommerce-table--order-details th,
body.woocommerce-order-received table.woocommerce-table--order-details td {
  padding: 15px 17px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--st-checkout-line) !important;
  color: var(--st-checkout-ink);
  font-size: 12px;
  line-height: 1.9;
  text-align: right;
}

body.woocommerce-order-received table.woocommerce-table--order-details thead th {
  background: var(--st-checkout-soft);
  font-weight: 900;
}

body.woocommerce-order-received table.woocommerce-table--order-details tfoot th {
  width: 42%;
  color: var(--st-checkout-muted);
  background: #fbfdfd;
  font-weight: 800;
}

body.woocommerce-order-received table.woocommerce-table--order-details tfoot td {
  color: var(--st-checkout-brand-dark);
  background: #fbfdfd;
  font-size: 13px;
  font-weight: 900;
}

body.woocommerce-order-received table.woocommerce-table--order-details tr:last-child th,
body.woocommerce-order-received table.woocommerce-table--order-details tr:last-child td {
  border-bottom: 0 !important;
}

body.woocommerce-order-received .woocommerce-columns--addresses {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 !important;
}

body.woocommerce-order-received .woocommerce-columns--addresses::before,
body.woocommerce-order-received .woocommerce-columns--addresses::after {
  content: none !important;
}

body.woocommerce-order-received .woocommerce-column--billing-address,
body.woocommerce-order-received .woocommerce-column--shipping-address {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 20px !important;
  border: 1px solid var(--st-checkout-line);
  border-radius: 17px;
  background: var(--st-checkout-soft);
}

body.woocommerce-order-received .woocommerce-column address {
  min-height: 145px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--st-checkout-muted);
  background: transparent;
  font-size: 12px;
  line-height: 2.1;
}

body.woocommerce-order-received .woocommerce-customer-details--phone,
body.woocommerce-order-received .woocommerce-customer-details--email {
  margin: 7px 0 0 !important;
  color: var(--st-checkout-ink);
  font-weight: 800;
}

body.woocommerce-order-received .st-footer {
  margin-top: 70px;
}

@media (max-width: 900px) {
  body.woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.woocommerce-order-received .woocommerce-order-overview li {
    border-bottom: 1px solid var(--st-checkout-line);
  }
}
@media (max-width: 650px) {
  body.woocommerce-order-received .st-page-content > .st-container {
    width: calc(100% - 22px);
    padding-inline: 0;
  }
  body.woocommerce-order-received .woocommerce-thankyou-order-received {
    min-height: 105px;
    padding: 22px 72px 22px 18px !important;
    border-radius: 20px;
    font-size: 20px;
  }
  body.woocommerce-order-received .woocommerce-thankyou-order-received::before {
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 22px;
  }
  body.woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }
  body.woocommerce-order-received .woocommerce-order-overview li {
    min-height: 76px;
    border-left: 0;
  }
  body.woocommerce-order-received .woocommerce-columns--addresses {
    grid-template-columns: 1fr;
  }
  body.woocommerce-order-received .woocommerce-order-details,
  body.woocommerce-order-received .woocommerce-customer-details {
    padding: 17px;
    border-radius: 19px;
  }
  body.woocommerce-order-received table.woocommerce-table--order-details th,
  body.woocommerce-order-received table.woocommerce-table--order-details td {
    padding: 12px 10px !important;
    font-size: 10px;
  }
}
.woocommerce-order-received .woocommerce-order-overview::before,
.woocommerce-order-received .woocommerce-order-overview::after,
.woocommerce-order-received ul.order_details::before,
.woocommerce-order-received ul.order_details::after {
  content: none !important;
  display: none !important;
}

/* WooCommerce notices — fixed top-right from first render */
.woocommerce-notices-wrapper {
  position: fixed !important;
  top: 105px !important;
  right: 24px !important;
  left: auto !important;
  z-index: 99999 !important;
  width: min(460px, 100vw - 48px) !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

.woocommerce-notices-wrapper:empty {
  display: none !important;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  position: relative !important;
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 18px 58px 18px 20px !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  pointer-events: auto;
}

/* جای صحیح ضربدر: سمت راست و وسط */
.woocommerce-notices-wrapper .st-notice-close,
.woocommerce-notices-wrapper .notice-close,
.woocommerce-notices-wrapper button[aria-label=بستن],
.woocommerce-notices-wrapper button[aria-label=Close] {
  position: absolute !important;
  top: 50% !important;
  right: 14px !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #e8f8f5 !important;
  color: #087c76 !important;
  line-height: 1 !important;
  cursor: pointer;
}

/* دکمه مشاهده سبد خرید */
.woocommerce-notices-wrapper .button {
  float: none !important;
  margin: 0 14px 0 0 !important;
}

/* Block-based order confirmation fallback.
   Keep selectors at the block wrapper level so inner blocks can still evolve. */
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-status,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals-wrapper,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-downloads-wrapper,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-shipping-wrapper,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-billing-wrapper,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-additional-information {
  width: min(100% - 30px, 1240px);
  margin: 0 auto 20px !important;
  padding: clamp(18px, 3vw, 28px) !important;
  border: 1px solid var(--st-checkout-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 65, 61, 0.055);
  direction: rtl;
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-status {
  border-color: rgba(22, 183, 177, 0.24);
  background: linear-gradient(135deg, #dff8ee, #e4faf8);
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-status h1,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-status h2,
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-status p {
  color: var(--st-checkout-ink);
}

body.woocommerce-order-received [class*=wp-block-woocommerce-order-confirmation] table {
  width: 100%;
  border: 1px solid var(--st-checkout-line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
}

body.woocommerce-order-received [class*=wp-block-woocommerce-order-confirmation] th,
body.woocommerce-order-received [class*=wp-block-woocommerce-order-confirmation] td {
  padding: 13px 15px;
  border: 0;
  border-bottom: 1px solid var(--st-checkout-line);
  text-align: right;
}

@media (max-width: 650px) {
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-status,
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary,
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals-wrapper,
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-downloads-wrapper,
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-shipping-wrapper,
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-billing-wrapper,
  body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-additional-information {
    width: calc(100% - 22px);
    border-radius: 19px;
  }
}
/* Single source of truth for every product card. */
/* ==========================================================
   Single source of truth for every product card
   Shop, home, related, upsells, cross-sells and empty cart
========================================================== */
/* Every product grid is defined here. */
.st-products__grid,
.st-shop-main ul.products,
.st-single-product__details ul.products,
.st-cart-cross-sells ul.products,
.st-empty-cart-products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(190px, 220px));
  justify-content: start;
  gap: 22px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.st-products__grid::before, .st-products__grid::after,
.st-shop-main ul.products::before,
.st-shop-main ul.products::after,
.st-single-product__details ul.products::before,
.st-single-product__details ul.products::after,
.st-cart-cross-sells ul.products::before,
.st-cart-cross-sells ul.products::after,
.st-empty-cart-products::before,
.st-empty-cart-products::after {
  content: none !important;
  display: none !important;
}

.st-empty-cart-products {
  justify-content: center;
}

/* The only product-card visual rules in the project. */
.st-product-card {
  position: relative;
  width: 100% !important;
  max-width: 220px;
  min-width: 0;
  min-height: 370px;
  float: none !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 !important;
  padding: 16px 16px 19px !important;
  border: 1px solid #dceae8 !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 9px 28px rgba(0, 65, 61, 0.06) !important;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.st-product-card:hover {
  border-color: rgba(22, 183, 177, 0.5) !important;
  box-shadow: 0 17px 36px rgba(0, 65, 61, 0.1) !important;
  transform: translateY(-4px);
}

/* ---------- Image ---------- */
.st-product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0 0 15px;
  padding: 12px;
  border-radius: 17px;
  background: #f3faf9;
}

.st-product-card__image-link {
  position: absolute;
  inset: 12px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.st-product-card__image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  margin: 0 !important;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.st-product-card__image--primary {
  z-index: 1;
  opacity: 1;
}

.st-product-card__image--secondary {
  z-index: 2;
  opacity: 0;
}

.st-product-card.has-secondary-image:hover .st-product-card__image--primary {
  opacity: 0;
}
.st-product-card.has-secondary-image:hover .st-product-card__image--secondary {
  opacity: 1;
}

/* ---------- Rating, centered on the image ---------- */
.st-product-card__rating {
  position: absolute;
  right: 50%;
  bottom: 8px;
  z-index: 5;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 1px solid rgba(220, 234, 232, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 16px rgba(0, 65, 61, 0.1);
  backdrop-filter: blur(4px);
  transform: translateX(50%);
}

.st-product-card .star-rating {
  position: relative !important;
  width: 62px !important;
  height: 16px !important;
  float: none !important;
  display: inline-block !important;
  overflow: hidden !important;
  margin: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
  direction: ltr;
  text-align: left;
}
.st-product-card .star-rating::before {
  content: "★★★★★" !important;
  position: absolute;
  inset: 0 auto auto 0;
  width: 62px;
  height: 16px;
  color: #d9e5e3;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.st-product-card .star-rating > span {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 16px !important;
  display: block !important;
  overflow: hidden !important;
  padding: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  white-space: nowrap;
}
.st-product-card .star-rating > span::before {
  content: "★★★★★" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 16px;
  color: #f3b61f;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  text-indent: 0;
  white-space: nowrap;
}

/* ---------- Content ---------- */
.st-product-card__body {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  text-align: center;
}

.st-product-card__title {
  min-height: 10px;
  display: grid;
  place-items: center;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #173231 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.8 !important;
  text-align: center !important;
}
.st-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit !important;
  text-decoration: none !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.st-product-card__title a:hover {
  color: #16b7b1 !important;
}

.st-product-card__footer {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 0 !important;
  border: 0 !important;
}

.st-product-card__price {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px !important;
  color: #087f79 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.7;
  text-align: center;
}
.st-product-card__price del {
  margin-left: 5px;
  color: #99aaa8 !important;
  font-size: 12px !important;
  font-weight: 500;
  opacity: 1 !important;
}
.st-product-card__price ins {
  color: #087f79 !important;
  text-decoration: none !important;
}

.st-product-card__action {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
}

.st-product-card .st-product-card__cart,
.st-product-card .button {
  width: 100%;
  min-height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 8px 17px !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #16b7b1, #087f79) !important;
  box-shadow: 0 9px 21px rgba(8, 127, 121, 0.17) !important;
  font-family: inherit;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.st-product-card .st-product-card__cart::before, .st-product-card .st-product-card__cart::after,
.st-product-card .button::before,
.st-product-card .button::after {
  content: none !important;
  display: none !important;
}
.st-product-card .st-product-card__cart:hover,
.st-product-card .button:hover {
  color: #fff !important;
  box-shadow: 0 13px 27px rgba(8, 127, 121, 0.26) !important;
  transform: translateY(-2px);
}
.st-product-card .st-product-card__cart.loading,
.st-product-card .button.loading {
  opacity: 0.7;
}
.st-product-card .added_to_cart {
  display: block;
  margin-top: 8px;
  color: #16b7b1;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 991px) {
  .st-products__grid,
  .st-shop-main ul.products,
  .st-single-product__details ul.products,
  .st-cart-cross-sells ul.products,
  .st-empty-cart-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .st-products__grid,
  .st-shop-main ul.products,
  .st-single-product__details ul.products,
  .st-cart-cross-sells ul.products,
  .st-empty-cart-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .st-product-card {
    max-width: none;
    min-height: 390px;
    padding: 12px 12px 14px !important;
    border-radius: 18px !important;
  }
  .st-product-card__media {
    margin-bottom: 12px;
    padding: 9px;
    border-radius: 14px;
  }
  .st-product-card__image-link {
    inset: 9px;
  }
  .st-product-card__title {
    min-height: 48px;
    font-size: 13px !important;
  }
  .st-product-card__price {
    font-size: 12px !important;
  }
  .st-product-card .button,
  .st-product-card .st-product-card__cart {
    min-height: 40px;
    padding-inline: 8px !important;
    font-size: 10px !important;
  }
}
@media (max-width: 360px) {
  .st-products__grid,
  .st-shop-main ul.products,
  .st-single-product__details ul.products,
  .st-cart-cross-sells ul.products,
  .st-empty-cart-products {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   WooCommerce Product Blocks inside the empty Cart block
   The block renderer does not use content-product.php, so its
   native markup is mapped to the same visual system here.
========================================================== */
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  gap: 22px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product {
  width: 100% !important;
  max-width: 220px !important;
  min-height: 370px;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  margin: 0 !important;
  padding: 16px 16px 19px !important;
  border: 1px solid #dceae8 !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 9px 28px rgba(0, 65, 61, 0.06) !important;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product:hover {
  border-color: rgba(22, 183, 177, 0.5) !important;
  box-shadow: 0 17px 36px rgba(0, 65, 61, 0.1) !important;
  transform: translateY(-4px);
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-image,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-image {
  position: relative;
  width: 100% !important;
  aspect-ratio: 1/1;
  display: grid !important;
  place-items: center;
  overflow: hidden;
  margin: 0 0 15px !important;
  padding: 12px !important;
  border-radius: 17px;
  background: #f3faf9;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-image a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-image a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-image img,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-image img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  margin: 0 !important;
  border-radius: 10px;
  object-fit: contain !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name {
  min-height: 52px;
  display: grid;
  place-items: center;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #173231 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.8 !important;
  text-align: center !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name {
  color: inherit !important;
  text-decoration: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-woocommerce-product-price,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-price {
  min-height: 34px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px !important;
  color: #087f79 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.7;
  text-align: center;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-rating,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-rating {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -7px auto 9px !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-button,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-button {
  width: 100%;
  margin: auto 0 0 !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart button,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-button a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-button button,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-button__link {
  width: 100% !important;
  min-height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 8px 17px !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #16b7b1, #087f79) !important;
  box-shadow: 0 9px 21px rgba(8, 127, 121, 0.17) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.5;
  text-decoration: none !important;
}

@media (max-width: 760px) {
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product {
    max-width: none !important;
    min-height: 390px;
    padding: 12px 12px 14px !important;
    border-radius: 18px !important;
  }
}
@media (max-width: 420px) {
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product-template {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   Empty Cart product blocks: preserve the canonical card harmony
   WooCommerce blocks do not load content-product.php, so their
   children are explicitly placed in the same visual order.
========================================================== */
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  /* Legacy WooCommerce product-grid wraps image/title in one link.
     display:contents lets both elements participate in the same card grid,
     so the rating can overlap the lower edge of the image instead of
     appearing above it. */
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link {
  display: contents !important;
  color: inherit !important;
  text-decoration: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-image,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-image {
  grid-column: 1;
  grid-row: 1;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name {
  grid-column: 1;
  grid-row: 2;
  min-height: 10px;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a.wc-block-grid__product-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title a,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product a.wc-block-components-product-name,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name a {
  color: #173231 !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title:hover,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title:focus,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title:visited,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title a:hover,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title a:focus,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-post-title a:visited,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name:hover,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name:focus,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-name:visited {
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-woocommerce-product-price,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wc-block-components-product-price {
  grid-column: 1;
  grid-row: 3;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-rating,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-rating,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-rating {
  grid-column: 1;
  grid-row: 1;
  z-index: 7;
  align-self: end;
  justify-self: center;
  width: auto !important;
  min-height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 0 7px !important;
  padding: 4px 9px !important;
  border: 1px solid rgba(220, 234, 232, 0.95) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 6px 16px rgba(0, 65, 61, 0.1) !important;
  backdrop-filter: blur(4px);
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-rating .star-rating,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-rating .star-rating,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-rating .star-rating,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-rating__stars {
  color: #f3b61f !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-rating .star-rating::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-rating .star-rating::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-rating .star-rating::before {
  color: #d9e5e3 !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-rating .star-rating > span::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-rating .star-rating > span::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-rating .star-rating > span::before {
  color: #f3b61f !important;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-button,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product .wp-block-button {
  grid-column: 1;
  grid-row: 5;
}
/* ==========================================================
   SiXThem commerce final pass — cart, checkout, notices,
   shipping choices and password recovery.
   ========================================================== */

/* Keep customer notices compact and away from the main content. */
.st-woocommerce-toasts {
    top: 88px;
    right: 16px;
    width: min(380px, calc(100% - 32px));
    gap: 8px;
}

.admin-bar .st-woocommerce-toasts {
    top: 120px;
}

.st-woocommerce-toast {
    min-height: 62px;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 9px;
    row-gap: 6px;
    padding: 11px 13px 11px 40px !important;
    border-radius: 15px !important;
}

.st-woocommerce-toast::before {
    width: 29px;
    height: 29px;
    border-radius: 9px;
    font-size: 12px !important;
}

.st-woocommerce-toast__message {
    font-size: 11px;
    line-height: 1.75;
}

.st-woocommerce-toast .st-woocommerce-toast__action {
    min-height: 30px;
    padding: 4px 10px !important;
}

/* Cart card cleanup. */
.st-cart-items-panel,
.st-cart-item,
.st-cart-item__main,
.st-cart-item__footer {
    position: relative;
    isolation: isolate;
}

.st-cart-item {
    overflow: hidden;
    background: #fff;
}

.st-cart-item::before,
.st-cart-item::after,
.st-cart-item__main::before,
.st-cart-item__main::after {
    content: none !important;
    display: none !important;
}

.st-cart-item [class*="save-for-later"],
.st-cart-item [class*="save_for_later"],
.st-cart-item [data-save-for-later],
.st-cart-item .yith-wcwl-add-to-wishlist {
    display: none !important;
}

.st-cart-item__footer {
    min-height: 74px;
}

.st-cart-item__quantity {
    align-content: end;
}

.st-cart-summary-panel .shop_table {
    border-spacing: 0 8px !important;
}

.st-cart-summary-panel .shop_table tr,
.st-cart-summary-panel .shop_table tbody {
    background: transparent !important;
}

.st-cart-summary-panel .shop_table th,
.st-cart-summary-panel .shop_table td {
    min-height: 48px;
    vertical-align: middle !important;
}

.st-cart-summary-panel .shop_table tr.shipping th,
.st-cart-summary-panel .shop_table tr.shipping td {
    background: #eef8f7;
}

.st-cart-summary-panel .shop_table tr.shipping td {
    text-align: right;
}

.st-cart-summary-panel .woocommerce-shipping-methods {
    display: grid;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.st-cart-summary-panel .woocommerce-shipping-methods li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    margin: 0 !important;
    padding: 10px;
    border: 1px solid #d5e7e4;
    border-radius: 12px;
    background: #fff;
}

.st-cart-summary-panel .woocommerce-shipping-methods label {
    display: block;
    color: #173231;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.8;
}

.st-shipping-method-note {
    display: block;
    margin-top: 4px;
    color: #718381;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.8;
}

/* Classic checkout: compact, selectable shipping and payment cards. */
body.woocommerce-checkout form.checkout {
    --st-checkout-border: #d9e8e6;
    --st-checkout-soft: #f5faf9;
}

body.woocommerce-checkout #order_review .shop_table,
body.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 14px 16px !important;
    border-color: #e3eeec !important;
    vertical-align: middle;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping td {
    background: #f2faf8;
}

body.woocommerce-checkout #shipping_method,
body.woocommerce-checkout ul#shipping_method,
body.woocommerce-checkout .woocommerce-shipping-methods {
    display: grid;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.woocommerce-checkout #shipping_method li,
body.woocommerce-checkout .woocommerce-shipping-methods li {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    margin: 0 !important;
    padding: 15px 16px !important;
    border: 1px solid var(--st-checkout-border);
    border-radius: 15px;
    background: #fff;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

body.woocommerce-checkout #shipping_method li:has(input:checked),
body.woocommerce-checkout .woocommerce-shipping-methods li:has(input:checked) {
    border-color: #16b7b1;
    background: #effbf9;
    box-shadow: 0 0 0 3px rgba(22, 183, 177, .09);
}

body.woocommerce-checkout #shipping_method label,
body.woocommerce-checkout .woocommerce-shipping-methods label {
    display: block !important;
    margin: 0 !important;
    color: #173231;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.9;
    cursor: pointer;
}

body.woocommerce-checkout #payment,
body.woocommerce-checkout .woocommerce-checkout-payment {
    padding: 18px !important;
    border: 1px solid #dceae8 !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 14px 38px rgba(0, 43, 41, .055);
}

body.woocommerce-checkout #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods > li {
    position: relative;
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid #d9e8e6;
    border-radius: 15px;
    background: #f8fcfb;
}

body.woocommerce-checkout #payment ul.payment_methods > li:has(input:checked) {
    border-color: #16b7b1;
    background: #effbf9;
}

body.woocommerce-checkout #payment ul.payment_methods > li > label {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 !important;
    color: #173231;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

body.woocommerce-checkout #payment div.payment_box {
    width: 100% !important;
    margin: 12px 0 0 !important;
    padding: 13px 14px !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: #627370 !important;
    background: #fff !important;
    font-size: 10px !important;
    line-height: 1.9 !important;
}

body.woocommerce-checkout #payment div.payment_box::before {
    content: none !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    color: #073e3a;
    background: #ddf7f3;
    font-size: 16px;
    font-weight: 950;
}

/* Password recovery and reset pages. */
.st-password-page {
    width: min(100%, 720px);
    margin: 30px auto 90px;
    padding: 0 20px;
}

.st-password-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid #dceae8;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 58px rgba(0, 43, 41, .08);
    text-align: center;
}

.st-password-card::after {
    content: "";
    position: absolute;
    top: -90px;
    left: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(22, 183, 177, .065);
    pointer-events: none;
}

.st-password-card__icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #16b7b1, #087f79);
    box-shadow: 0 13px 28px rgba(22, 183, 177, .24);
    font-size: 22px;
}

.st-password-card__eyebrow {
    color: #0b938d;
    font-size: 11px;
    font-weight: 900;
}

.st-password-card h1 {
    margin: 7px 0 12px;
    color: #172321;
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.5;
}

.st-password-card__lead {
    max-width: 580px;
    margin: 0 auto 28px;
    color: #6e7d7a;
    font-size: 13px;
    line-height: 2;
}

.st-password-form {
    max-width: 520px;
    margin: 0 auto !important;
    padding: 24px !important;
    border: 1px solid #e0edeb !important;
    border-radius: 20px;
    background: #f8fcfb;
    text-align: right;
}

.st-password-form .form-row {
    margin: 0 0 18px !important;
    padding: 0 !important;
}

.st-password-form label {
    display: block;
    margin-bottom: 8px;
    color: #435350;
    font-size: 12px;
    font-weight: 850;
}

.st-password-form input.input-text {
    width: 100% !important;
    min-height: 56px !important;
    padding: 0 48px 0 15px !important;
    border: 1px solid #cfe0de !important;
    border-radius: 15px !important;
    outline: 0;
    color: #172321;
    background: #fff !important;
    font-family: inherit;
    font-size: 14px;
}

.st-password-form input.input-text:focus {
    border-color: #16b7b1 !important;
    box-shadow: 0 0 0 4px rgba(22, 183, 177, .11) !important;
}

.st-password-form .button,
.st-password-card__primary {
    width: 100%;
    min-height: 52px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 !important;
    padding: 10px 20px !important;
    border: 0 !important;
    border-radius: 14px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #16b7b1, #087f79) !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.st-password-card__help,
.st-password-confirmation-note {
    max-width: 520px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px auto 0;
    padding: 15px;
    border: 1px solid #dceae8;
    border-radius: 15px;
    color: #53635f;
    background: #f7fbfa;
    text-align: right;
}

.st-password-card__help > i,
.st-password-confirmation-note > i {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #087f79;
    background: #dff6f3;
}

.st-password-card__help p,
.st-password-confirmation-note div {
    display: grid;
    gap: 3px;
    margin: 0;
    font-size: 11px;
    line-height: 1.9;
}

.st-password-card__help a {
    color: #087f79;
    font-weight: 900;
}

.st-password-card__back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: #087f79;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.st-password-card--success .st-password-card__icon {
    background: linear-gradient(135deg, #19a974, #087f79);
}

.st-password-card--success .st-password-card__primary {
    max-width: 520px;
    margin-top: 18px !important;
}

@media (max-width: 720px) {
    .st-woocommerce-toasts,
    .admin-bar .st-woocommerce-toasts {
        top: 86px;
        right: 8px;
        width: calc(100% - 16px);
    }

    .st-cart-item {
        align-items: start;
    }

    body.woocommerce-checkout #payment,
    body.woocommerce-checkout .woocommerce-checkout-payment {
        padding: 13px !important;
        border-radius: 16px !important;
    }

    body.woocommerce-checkout #shipping_method li,
    body.woocommerce-checkout .woocommerce-shipping-methods li,
    body.woocommerce-checkout #payment ul.payment_methods > li {
        padding: 13px !important;
        border-radius: 13px;
    }

    .st-password-page {
        margin-top: 18px;
        padding: 0 12px;
    }

    .st-password-card {
        padding: 24px 16px;
        border-radius: 22px;
    }

    .st-password-form {
        padding: 16px !important;
        border-radius: 16px;
    }
}

/* ==========================================================
   SiXThem 1.4.1 — cart/checkout/account stability pass.
   These rules intentionally remain last.
   ========================================================== */

/* Remove stale wishlist/save-for-later controls from both classic and block carts. */
body.woocommerce-cart [class*="save-for-later"],
body.woocommerce-cart [class*="save_for_later"],
body.woocommerce-cart [data-save-for-later],
body.woocommerce-cart .wc-block-cart-item__save-for-later,
body.woocommerce-cart .wc-block-cart-item__save-for-later-link {
    display: none !important;
}

/* Cart Block: do not stretch the price column into an empty tall panel. */
@media (min-width: 701px) {
    body.woocommerce-cart table.wc-block-cart-items tr td:last-child {
        height: auto !important;
        min-height: 0 !important;
    }

    body.woocommerce-cart table.wc-block-cart-items td {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }
}

body.woocommerce-cart .wc-block-cart-item__total {
    width: 165px !important;
    min-width: 165px !important;
    vertical-align: middle !important;
}

body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    min-height: 0 !important;
    width: 100%;
    min-width: 0 !important;
    align-self: center;
    margin: 0 !important;
    padding: 12px 10px !important;
}

body.woocommerce-cart .wc-block-cart-item__quantity,
body.woocommerce-cart .wc-block-components-quantity-selector {
    margin-bottom: 0 !important;
}

/* Empty total wrappers created by third-party blocks should not reserve space. */
body.woocommerce-cart .wc-block-components-totals-wrapper:empty,
body.woocommerce-cart .wc-block-components-totals-item:empty,
body.woocommerce-cart .wc-block-components-panel:empty,
body.woocommerce-cart .wc-block-components-totals-wrapper:has(> .wc-block-components-totals-item:empty:only-child),
.st-cart-summary-panel .shop_table tr:has(> th:empty):has(> td:empty),
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr:has(> th:empty):has(> td:empty) {
    display: none !important;
}

/* Classic shipping: clean radio, title, price and explanatory note alignment. */
body.woocommerce-checkout #shipping_method li,
body.woocommerce-checkout .woocommerce-shipping-methods li,
.st-cart-summary-panel .woocommerce-shipping-methods li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    direction: rtl;
}

body.woocommerce-checkout #shipping_method input.shipping_method,
body.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method,
.st-cart-summary-panel .woocommerce-shipping-methods input.shipping_method {
    position: static !important;
    inset: auto !important;
    flex: 0 0 20px;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border: 2px solid #9db7b4 !important;
    border-radius: 50% !important;
    outline: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer;
}

body.woocommerce-checkout #shipping_method input.shipping_method:checked,
body.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method:checked,
.st-cart-summary-panel .woocommerce-shipping-methods input.shipping_method:checked {
    border-color: #16b7b1 !important;
    background: radial-gradient(circle at center, #16b7b1 0 5px, #fff 6px) !important;
}

body.woocommerce-checkout #shipping_method label,
body.woocommerce-checkout .woocommerce-shipping-methods label,
.st-cart-summary-panel .woocommerce-shipping-methods label {
    min-width: 0;
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 12px;
    margin: 0 !important;
    cursor: pointer;
}

body.woocommerce-checkout #shipping_method label .woocommerce-Price-amount,
body.woocommerce-checkout .woocommerce-shipping-methods label .woocommerce-Price-amount,
.st-cart-summary-panel .woocommerce-shipping-methods label .woocommerce-Price-amount {
    margin-inline-start: auto;
    white-space: nowrap;
    color: #087f79;
    font-weight: 950;
}

body.woocommerce-checkout #shipping_method .st-shipping-method-note,
body.woocommerce-checkout .woocommerce-shipping-methods .st-shipping-method-note,
.st-cart-summary-panel .woocommerce-shipping-methods .st-shipping-method-note {
    flex: 0 0 100%;
    margin: 2px 0 0 !important;
}

/* Checkout Block radio controls: avoid native radio overlap in RTL. */
body.woocommerce-checkout .wc-block-components-radio-control__option {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 11px !important;
    direction: rtl;
}

body.woocommerce-checkout .wc-block-components-radio-control__input {
    position: static !important;
    grid-column: 1;
    width: 20px !important;
    height: 20px !important;
    margin: 2px 0 0 !important;
    transform: none !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option > :not(.wc-block-components-radio-control__input) {
    min-width: 0;
    grid-column: 2;
}

/* My Account order view: turn raw WooCommerce sections into balanced cards. */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details {
    margin: 22px 0 0 !important;
    padding: 22px;
    border: 1px solid #dceae8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 13px 38px rgba(0, 43, 41, .05);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details__title,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title,
.woocommerce-account .woocommerce-MyAccount-content h2.woocommerce-order-details__title {
    margin: 0 0 17px !important;
    padding-bottom: 13px;
    border-bottom: 1px solid #e3eeec;
    color: #173231;
    font-size: 22px !important;
    line-height: 1.6;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-OrderUpdates {
    display: grid;
    gap: 10px;
    margin: 15px 0 24px !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-OrderUpdate {
    margin: 0 !important;
    padding: 14px 16px !important;
    border: 1px solid #dceae8;
    border-radius: 15px;
    color: #40514e;
    background: #f7fbfa;
    font-size: 12px;
    line-height: 2;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-OrderUpdate-meta {
    margin: 0 0 6px !important;
    color: #087f79;
    font-size: 10px;
    font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-OrderUpdate-description p {
    margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details {
    overflow: hidden;
    margin: 0 !important;
    border: 1px solid #dceae8 !important;
    border-radius: 16px;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details th,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details td {
    padding: 13px 15px !important;
    border: 0 !important;
    border-bottom: 1px solid #e6efee !important;
    vertical-align: middle;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details tr:last-child th,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details tr:last-child td {
    border-bottom: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details address {
    min-height: 190px;
    margin: 0 !important;
    padding: 18px !important;
    border: 1px solid #dceae8 !important;
    border-radius: 16px;
    color: #53635f;
    background: #f9fcfb;
    font-style: normal;
    font-size: 12px;
    line-height: 2;
}

@media (max-width: 760px) {
    body.woocommerce-cart .wc-block-cart-item__total {
        width: auto !important;
        min-width: 0 !important;
    }

    body.woocommerce-checkout #shipping_method li,
    body.woocommerce-checkout .woocommerce-shipping-methods li,
    .st-cart-summary-panel .woocommerce-shipping-methods li {
        padding: 12px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details address {
        min-height: 0;
    }
}

/* Fallback when WooCommerce uses its stock lost-password template. */
body.woocommerce-lost-password .woocommerce:not(:has(.st-password-page)) {
    width: min(calc(100% - 28px), 720px);
    margin: 30px auto 90px;
    padding: clamp(24px, 5vw, 44px);
    border: 1px solid #dceae8;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 58px rgba(0, 43, 41, .08);
}

body.woocommerce-lost-password .woocommerce:not(:has(.st-password-page)) > p,
body.woocommerce-lost-password .woocommerce:not(:has(.st-password-page)) .woocommerce-message {
    color: #5f706d;
    font-size: 13px;
    line-height: 2;
}

body.woocommerce-lost-password form.lost_reset_password:not(.st-password-form) {
    display: grid;
    gap: 16px;
    margin: 20px 0 0 !important;
    padding: 22px !important;
    border: 1px solid #dceae8;
    border-radius: 18px;
    background: #f8fcfb;
}

body.woocommerce-lost-password form.lost_reset_password:not(.st-password-form) .form-row {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-lost-password form.lost_reset_password:not(.st-password-form) label {
    display: block;
    margin-bottom: 8px;
    color: #173231;
    font-size: 12px;
    font-weight: 900;
}

body.woocommerce-lost-password form.lost_reset_password:not(.st-password-form) input.input-text {
    width: 100% !important;
    min-height: 52px;
    padding: 0 14px !important;
    border: 1px solid #d7e7e5 !important;
    border-radius: 13px !important;
    background: #fff !important;
    font-family: inherit;
}

body.woocommerce-lost-password form.lost_reset_password:not(.st-password-form) button.button {
    width: 100%;
    min-height: 50px;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 13px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #16b7b1, #087f79) !important;
    font-family: inherit !important;
    font-weight: 900 !important;
}

/* ==========================================================
   SiXThem 1.4.2 — responsive cart item, clean checkout
   radios and clearer My Account order actions.
   Keep this section last so it wins over WooCommerce Blocks.
   ========================================================== */

/* Cart Block: render every product as one continuous card instead of
   separate table cells that create the empty stepped/notched area. */
body.woocommerce-cart table.wc-block-cart-items {
    display: block !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.woocommerce-cart table.wc-block-cart-items tbody {
    display: grid !important;
    gap: 14px;
}

body.woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row {
    width: 100%;
    min-width: 0;
    display: grid !important;
    grid-template-columns: 165px minmax(0, 1fr) 140px;
    grid-template-areas: "total product image";
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--st-cart-line) !important;
    border-radius: 22px;
    direction: ltr;
    background: #fff;
    box-shadow: 0 13px 34px rgba(0, 65, 61, .055);
}

body.woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row > td {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 20px 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    direction: rtl;
    background: transparent !important;
    box-shadow: none !important;
    vertical-align: middle !important;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image {
    grid-area: image;
    width: auto !important;
    padding-inline: 8px 16px !important;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__product {
    grid-area: product;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total {
    grid-area: total;
    width: auto !important;
    min-width: 0 !important;
    padding-inline: 16px 8px !important;
    text-align: center !important;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    width: 100%;
    min-width: 0 !important;
    min-height: 0 !important;
    display: grid !important;
    justify-items: center;
    gap: 4px;
    margin: 0 !important;
    padding: 13px 10px !important;
}

/* Tablet: keep image on the right and move line total under product data. */
@media (max-width: 960px) {
    body.woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row {
        grid-template-columns: minmax(0, 1fr) 118px;
        grid-template-areas:
            "product image"
            "total image";
        align-items: center;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total {
        justify-self: start;
        width: min(100%, 175px) !important;
        padding: 0 16px 18px !important;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__product {
        padding-bottom: 10px !important;
    }
}

/* Phone: compact two-column product header and a full-width total row. */
@media (max-width: 700px) {
    body.woocommerce-cart table.wc-block-cart-items tbody {
        gap: 12px;
    }

    body.woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row {
        grid-template-columns: minmax(0, 1fr) 92px;
        grid-template-areas:
            "product image"
            "total total";
        border-radius: 18px;
    }

    body.woocommerce-cart table.wc-block-cart-items tr.wc-block-cart-items__row > td {
        padding: 16px 12px !important;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image {
        padding: 16px 10px 8px 8px !important;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image a {
        width: 76px;
        height: 76px;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__product {
        padding: 16px 8px 8px 12px !important;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__quantity {
        gap: 8px;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total {
        width: auto !important;
        max-width: none;
        justify-self: stretch;
        padding: 0 12px 14px !important;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total-price-and-sale-badge-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px !important;
        border-radius: 11px;
        text-align: right;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total-price-and-sale-badge-wrapper::before {
        font-size: 9px;
    }

    body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total .wc-block-components-product-price {
        width: auto;
        justify-content: flex-end;
        font-size: 14px;
    }
}

/* WooCommerce Checkout Block: its native checked dot was absolutely
   positioned after the theme moved the input, leaving a black dot in the
   middle of the card. Draw the complete radio in the input itself. */
body.woocommerce-checkout .wc-block-components-radio-control__option {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 11px !important;
    direction: rtl;
}

body.woocommerce-checkout .wc-block-components-radio-control__input {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 20px;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border: 2px solid #9db7b4 !important;
    border-radius: 50% !important;
    outline: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transform: none !important;
    background: #fff !important;
    box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__input::before,
body.woocommerce-checkout .wc-block-components-radio-control__input::after {
    content: none !important;
    display: none !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__input:checked {
    border-color: #16b7b1 !important;
    background: radial-gradient(circle at center, #16b7b1 0 5px, #fff 6px) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option > :not(.wc-block-components-radio-control__input) {
    min-width: 0;
    flex: 1 1 auto;
    grid-column: auto !important;
}

/* My Account orders: use a readable, consistently sized action button. */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions {
    min-width: 132px;
    text-align: center !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a.button {
    width: auto !important;
    min-width: 112px;
    min-height: 40px;
    margin: 0 auto !important;
    padding: 8px 14px !important;
    line-height: 1.6 !important;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions {
        min-width: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a.button {
        width: 100% !important;
        min-width: 0;
    }
}

.woocommerce-account .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.woocommerce-account .woocommerce-columns--addresses::before,
.woocommerce-account .woocommerce-columns--addresses::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-columns--addresses {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================
   SiXThem 1.4.3 — pay-for-order page normalization.
   The order-pay endpoint is a different WooCommerce screen from
   the regular checkout, so it needs its own constrained layout.
   ========================================================== */
body.woocommerce-order-pay {
    overflow-x: hidden;
    background: #f4faf9;
}

body.woocommerce-order-pay .st-page-content {
    padding: 0 0 42px;
    background: #f4faf9;
}

body.woocommerce-order-pay .st-page-content > .st-container {
    width: min(calc(100% - 30px), 1120px) !important;
    max-width: 1120px !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}

body.woocommerce-order-pay .st-page-content article,
body.woocommerce-order-pay .st-page-content article .woocommerce {
    width: 100%;
    min-width: 0;
}

body.woocommerce-order-pay .st-page-content article > h1.entry-title,
body.woocommerce-order-pay .st-page-content article > h1:first-child {
    display: none;
}

body.woocommerce-order-pay .woocommerce {
    display: grid;
    gap: 20px;
    margin: 38px auto 70px !important;
    padding: clamp(20px, 4vw, 34px) !important;
    border: 1px solid #dceae8;
    border-radius: 26px;
    direction: rtl;
    color: #173231;
    background: #fff;
    box-shadow: 0 18px 52px rgba(0, 65, 61, .07);
}

body.woocommerce-order-pay .woocommerce > h1,
body.woocommerce-order-pay .woocommerce > h2,
body.woocommerce-order-pay .woocommerce > h3 {
    width: 100%;
    margin: 0 !important;
    color: #173231;
    font-family: inherit;
    font-size: clamp(27px, 4vw, 41px);
    font-weight: 950;
    line-height: 1.45;
    text-align: right;
}

body.woocommerce-order-pay ul.order_details,
body.woocommerce-order-pay .woocommerce-order-overview {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #dceae8;
    border-radius: 18px;
    direction: rtl;
    background: #f8fcfb;
    list-style: none !important;
}

body.woocommerce-order-pay ul.order_details::before,
body.woocommerce-order-pay ul.order_details::after,
body.woocommerce-order-pay .woocommerce-order-overview::before,
body.woocommerce-order-pay .woocommerce-order-overview::after {
    content: none !important;
    display: none !important;
}

body.woocommerce-order-pay ul.order_details li,
body.woocommerce-order-pay .woocommerce-order-overview li {
    min-width: 0;
    float: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin: 0 !important;
    padding: 16px !important;
    border: 0 !important;
    border-left: 1px solid #dceae8 !important;
    color: #718381;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.7;
    text-align: right;
    text-transform: none !important;
}

body.woocommerce-order-pay ul.order_details li:last-child,
body.woocommerce-order-pay .woocommerce-order-overview li:last-child {
    border-left: 0 !important;
}

body.woocommerce-order-pay ul.order_details li strong,
body.woocommerce-order-pay .woocommerce-order-overview li strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #173231;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.6;
}

body.woocommerce-order-pay form#order_review {
    width: 100%;
    min-width: 0;
    display: grid;
    gap: 18px;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-order-pay form#order_review table.shop_table {
    width: 100% !important;
    table-layout: fixed;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid #dceae8 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: 17px;
    background: #fff;
}

body.woocommerce-order-pay form#order_review table.shop_table th,
body.woocommerce-order-pay form#order_review table.shop_table td {
    padding: 13px 15px !important;
    border: 0 !important;
    border-bottom: 1px solid #e4efed !important;
    color: #173231;
    font-size: 12px;
    line-height: 1.8;
    text-align: right;
}

body.woocommerce-order-pay form#order_review table.shop_table tr:last-child th,
body.woocommerce-order-pay form#order_review table.shop_table tr:last-child td {
    border-bottom: 0 !important;
}

body.woocommerce-order-pay form#order_review table.shop_table thead th,
body.woocommerce-order-pay form#order_review table.shop_table tfoot th {
    background: #f4faf9;
    font-weight: 900;
}

body.woocommerce-order-pay #payment {
    width: 100%;
    margin: 0 !important;
    padding: 18px !important;
    border: 1px solid #dceae8 !important;
    border-radius: 18px !important;
    background: #f8fcfb !important;
    box-shadow: none !important;
}

body.woocommerce-order-pay #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    margin: 0 0 16px !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

body.woocommerce-order-pay #payment ul.payment_methods > li {
    margin: 0 !important;
    padding: 14px !important;
    border: 1px solid #d9e8e6;
    border-radius: 14px;
    background: #fff;
}

body.woocommerce-order-pay #payment .form-row {
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-order-pay #place_order,
body.woocommerce-order-pay .woocommerce button.button.alt,
body.woocommerce-order-pay .woocommerce input.button.alt,
body.woocommerce-order-pay .woocommerce a.button.alt {
    min-width: 160px;
    min-height: 48px;
    margin: 0 !important;
    padding: 10px 22px !important;
    border: 0 !important;
    border-radius: 13px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #16b7b1, #087f79) !important;
    box-shadow: 0 10px 24px rgba(8, 127, 121, .18);
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.6 !important;
}

/* Older Iranian gateways often output their own compact receipt form. */
body.woocommerce-order-pay .woocommerce > form:not(#order_review),
body.woocommerce-order-pay .woocommerce [class*="receipt"] > form,
body.woocommerce-order-pay .woocommerce [class*="gateway"] > form {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid #dceae8;
    border-radius: 16px;
    background: #f8fcfb;
}

body.woocommerce-order-pay .woocommerce > form:not(#order_review) button,
body.woocommerce-order-pay .woocommerce > form:not(#order_review) input[type="submit"],
body.woocommerce-order-pay .woocommerce > form:not(#order_review) a.button,
body.woocommerce-order-pay .woocommerce [class*="receipt"] a.button,
body.woocommerce-order-pay .woocommerce [class*="receipt"] button,
body.woocommerce-order-pay .woocommerce [class*="gateway"] a.button,
body.woocommerce-order-pay .woocommerce [class*="gateway"] button {
    min-height: 46px;
    margin: 0 !important;
    padding: 9px 20px !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

@media (max-width: 760px) {
    body.woocommerce-order-pay .st-page-content > .st-container {
        width: calc(100% - 22px) !important;
    }

    body.woocommerce-order-pay .woocommerce {
        margin-top: 24px !important;
        padding: 17px !important;
        border-radius: 20px;
    }

    body.woocommerce-order-pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.woocommerce-order-pay ul.order_details li,
    body.woocommerce-order-pay .woocommerce-order-overview li {
        min-height: 78px;
        border-bottom: 1px solid #dceae8 !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce-order-pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview {
        grid-template-columns: 1fr;
    }

    body.woocommerce-order-pay ul.order_details li,
    body.woocommerce-order-pay .woocommerce-order-overview li {
        border-left: 0 !important;
    }

    body.woocommerce-order-pay #payment .form-row,
    body.woocommerce-order-pay .woocommerce > form:not(#order_review) {
        align-items: stretch;
        flex-direction: column;
    }

    body.woocommerce-order-pay #place_order,
    body.woocommerce-order-pay .woocommerce > form:not(#order_review) button,
    body.woocommerce-order-pay .woocommerce > form:not(#order_review) input[type="submit"],
    body.woocommerce-order-pay .woocommerce > form:not(#order_review) a.button {
        width: 100%;
    }
}

.sixthem-settings .form-table th{
    text-align:right;
    width:220px;
}

.sixthem-settings .form-table td{
    text-align:right;
}
