[hidden] {
  display: none !important;
}

.option-count-row {
  display: block;
  text-align: center;
  color: #007c7d;
  font-size: 13px;
  font-weight: 700;
}

.content-page.panel {
  width: min(860px, 100%);
  margin-inline: auto;
}

.site-header {
  display: block;
  padding: 0;
}

.site-header-inner {
  position: relative;
  width: min(1120px, 92vw);
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(280px, 520px) auto;
  gap: 22px;
  align-items: center;
}

.site-header nav {
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 9px;
  min-width: max-content;
}

.site-header .nav-action {
  white-space: nowrap;
  font-weight: 600;
}

.site-header .nav-action span {
  font-weight: 600;
}

.nav-cart {
  position: relative;
  width: 44px;
  min-width: 44px;
  padding: 0;
  gap: 0;
}

.nav-cart svg {
  width: 20px;
  height: 20px;
}

.cart-count-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ef233c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(239, 35, 60, .28);
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 18, 30, .52);
  opacity: 0;
  transition: opacity .22s ease;
}

.cart-drawer-backdrop[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(390px, 100vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid #e3e8f0;
  box-shadow: -28px 0 55px rgba(23, 32, 51, .22);
  transform: translateX(104%);
  transition: transform .24s ease;
}

body.cart-drawer-open {
  overflow: hidden;
}

body.cart-drawer-open .cart-drawer {
  transform: translateX(0);
}

body.cart-drawer-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid #eef2f6;
}

.cart-drawer-head h2 {
  margin: 0;
  color: #172033;
  font-size: 26px;
  line-height: 1.05;
}

.cart-drawer-head button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #f6f8fb;
  color: #172033;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.cart-drawer-head button:hover {
  background: #eefdfa;
  color: #00868a;
  transform: rotate(90deg);
}

.cart-drawer-head button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-drawer-body {
  overflow: auto;
  padding: 8px 20px 20px;
}

.cart-drawer-empty {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 280px;
  color: #667085;
  text-align: center;
}

.cart-drawer-empty strong {
  color: #526078;
}

.cart-drawer-empty p {
  margin: 12px 0 0;
}

.cart-drawer-items {
  display: grid;
  gap: 10px;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fbfdff;
}

.cart-drawer-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: transparent;
}

.cart-drawer-thumb img,
.checkout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.cart-drawer-item div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cart-drawer-item strong,
.cart-drawer-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-drawer-item strong {
  color: #172033;
  font-size: 14px;
}

.cart-drawer-item small,
.cart-drawer-item span {
  color: #667085;
  font-size: 12px;
}

.cart-drawer-item b {
  color: #00868a;
  white-space: nowrap;
}

.cart-drawer-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cart-drawer-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #eefdfa;
  color: #00868a;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.cart-drawer-controls span {
  color: #526078;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.cart-drawer-controls .cart-drawer-remove {
  border-color: #ffd1d1;
  background: #fff5f5;
  color: #c92a2a;
}

.cart-drawer-foot {
  display: grid;
  gap: 14px;
  padding: 24px 20px 22px;
  border-top: 1px solid #e5e9f0;
}

.cart-checkout-button {
  border: 0;
  border-radius: 8px;
  background: #0f8b8d;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #667085;
}

.cart-drawer-total strong {
  color: #00868a;
  font-size: 22px;
}

.cart-checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

.cart-checkout-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-modern {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.remember-me {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
}

.remember-me input {
  width: auto;
  accent-color: #0f8b8d;
}

.account-dashboard {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid #d6e5ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f1fffd 60%, #fffaf2 100%);
  box-shadow: 0 18px 42px rgba(23, 32, 51, .06);
}

.account-hero > div:first-child {
  display: grid;
  gap: 8px;
}

.account-hero span,
.account-panel-head span {
  color: #00868a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.account-hero h1 {
  margin: 0;
  color: #102033;
  font-size: 34px;
  line-height: 1.05;
}

.account-hero p {
  max-width: 650px;
  margin: 0;
  color: #526174;
  line-height: 1.58;
}

.account-user-card {
  display: grid;
  gap: 5px;
  min-width: 230px;
  padding: 14px;
  border: 1px solid #c8eee9;
  border-radius: 8px;
  background: #fff;
}

.account-user-card strong {
  color: #102033;
}

.account-user-card span {
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-stats article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
}

.account-stats span,
.account-order-card span,
.account-settings-form label > span {
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.account-stats strong {
  color: #0f4650;
  font-size: 22px;
}

.account-tabs {
  display: inline-flex;
  width: max-content;
  gap: 8px;
  padding: 6px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 51, .05);
}

.account-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #435069;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.account-tabs button.is-active {
  border-color: #0f8b8d;
  background: #0f8b8d;
  color: #fff;
  box-shadow: 0 12px 22px rgba(15, 139, 141, .18);
}

.account-tabs svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .05);
}

.account-panel[hidden] {
  display: none;
}

.account-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-panel-head h2 {
  margin: 4px 0 0;
  color: #102033;
  font-size: 24px;
  line-height: 1.1;
}

.account-panel-head > strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8fbf8;
  color: #00868a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.account-order-list {
  display: grid;
  gap: 9px;
}

.account-order-card {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(110px, .45fr) minmax(130px, .5fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fbfdff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.account-order-card:hover {
  transform: translateY(-1px);
  border-color: #b9e6e1;
  box-shadow: 0 12px 26px rgba(15, 139, 141, .08);
}

.account-order-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.account-order-card strong {
  overflow: hidden;
  color: #102033;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-card em {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eefdfa;
  color: #00868a;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.account-order-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #fff;
  color: #00868a;
  font-size: 13px;
  font-weight: 600;
}

.account-settings-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-settings-form label {
  display: grid;
  gap: 7px;
}

.account-settings-form input {
  min-height: 44px;
  border-color: #cfe0ea;
}

.account-settings-form input:disabled {
  background: #f3f6f9;
  color: #667085;
  cursor: not-allowed;
}

.account-settings-form small {
  color: #8a94a6;
  font-size: 12px;
}

.account-settings-form .btn {
  width: max-content;
  min-height: 44px;
  padding-inline: 18px;
}

.account-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 230px;
  padding: 28px;
  border: 1px dashed #c8d8e6;
  border-radius: 8px;
  background: #fbfdff;
  text-align: center;
}

.account-empty h3,
.account-empty p {
  margin: 0;
}

.account-empty p {
  color: #667085;
}

.support-compose-form {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fffe, #ffffff);
}

.support-compose-form[hidden] {
  display: none !important;
}

.support-compose-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.support-compose-form label > span,
.support-message > span,
.support-ticket-top span {
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.support-compose-form input,
.support-compose-form textarea {
  width: 100%;
  border-color: #cfe0ea;
}

.support-compose-form textarea {
  min-height: 92px;
  resize: vertical;
}

.support-compose-form .btn {
  min-height: 44px;
  white-space: nowrap;
}

.support-panel-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.support-panel-actions .btn {
  min-height: 38px;
  padding: 9px 12px;
  font-weight: 500;
}

.support-ticket-list {
  display: grid;
  gap: 12px;
}

.support-ticket-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fbfdff;
}

.support-ticket-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.support-ticket-top h3 {
  margin: 4px 0 0;
  color: #102033;
  font-size: 17px;
  line-height: 1.25;
}

.support-ticket-top em,
.support-waiting {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eefdfa;
  color: #00868a;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.support-message {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid #e2edf4;
  border-radius: 8px;
  background: #fff;
}

.support-message p {
  margin: 0;
  color: #243246;
  line-height: 1.6;
}

.support-reply {
  border-color: #bceee8;
  background: #f2fffd;
}

.support-waiting {
  background: #fff7e8;
  color: #b76a00;
}

.support-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: start;
}

.support-table,
.support-thread {
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.support-table-head,
.support-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(110px, .7fr) 100px 135px 70px;
  gap: 10px;
  align-items: center;
  padding: 12px;
}

.support-table-head {
  background: #f6fbfc;
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.support-table-row {
  border-top: 1px solid #edf3f7;
}

.support-table-row.is-active {
  background: #f1fffd;
}

.support-table-row span {
  min-width: 0;
}

.support-table-row strong,
.support-table-row small {
  display: block;
}

.support-table-row strong {
  color: #00868a;
}

.support-table-row small {
  overflow: hidden;
  color: #243246;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-table-row em {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eefdfa;
  color: #00868a;
  font-size: 12px;
  font-style: normal;
}

.support-table-row a {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid #cfe9e6;
  border-radius: 8px;
  color: #00868a;
  text-decoration: none;
}

.support-thread {
  display: grid;
  gap: 0;
}

.support-thread-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #edf3f7;
  background: linear-gradient(135deg, #ffffff, #f4fffd);
}

.support-thread-head span,
.support-bubble span {
  color: #667085;
  font-size: 12px;
}

.support-thread-head h3 {
  margin: 4px 0 0;
}

.support-thread-head em {
  height: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eefdfa;
  color: #00868a;
  font-size: 12px;
  font-style: normal;
}

.support-thread-messages {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fbfdff;
}

.support-bubble {
  display: grid;
  gap: 6px;
  max-width: 86%;
  padding: 12px;
  border: 1px solid #e2edf4;
  border-radius: 8px;
  background: #fff;
}

.support-bubble.is-admin {
  justify-self: end;
  border-color: #bceee8;
  background: #f2fffd;
}

.support-bubble p {
  margin: 0;
  line-height: 1.55;
}

.support-thread-reply {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #edf3f7;
}

.support-thread-reply label {
  display: grid;
  gap: 7px;
}

.support-thread-reply textarea {
  min-height: 110px;
  resize: vertical;
}

.support-thread-empty {
  min-height: 260px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.support-thread-empty h3,
.support-thread-empty p {
  margin: 0;
}

.product-image-figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-image-figure figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.order-detail-page {
  display: grid;
  gap: 16px;
}

.order-detail-hero,
.order-detail-card,
.order-delivery-card,
.order-status-grid article {
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
}

.order-detail-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f3fffd 62%, #fffaf2);
}

.order-detail-hero span,
.order-detail-card-head span {
  color: #00868a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-detail-hero h1,
.order-detail-hero p,
.order-detail-card-head h2 {
  margin: 0;
}

.order-detail-hero h1 {
  margin-top: 5px;
  font-size: 30px;
}

.order-detail-hero p {
  margin-top: 7px;
  color: #667085;
}

.order-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-status-grid article {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.order-status-grid span,
.delivery-date-row span {
  color: #667085;
  font-size: 12px;
}

.order-status-grid strong,
.delivery-date-row strong {
  color: #102033;
}

.order-detail-card,
.order-delivery-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.order-detail-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf3f7;
}

.order-detail-card-head h2 {
  margin-top: 4px;
}

.order-detail-card-head > strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eefdfa;
  color: #00868a;
  font-size: 12px;
}

.order-item-list {
  display: grid;
  gap: 10px;
}

.order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px 120px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #edf3f7;
  border-radius: 8px;
  background: #fbfdff;
}

.order-item-row strong,
.order-item-row small {
  display: block;
}

.order-item-row small {
  margin-top: 4px;
  color: #667085;
}

.order-item-row span {
  color: #667085;
  text-align: center;
}

.order-item-row b {
  color: #00868a;
  text-align: right;
}

.delivery-copy-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #bceee8;
  border-radius: 8px;
  background: #eefdfa;
  color: #00868a;
  cursor: pointer;
  font-weight: 600;
}

.delivery-copy-button.is-copied {
  background: #00868a;
  color: #fff;
}

.delivery-message-box {
  max-height: 520px;
  overflow: auto;
  padding: 12px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fffe, #ffffff);
}

.delivery-message-content {
  overflow-wrap: anywhere;
  min-height: 120px;
  padding: 11px 12px;
  border: 1px solid #e5eef4;
  border-radius: 8px;
  background: #fff;
  color: #243246;
  line-height: 1.65;
  text-align: left;
}

.delivery-message-content p {
  margin: 0 0 10px;
}

.delivery-message-content p:last-child,
.delivery-message-content ul:last-child {
  margin-bottom: 0;
}

.delivery-message-content strong {
  color: #102033;
  font-weight: 800;
}

.delivery-render-list {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 22px;
}

.delivery-render-list li {
  padding-left: 2px;
}

.delivery-render-space {
  height: 12px;
}

.delivery-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f6fbfc;
}

.delivery-pending-box {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  border: 1px dashed #c8d8e6;
  border-radius: 8px;
  background: #fbfdff;
  text-align: center;
}

.delivery-pending-box strong,
.delivery-pending-box p {
  margin: 0;
}

.delivery-pending-box p {
  color: #667085;
}

.checkout-title-card,
.checkout-panel {
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
}

.checkout-title-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #f8fffe, #fffaf2);
}

.checkout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #0f8b8d;
  color: #fff;
}

.checkout-icon svg,
.checkout-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-title-card small {
  color: #d18a00;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-title-card h1 {
  margin: 2px 0 3px;
  font-size: 24px;
  line-height: 1.05;
}

.checkout-title-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.checkout-account-note,
.checkout-warning {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.checkout-account-note strong {
  font-weight: 600;
}

.checkout-account-note {
  border: 1px solid #bbf0d0;
  background: #f1fff6;
  color: #077343;
}

.checkout-warning {
  border: 1px solid #ffb8b8;
  background: #fff3f3;
  color: #b42318;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.checkout-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.checkout-section-head h2 {
  margin: 0;
  font-size: 14px;
}

.checkout-section-head span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8fbf8;
  color: #00868a;
  font-size: 11px;
  font-weight: 900;
}

.payment-method-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 12px;
  border: 1px solid #0f8b8d;
  border-radius: 8px;
  background: #faffff;
  font-weight: 800;
}

.payment-method-choice input {
  width: auto;
  accent-color: #0f8b8d;
}

.bank-info-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #f3ddbd;
  border-radius: 8px;
  background: #fffaf2;
}

.bank-info-card > strong {
  color: #172033;
}

.bank-info-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.bank-box,
.bank-note {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.bank-box {
  border: 1px solid #f1c88d;
}

.bank-box span {
  font-weight: 900;
}

.bank-iban-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.bank-iban-row > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.iban-copy-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #eefdfa;
  color: #00868a;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.iban-copy-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iban-copy-button.is-copied {
  border-color: #0f8b8d;
  background: #0f8b8d;
  color: #fff;
}

.bank-box small,
.bank-note span {
  color: #667085;
  font-size: 12px;
}

.bank-note {
  border: 1px dashed #f4a34f;
}

.bank-note b {
  color: #d18a00;
  font-size: 12px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-fields label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
}

.checkout-fields input {
  min-height: 42px;
  background: #f8f4ed;
}

.checkout-terms {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.checkout-terms input {
  width: auto;
  margin-top: 2px;
  accent-color: #0f8b8d;
}

.auth-terms {
  margin: 2px 0;
}

.checkout-terms button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f8b8d;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.checkout-terms button:hover,
.checkout-terms button:focus-visible {
  color: #075f61;
}

.legal-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(12, 18, 30, .52);
  opacity: 0;
  transition: opacity .22s ease;
}

.legal-modal-backdrop[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  width: min(620px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  padding: 24px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(23, 32, 51, .24);
  transform: translate(-50%, -46%) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

body.legal-modal-open {
  overflow: hidden;
}

body.legal-modal-open .legal-modal-backdrop {
  opacity: 1;
}

body.legal-modal-open .legal-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

body.legal-modal-open .legal-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(.98);
}

body.legal-modal-open .legal-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.legal-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: -8px -8px 8px 12px;
  border: 0;
  border-radius: 8px;
  background: #f4f0eb;
  color: #172033;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.legal-modal-panel {
  display: grid;
  gap: 10px;
}

.legal-modal-panel[hidden] {
  display: none;
}

.legal-modal-panel h2 {
  margin: 0 42px 8px 0;
  color: #172033;
  font-size: 24px;
  line-height: 1.15;
}

.legal-modal-panel h3 {
  margin: 10px 0 0;
  color: #0f8b8d;
  font-size: 14px;
}

.legal-modal-panel p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.58;
}

.checkout-items {
  display: grid;
  gap: 8px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
}

.checkout-item-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
}

.checkout-item div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.checkout-item strong {
  overflow: hidden;
  color: #172033;
  font-size: 13px;
  text-overflow: ellipsis;
}

.checkout-item small {
  color: #667085;
}

.checkout-item b,
.checkout-total strong {
  color: #00868a;
  white-space: nowrap;
}

.order-summary-panel textarea {
  height: 76px;
  min-height: 76px;
  max-height: 76px;
  resize: none;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #e5e9f0;
  color: #667085;
}

.checkout-total strong {
  font-size: 24px;
}

.checkout-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #0f8b8d;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.checkout-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

@media (max-width: 620px) {
  .board-head-badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .board-head-badges::-webkit-scrollbar {
    display: none;
  }

  .board-head-badges span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .checkout-account-note {
    display: grid;
  }

  .account-hero,
  .account-stats,
  .account-settings-form,
  .account-order-card,
  .support-compose-form,
  .support-workspace,
  .support-table-head,
  .support-table-row {
    grid-template-columns: 1fr;
  }

  .account-hero {
    padding: 18px;
  }

  .account-user-card {
    min-width: 0;
  }

  .account-tabs {
    width: 100%;
  }

  .account-tabs button {
    flex: 1;
    justify-content: center;
    padding-inline: 10px;
  }

  .account-panel {
    padding: 14px;
  }

  .account-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-panel-actions {
    width: 100%;
    justify-content: space-between;
  }

  .account-order-card a,
  .account-settings-form .btn,
  .support-compose-form .btn {
    width: 100%;
  }

  .support-ticket-top {
    flex-direction: column;
  }

  .support-table-head {
    display: none;
  }

  .support-table-row {
    align-items: stretch;
  }

  .support-table-row a {
    justify-self: stretch;
    text-align: center;
  }

  .support-bubble {
    max-width: 100%;
  }

  .order-detail-hero,
  .order-detail-card-head,
  .delivery-date-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-status-grid,
  .order-item-row {
    grid-template-columns: 1fr;
  }

  .order-item-row span,
  .order-item-row b {
    text-align: left;
  }
}

.header-live-search {
  position: relative;
  z-index: 30;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.header-live-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.header-search-box {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #cfe3e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 32, 51, .07);
}

.header-search-box svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #0f8b8d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-box input {
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 700;
}

.header-search-results {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: min(620px, 92vw);
  max-height: min(560px, calc(100vh - 120px));
  overflow: auto;
  transform: translateX(-50%);
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: rgba(249, 253, 255, .97);
  box-shadow: 0 22px 48px rgba(23, 32, 51, .18);
}

.header-search-results[hidden] {
  display: none;
}

.search-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 2px 2px;
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.search-result-head strong {
  color: #007c7d;
  font-weight: 700;
  text-transform: uppercase;
}

.search-result-head span {
  font-weight: 500;
}

.search-result-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 42px 42px;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 10px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  transition: border-color .18s ease, background .18s ease;
}

.search-result-item:hover {
  border-color: #95d9d5;
  background: #f7fffe;
}

.search-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: transparent;
  overflow: hidden;
}

.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-thumb:has(img) {
  border-style: solid;
  background: #fff;
}

.search-thumb-empty {
  background: #f8fafc;
}

.search-result-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.search-result-category {
  color: #526078;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result-name {
  color: #06172a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.search-result-name mark {
  padding: 0 2px;
  border-radius: 4px;
  background: #fff2a8;
  color: inherit;
}

.search-result-price {
  color: #00868a;
  font-size: 14px;
  font-weight: 900;
}

.search-result-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.search-result-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-detail-action {
  background: #eefdfa;
  color: #00868a;
}

.search-cart-action {
  background: #172033;
  color: #fff;
}

.search-empty {
  padding: 16px;
  color: #667085;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header-inner {
    grid-template-columns: 210px minmax(220px, 1fr);
    gap: 14px;
    padding: 12px 0;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 620px) {
  .site-header-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .site-header nav {
    justify-content: stretch;
  }

  .site-header nav .nav-action {
    flex: 1;
  }

  .site-header nav .nav-cart {
    flex: 0 0 44px;
  }

  .header-search-results {
    left: 0;
    width: 100%;
    transform: none;
  }

  .cart-drawer {
    width: min(360px, 96vw);
  }

  .search-result-item {
    grid-template-columns: 48px minmax(0, 1fr) 38px 38px;
    min-height: 70px;
    gap: 8px;
  }

  .search-thumb,
  .search-result-action {
    width: 38px;
    height: 38px;
  }

  .search-result-name {
    font-size: 14px;
  }
}

.source-note-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 12px;
  border: 1px solid #d5efeb;
  border-radius: 8px;
  background: #f5fffd;
}

.source-note-list div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: #26344b;
  line-height: 1.45;
}

.source-note-list span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0fafa8;
  box-shadow: 0 0 0 4px #dff7f4;
}

.category-showcase a.active {
  border-color: #0f8b8d;
  background: #eefdfa;
  color: #0b6f70;
}

.category-showcase .showcase-title .eyebrow {
  display: none;
}

.category-showcase {
  padding: 14px;
  border-color: #d5e6ed;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  box-shadow: 0 18px 42px rgba(23, 32, 51, .08);
}

.showcase-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid #e6edf4;
}

.showcase-title h1 {
  margin: 0;
  color: #102033;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 650;
}

.showcase-title::after {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: #0f8b8d;
}

.category-showcase nav {
  gap: 8px;
}

.category-showcase a {
  position: relative;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  min-height: 56px;
  padding: 8px 9px;
  border-color: #e1ebf2;
  background: #fff;
  color: #243147;
  box-shadow: 0 6px 18px rgba(23, 32, 51, .04);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.category-showcase a:hover {
  transform: translateY(-1px);
  border-color: #b9e6e1;
  background: #f7fffe;
  box-shadow: 0 12px 26px rgba(15, 139, 141, .08);
}

.category-showcase a.active {
  border-color: #0f8b8d;
  background: linear-gradient(135deg, #effffd, #ffffff);
  box-shadow: inset 3px 0 0 #0f8b8d, 0 12px 28px rgba(15, 139, 141, .1);
}

.category-showcase a span {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}

.category-icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid #ccefea;
  border-radius: 8px;
  background: #eefdfa;
  color: #0f8b8d;
}

.category-showcase a.active .category-icon {
  border-color: #0f8b8d;
  background: #0f8b8d;
  color: #fff;
}

.category-arrow {
  width: 28px;
  height: 28px;
  padding: 7px;
  border-radius: 8px;
  background: #f3f7fb;
  color: #6b788d;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.category-showcase a:hover .category-arrow,
.category-showcase a.active .category-arrow {
  background: #e5fbf8;
  color: #0f8b8d;
  transform: translateX(2px);
}

.board-head {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-color: #d5e6ed;
  background: linear-gradient(135deg, #ffffff 0%, #f2fffd 58%, #fffaf2 100%);
  box-shadow: 0 16px 38px rgba(23, 32, 51, .06);
}

.board-head::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #0f8b8d, #ef8354);
}

.board-head-copy {
  position: relative;
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.board-head-copy > span {
  display: inline-flex;
  width: max-content;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e4f8f5;
  color: #007c7d;
  font-size: 12px;
  font-weight: 700;
}

.board-head h2 {
  margin: 0;
  color: #102033;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 700;
}

.board-head p:last-child {
  margin: 0;
  color: #4b5b73;
  font-size: 15px;
  line-height: 1.65;
}

.board-head-badges {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-head-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid #d7ece8;
  border-radius: 8px;
  background: #fff;
  color: #26344b;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(23, 32, 51, .04);
}

.product-title-panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid #cde9e5;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3fffd, #fbfaf2);
  box-shadow: inset 4px 0 0 #0f8b8d, inset 6px 0 0 #ef8354;
}

.product-title-panel h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.product-title-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff7f4;
  color: #007c7d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.detail-buy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  background: #fbfdff;
}

.detail-price-card {
  display: grid;
  align-content: center;
  gap: 2px;
  min-height: 56px;
  padding: 9px 14px;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 4px 0 0 #0fafa8;
}

.detail-price-card span {
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-price-card strong {
  color: #00868a;
  font-size: 26px;
  line-height: 1.05;
  margin: 0;
}

.detail-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.detail-quantity {
  display: grid;
  gap: 4px;
  min-width: 74px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-quantity input {
  width: 74px;
  height: 36px;
  padding: 0 8px;
  border-color: #bfeee8;
  background: #fff;
  color: #0f4650;
  font-weight: 700;
  text-align: center;
}

.icon-cart-btn,
.buy-now-btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
}

.icon-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #eefdfa;
  color: #00868a;
  border: 1px solid #bfeee8;
}

.icon-cart-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buy-now-btn {
  min-width: 114px;
  min-height: 54px;
  padding: 0 22px;
  background: #0f8b8d;
  color: #fff;
}

.cart-page-shell {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.cart-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-page-head span {
  color: #00868a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-page-head h1 {
  margin: 4px 0 0;
  color: #102033;
  font-size: 30px;
  line-height: 1.1;
}

.cart-page-continue {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #eefdfa;
  color: #00868a;
  font-size: 13px;
  font-weight: 600;
}

.cart-page-list {
  display: grid;
  gap: 10px;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, .05);
}

.cart-page-thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}

.cart-page-thumb img,
.cart-page-thumb .image-empty-frame {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-page-item-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.cart-page-item-info strong {
  color: #102033;
  font-size: 15px;
}

.cart-page-item-info small {
  color: #667085;
  line-height: 1.35;
}

.cart-page-line-total {
  color: #00868a;
  white-space: nowrap;
}

.cart-page-summary {
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 18px;
  align-items: center;
  min-width: min(320px, 100%);
  padding: 16px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f2fffd);
}

.cart-page-summary span {
  color: #667085;
}

.cart-page-summary strong {
  color: #00868a;
  font-size: 24px;
  text-align: right;
}

.cart-page-summary .btn {
  grid-column: 1 / -1;
}

.cart-page-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 280px;
  padding: 32px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.cart-page-empty h2,
.cart-page-empty p {
  margin: 0;
}

.cart-page-empty p {
  color: #667085;
}

.cart-qty-controls,
.checkout-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-qty-controls button,
.checkout-item-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #eefdfa;
  color: #00868a;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.cart-qty-controls span,
.checkout-item-controls small {
  color: #526078;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.cart-remove-button,
.checkout-remove-button {
  border-color: #ffd1d1 !important;
  background: #fff5f5 !important;
  color: #c92a2a !important;
}

.checkout-item-controls {
  margin-top: 4px;
}

@media (max-width: 620px) {
  .detail-buy-panel {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .buy-now-btn {
    flex: 1;
  }

  .cart-page-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cart-page-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .cart-page-summary {
    justify-self: stretch;
  }
}

.option-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.option-list h2 {
  grid-column: 1 / -1;
  font-size: 16px;
  margin: 0 0 2px;
}

.option-list label {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 56px;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  border: 1px solid #cde9e5;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fffe, #fbfaf2);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.option-list label:has(input:checked) {
  border-color: #0f8b8d;
  box-shadow: inset 0 0 0 1px #0f8b8d;
}

.option-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-list label span {
  color: #07304a;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.option-list label strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #0f8b8d;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .option-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .product-title-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-title-panel h1 {
    font-size: 30px;
  }
}

.product-option-row {
  width: 100%;
  border: 1px solid #bfeee8;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.product-card {
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
  z-index: 1;
}

.product-card-title {
  align-items: start;
}

.product-card-title h3 {
  overflow: visible;
  color: #06172a;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.28;
  word-break: break-word;
}

.product-option-row {
  min-height: 44px;
  align-items: start;
}

.product-option-row span {
  overflow: visible;
  color: #0f4650;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.25;
  word-break: break-word;
}

.product-card.options-open {
  z-index: 80;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #8fded7;
  background: #f5fffd;
  box-shadow: 0 18px 36px rgba(15, 139, 141, .14);
}

.product-card .product-media img,
.product-card .image-empty-frame,
.product-card .card-arrow,
.product-card .cart-icon-btn {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.product-card:hover .product-media img,
.product-card:hover .image-empty-frame {
  transform: scale(1.015);
  border-color: #9ce4dd;
}

.product-card:hover .card-arrow {
  transform: translateX(2px);
  background: #dff8f4;
}

.product-card:hover .cart-icon-btn {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(23, 32, 51, .22);
}

.related-products-section {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 0 4px;
}

.related-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.related-products-head h2 {
  margin: 0;
  color: #102033;
  font-size: 22px;
  line-height: 1.15;
}

.related-products-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8fbf8;
  color: #00868a;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.related-products-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 230px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 2px 2px 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.related-products-row .product-card {
  scroll-snap-align: start;
}

.related-products-row::-webkit-scrollbar {
  height: 8px;
}

.related-products-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #b9deda;
}

.products-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 6px 0 2px;
}

.products-page-head span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 8px;
  color: #00868a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.products-page-head h1 {
  margin: 0;
  color: #102033;
  font-size: 32px;
  line-height: 1.08;
}

.products-page-head p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #526174;
  line-height: 1.55;
}

.products-page-head > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #c8eee9;
  border-radius: 999px;
  background: #e8fbf8;
  color: #00868a;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.modern-filters {
  grid-template-columns: minmax(260px, 1.7fr) minmax(190px, 1fr) minmax(170px, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin: 18px 0 18px;
  padding: 12px;
  border: 1px solid #d6e4ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fffd 100%);
  box-shadow: 0 16px 36px rgba(23, 32, 51, .06);
}

.filter-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.filter-field > span {
  color: #627086;
  font-size: 12px;
  font-weight: 500;
}

.filter-control {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-control svg {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #00868a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.filter-control input,
.modern-filters select {
  height: 46px;
  border-color: #cfe0ea;
  border-radius: 8px;
  background-color: #fff;
  color: #172033;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.filter-control input {
  padding-left: 42px;
}

.filter-control input:focus,
.modern-filters select:focus {
  outline: none;
  border-color: #0f8b8d;
  box-shadow: 0 0 0 3px rgba(15, 139, 141, .12);
}

.filter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #0f8b8d;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(15, 139, 141, .18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.filter-submit:hover {
  transform: translateY(-1px);
  background: #087f81;
  box-shadow: 0 16px 26px rgba(15, 139, 141, .22);
}

.products-empty {
  padding: 22px;
  border: 1px solid #d6e4ee;
  border-radius: 8px;
  background: #fff;
  color: #526174;
}

.modern-filters.is-loading,
[data-products-results].is-loading {
  opacity: .68;
  pointer-events: none;
}

[data-products-results] {
  transition: opacity .16s ease;
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card .product-media img,
  .product-card .image-empty-frame,
  .product-card .card-arrow,
  .product-card .cart-icon-btn {
    transition: none;
  }

  .product-card:hover,
  .product-card:hover .product-media img,
  .product-card:hover .image-empty-frame,
  .product-card:hover .card-arrow,
  .product-card:hover .cart-icon-btn {
    transform: none;
  }
}

.card-option-menu {
  position: absolute;
  left: 8px;
  right: 8px;
  top: calc(100% - 96px);
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(23, 32, 51, .14);
  z-index: 100;
  min-width: 260px;
}

.card-option-menu[hidden] {
  display: none;
}

.card-option-menu button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 8px;
  border: 0;
  border-radius: 7px;
  background: #f7fffe;
  color: #26344b;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.card-option-menu button:hover {
  background: #e8fbf8;
}

.card-option-menu span {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.25;
}

.card-option-menu strong {
  color: #00868a;
  white-space: nowrap;
}

.product-buy-row {
  grid-template-columns: minmax(0, 1fr) 42px 42px;
}

.card-cart-form {
  margin: 0;
  padding: 0;
  width: 42px;
  height: 42px;
}

.card-cart-form .cart-icon-btn {
  border: 0;
  cursor: pointer;
}

.product-buy-row > strong {
  min-width: 0;
  font-size: 16px;
  overflow: visible;
}

.product-option-row {
  grid-template-columns: minmax(0, 1fr) max-content 16px;
}

.product-option-row strong {
  white-space: nowrap;
}

.products,
.compact-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .products,
  .compact-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-filters {
    grid-template-columns: 1fr 1fr;
  }

  .filter-search,
  .filter-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .products-page-head {
    display: grid;
    gap: 12px;
  }

  .products-page-head h1 {
    font-size: 26px;
  }

  .products-page-head > strong {
    justify-self: start;
  }

  .modern-filters {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .filter-search,
  .filter-submit {
    grid-column: auto;
  }

  .filter-submit {
    width: 100%;
  }

  .products,
  .compact-products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 10px;
    gap: 10px;
  }

  .product-card-title,
  .product-option-row,
  .product-buy-row {
    padding: 9px 10px;
  }

  .product-card-title h3,
  .product-option-row span {
    font-size: 15px;
  }

  .rating-badge,
  .product-option-row strong {
    font-size: 13px;
    padding: 3px 8px;
  }

  .product-buy-row {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
  }

  .product-buy-row > strong {
    font-size: 18px;
    padding: 7px 10px;
  }

  .card-arrow {
    display: inline-flex;
  }

  .cart-icon-btn {
    width: 42px;
    height: 42px;
  }

  .card-option-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin-top: -2px;
    box-shadow: 0 12px 24px rgba(23, 32, 51, .12);
  }

  .board-head-badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .board-head-badges::-webkit-scrollbar {
    display: none;
  }

  .board-head-badges span {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

.product-card .product-card-title h3,
.product-card .product-option-row span {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: normal;
  word-break: break-word;
}

.product-card .product-card-title,
.product-card .product-option-row {
  align-items: center;
}

.product-card .product-card-title {
  min-height: 56px;
}

.product-card .product-card-title h3 {
  -webkit-line-clamp: 2;
}

.product-card .product-option-row {
  min-height: 48px;
}

.product-card .product-option-row span {
  -webkit-line-clamp: 2;
  font-size: 13px;
}
