﻿[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;
}

.store-mode-nav {
  width: min(1120px, 92vw);
  min-width: 0;
  margin: 0 auto 12px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.site-header .store-mode-nav {
  justify-content: center;
  min-width: 0;
}

.store-mode-nav::-webkit-scrollbar {
  display: none;
}

.store-mode-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  color: #26344b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 32, 51, .06);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.store-mode-nav a:hover {
  border-color: #84d8d1;
  color: #007c7d;
  transform: translateY(-1px);
}

.store-mode-nav a.is-active {
  border-color: #14a39d;
  background: #14a39d;
  color: #fff;
  box-shadow: 0 12px 24px rgba(20, 163, 157, .22);
}

.store-mode-nav a.is-active:hover {
  border-color: #14a39d;
  background: #14a39d;
  color: #fff;
}

.store-mode-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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-virtual-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.account-virtual-list {
  display: grid;
  gap: 9px;
  max-height: 560px;
  overflow: auto;
  padding-right: 4px;
}

.account-virtual-list a {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #f8fbff;
  color: #10233f;
}

.account-virtual-list a.is-active {
  border-color: #0f8b8d;
  background: #effdfb;
  box-shadow: 0 10px 22px rgba(15, 139, 141, .08);
}

.account-virtual-list span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.account-virtual-list small {
  color: #647084;
}

.account-virtual-list strong {
  color: #00868a;
}

.account-virtual-detail {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #cde9e7;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f4fffd);
}

.account-virtual-actions {
  display: flex;
  justify-content: flex-end;
}

.virtual-cancel-button:disabled {
  cursor: not-allowed;
  opacity: .72;
  box-shadow: none;
}

.virtual-cancel-info {
  display: grid;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid #f2d392;
  border-radius: 8px;
  background: #fff8e8;
  color: #4f3b10;
  line-height: 1.55;
}

.virtual-cancel-info strong {
  color: #9a6500;
  font-size: 13px;
  font-weight: 700;
}

.virtual-cancel-info p {
  margin: 0;
  font-size: 13px;
}

.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: 1fr;
  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(160px, 1.4fr) minmax(120px, .85fr) 100px minmax(170px, .9fr) 74px;
  gap: 14px;
  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 > span:nth-child(4) {
  white-space: normal;
  word-break: keep-all;
}

.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-workspace .support-thread {
  order: -1;
}

.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: 156px;
  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[hidden] {
  display: none;
}

.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;
}

.checkout-submit .submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 999px;
  animation: submitSpin .75s linear infinite;
}

.checkout-submit.is-loading {
  pointer-events: none;
}

.checkout-submit.is-loading .submit-spinner {
  display: inline-block;
}

@keyframes submitSpin {
  to { transform: rotate(360deg); }
}

.payment-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 18, 34, .48);
  backdrop-filter: blur(5px);
}

.payment-notice-card {
  width: min(420px, 100%);
  padding: 26px;
  border: 1px solid rgba(20, 184, 166, .28);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f2fffb);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
  text-align: center;
  color: #102033;
}

.payment-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #11958d;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(17, 149, 141, .26);
}

.payment-notice-kicker {
  display: block;
  margin-bottom: 6px;
  color: #00877f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.payment-notice-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: 0;
}

.payment-notice-card p {
  margin: 0 0 16px;
  color: #506176;
  line-height: 1.55;
}

.payment-notice-card strong {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(17, 149, 141, .09);
  color: #08756f;
  font-weight: 600;
}

@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,
  .account-virtual-layout,
  .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%;
  }

  .account-virtual-list {
    max-height: none;
    padding-right: 0;
  }

  .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);
  }

  body {
    padding-bottom: 74px;
  }

  .store-mode-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    width: 100%;
    margin: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #d8e6ef;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 30px rgba(23, 32, 51, .12);
    -webkit-overflow-scrolling: touch;
  }

  .site-header .store-mode-nav {
    justify-content: center;
  }

  .store-mode-nav a {
    min-height: 42px;
    min-width: max-content;
    padding-inline: 14px;
  }

  .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;
  max-height: calc(100vh - 260px);
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}

.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);
}

.stock-badge,
.stock-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #c8eee9;
  background: #e8fbf8;
  color: #00868a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.stock-badge.is-empty,
.stock-note.is-empty {
  border-color: #ffd4d4;
  background: #fff1f1;
  color: #b42318;
}

.cart-icon-btn:disabled,
.icon-cart-btn:disabled,
.buy-now-btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none !important;
  box-shadow: none !important;
}

.product-card .cart-icon-btn:disabled {
  background: #8b96a8;
}

.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;
}

.user-menu {
  position: relative;
}

.user-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 7px 12px 7px 8px;
  border: 1px solid #d6e4ee;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 8px 22px rgba(23, 32, 51, .06);
}

.user-menu summary::-webkit-details-marker {
  display: none;
}

.user-menu summary svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-menu-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #ff8a1f;
  color: #fff;
  font-weight: 700;
}

.user-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 120;
  display: grid;
  gap: 4px;
  width: 224px;
  padding: 10px;
  border: 1px solid #dbe6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(23, 32, 51, .16);
}

.user-menu:not([open]) .user-menu-panel {
  display: none;
}

.user-menu-panel a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #526174;
}

.user-menu-panel a:hover {
  background: #f5fbfb;
  color: #00868a;
}

.user-menu-panel .is-logout {
  margin-top: 6px;
  border-top: 1px solid #edf2f7;
  color: #ef4444;
}

.user-menu-balance,
.balance-info-card {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #f4dfb3;
  border-radius: 8px;
  background: #fff9ec;
}

.user-menu-balance span,
.balance-info-card span {
  color: #8a6a25;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.user-menu-balance strong,
.balance-info-card strong {
  color: #f05a28;
}

.balance-info-card {
  padding: 18px;
}

.balance-info-card strong {
  font-size: 30px;
}

.balance-history {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.support-table-head,
.support-table-row {
  grid-template-columns: minmax(160px, 1.4fr) minmax(120px, .85fr) 100px minmax(170px, .9fr) 74px;
}

.support-table-row strong,
.support-table-row small {
  line-height: 1.25;
}

.balance-table .support-table-head,
.balance-table .support-table-row {
  grid-template-columns: 150px 120px 120px minmax(0, 1fr);
}

.balance-topup-link {
  justify-self: start;
  margin-top: 8px;
  text-decoration: none;
}

.balance-topup-shell {
  max-width: 900px;
}

.checkout-hero-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.balance-topup-current {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px;
  border: 1px solid #f4dfb3;
  border-radius: 8px;
  background: #fff9ec;
}

.balance-topup-current span {
  color: #8a6a25;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.balance-topup-current strong {
  color: #f05a28;
  font-size: 28px;
}

.balance-topup-form,
.balance-topup-history {
  display: grid;
  gap: 14px;
}

.balance-topup-form label {
  display: grid;
  gap: 7px;
}

.balance-topup-form label > span {
  color: #526078;
  font-size: 12px;
  font-weight: 700;
}

.balance-topup-form textarea {
  min-height: 96px;
  resize: none;
}

.balance-topup-methods {
  display: grid;
  gap: 10px;
}

.balance-topup-table .support-table-head,
.balance-topup-table .support-table-row {
  grid-template-columns: 150px minmax(120px, 1fr) 120px 120px;
}

@media (max-width: 760px) {
  .user-menu summary strong {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .user-menu-panel {
    right: 0;
    width: min(224px, calc(100vw - 24px));
  }

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

  .support-table-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: start;
  }

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

  .support-table-row > span:nth-child(2),
  .support-table-row > em,
  .support-table-row > span:nth-child(4) {
    grid-column: 1 / 2;
  }

  .support-table-row > a {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .balance-table .support-table-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-hero-panel {
    display: grid;
  }

  .balance-topup-current {
    min-width: 0;
  }

  .balance-topup-table .support-table-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Sanal numara vitrini */
.showcase-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.showcase-tabs .showcase-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #fff;
  color: #26344b;
  font-size: 13px;
  line-height: 1.2;
}

.showcase-tabs .showcase-tab svg {
  width: 17px;
  height: 17px;
}

.showcase-tabs .showcase-tab.active {
  border-color: #0f8b8d;
  background: #0f8b8d;
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 139, 141, .2);
}

.virtual-letter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 7px;
  background: #fff;
  color: #0f8b8d;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid #cde9e7;
}

.virtual-letter-icon img,
.virtual-service-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.virtual-letter-icon img + b,
.virtual-service-icon img + b {
  display: none;
}

.balance-topup-admin-table {
  display: grid;
  gap: 10px;
  overflow: visible;
}

.balance-topup-admin-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) minmax(90px, .75fr) minmax(120px, .9fr) minmax(100px, .8fr) minmax(130px, .9fr) minmax(150px, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
}

.balance-topup-admin-table > div > span,
.balance-topup-admin-table > div > strong {
  min-width: 0;
}

.balance-topup-admin-table small {
  display: block;
  margin-top: 4px;
  color: #52627a;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.balance-topup-actions {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

@media (max-width: 760px) {
  .balance-topup-admin-table > div:first-child {
    display: none;
  }

  .balance-topup-admin-table > div {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
  }

  .balance-topup-admin-table > div > span {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .balance-topup-admin-table > div > span:nth-child(1)::before { content: "Kullanıcı"; }
  .balance-topup-admin-table > div > span:nth-child(2)::before { content: "Tutar"; }
  .balance-topup-admin-table > div > span:nth-child(3)::before { content: "Yöntem"; }
  .balance-topup-admin-table > div > span:nth-child(4)::before { content: "Durum"; }
  .balance-topup-admin-table > div > span:nth-child(5)::before { content: "Tarih"; }
  .balance-topup-admin-table > div > span:nth-child(6)::before { content: "İşlem"; }

  .balance-topup-admin-table > div > span::before {
    color: #007c7d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }

  .balance-topup-actions {
    grid-template-columns: 1fr 1fr;
  }

  .balance-topup-actions::before {
    content: "İşlem";
    grid-column: 1 / -1;
    color: #007c7d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }

  .balance-topup-actions input {
    grid-column: 1 / -1;
  }
}

.virtual-hero {
  border-left: 4px solid #0f8b8d;
}

.virtual-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.virtual-service-grid.is-grouped {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.virtual-shop-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #cde9e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, .05);
}

.virtual-shop-toolbar div {
  display: grid;
  gap: 2px;
  margin-right: auto;
}

.virtual-shop-toolbar span {
  color: #007c7d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.virtual-shop-toolbar strong {
  color: #f05a28;
  font-size: 22px;
}

.virtual-service-search {
  display: grid;
  gap: 5px;
  min-width: min(320px, 100%);
}

.virtual-service-search span {
  color: #536176;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.virtual-service-search input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #c8dae9;
  border-radius: 8px;
  background: #fff;
  color: #10233f;
  font: inherit;
}

.virtual-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

.virtual-service-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #cde9e7;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3fffd, #fff);
  box-shadow: 0 14px 34px rgba(15, 139, 141, .08);
}

.virtual-service-row-card {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  align-items: center;
}

.virtual-service-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.virtual-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fff;
  color: #0f8b8d;
  border: 1px solid #bfeee8;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(15, 139, 141, .08);
}

.virtual-service-icon img {
  width: 26px;
  height: 26px;
}

.virtual-empty-search {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed #b9d7e5;
  border-radius: 8px;
  background: #fff;
  color: #647084;
  text-align: center;
}

.virtual-service-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.virtual-service-card p {
  margin: 0;
  color: #647084;
  line-height: 1.5;
}

.virtual-service-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.virtual-service-form label {
  display: grid;
  gap: 6px;
}

.virtual-service-form label span {
  color: #536176;
  font-size: 12px;
}

.virtual-country-field,
.virtual-note-field {
  min-width: 0;
}

.virtual-country-field select,
.virtual-note-field input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #c8dae9;
  border-radius: 8px;
  background: #fff;
}

.virtual-note-field,
.virtual-card-bottom {
  grid-column: auto;
}

.virtual-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.virtual-card-bottom strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #bfeee8;
  border-radius: 8px;
  background: #fff;
  color: #00868a;
  font-size: 20px;
}

.virtual-card-warning {
  display: block;
  padding: 9px 10px;
  border: 1px solid #f2d7a3;
  border-radius: 8px;
  background: #fff8e8;
  color: #8b6418;
  font-size: 12px;
}

.virtual-access-panel,
.virtual-balance-card,
.virtual-live-card,
.virtual-history-card {
  border: 1px solid #cde9e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 32, 51, .06);
}

.virtual-access-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.virtual-access-panel h2,
.virtual-access-panel p {
  margin: 0;
}

.virtual-access-panel p {
  color: #647084;
  line-height: 1.6;
}

.virtual-access-panel div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.virtual-sms-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 12px;
}

.virtual-balance-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  background: #fff8e8;
  border-color: #f1d8aa;
}

.virtual-balance-card span,
.virtual-live-head span,
.virtual-history-head span,
.virtual-sms-box span {
  color: #007c7d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.virtual-balance-card strong {
  color: #f05a28;
  font-size: 28px;
}

.virtual-balance-card a {
  width: max-content;
  padding: 8px 11px;
  border-radius: 8px;
  background: #0f8b8d;
  color: #fff;
  font-size: 13px;
}

.virtual-live-card,
.virtual-history-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.virtual-live-head,
.virtual-history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.virtual-live-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.virtual-live-head em,
.virtual-history-head strong,
.virtual-order-list em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8fbf7;
  color: #00868a;
  font-style: normal;
  font-size: 12px;
}

.virtual-live-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.virtual-live-details div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #dce9f3;
  border-radius: 8px;
  background: #f8fbff;
}

.virtual-live-details dt {
  margin-bottom: 4px;
  color: #66758d;
  font-size: 12px;
}

.virtual-live-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #10233f;
  font-weight: 700;
}

.virtual-sms-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px dashed #9fd5d2;
  border-radius: 8px;
  background: #f4fffd;
}

.virtual-sms-box p,
.virtual-empty-text {
  margin: 0;
  color: #647084;
  line-height: 1.55;
}

.virtual-order-list {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
}

.virtual-order-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #dce9f3;
  border-radius: 8px;
  background: #f8fbff;
  color: #10233f;
}

.virtual-order-list a.is-active {
  border-color: #0f8b8d;
  background: #effdfb;
}

.virtual-order-list span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .showcase-tabs,
  .virtual-service-grid,
  .virtual-service-grid.is-grouped,
  .virtual-service-form,
  .virtual-panel-grid,
  .virtual-live-details {
    grid-template-columns: 1fr;
  }

  .virtual-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .virtual-shop-toolbar div,
  .virtual-service-search,
  .virtual-shop-toolbar .btn {
    width: 100%;
  }

  .virtual-sms-panel {
    position: static;
    order: -1;
  }

  .virtual-card-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .virtual-service-row-card,
  .virtual-service-form {
    grid-template-columns: 1fr;
  }

  .virtual-card-bottom strong,
  .virtual-card-bottom .btn {
    width: 100%;
  }
}

/* Sosyal medya sipariş ekranı */
.social-media-shell .category-showcase nav a span:last-of-type {
  line-height: 1.25;
}

.social-hero {
  border-left: 4px solid #0f8f8c;
}

.social-order-panel {
  border: 1px solid rgba(15, 143, 140, .24);
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.social-platform-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.social-platform-tabs a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid #d5e1ed;
  border-radius: 8px;
  padding: 0 12px;
  color: #26374f;
  background: #f5f8fb;
  text-decoration: none;
  font-size: 13px;
}

.social-platform-tabs a.is-active {
  border-color: #0f8f8c;
  color: #fff;
  background: #405769;
}

.social-platform-tabs a span,
.social-platform-icon b {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  font-weight: 700;
}

.social-platform-icon img,
.social-brand-mark img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-platform-icon img + b {
  display: none;
}

.social-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  overflow: hidden;
  border-radius: 6px;
  line-height: 1;
  font-size: 12px;
  font-weight: 800;
}

.social-category-field {
  margin-bottom: 16px;
}

.social-category-field > span {
  display: block;
  margin: 0 0 8px;
  color: #007f7a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.social-category-picker summary,
.social-service-picker summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #b9d9e2;
  border-radius: 8px;
  background: #fff;
  color: #132238;
  cursor: pointer;
  list-style: none;
}

.social-category-picker summary::-webkit-details-marker,
.social-service-picker summary::-webkit-details-marker {
  display: none;
}

.social-category-picker summary strong,
.social-service-picker summary strong {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #1c2e45;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-category-picker summary .social-brand-mark,
.social-service-picker summary .social-brand-mark {
  flex: 0 0 22px;
}

.social-category-picker summary::after,
.social-service-picker summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #007f7a;
  border-bottom: 2px solid #007f7a;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.social-category-picker[open] summary::after,
.social-service-picker[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.social-category-tabs,
.social-service-tabs {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  margin: 8px 0 0;
  padding: 8px;
  border: 1px solid #d5e1ed;
  border-radius: 10px;
  background: #f8fbfd;
}

.social-category-tabs a,
.social-service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 6px 10px;
  color: #24334a;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.social-service-option > span:nth-child(2) {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-service-option small {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eefaf8;
  color: #008985;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.social-category-tabs a.is-active,
.social-category-tabs a:hover,
.social-service-option.is-active,
.social-service-option:hover {
  background: #eafaf7;
  color: #007f7a;
}

.social-order-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.social-order-form label,
.social-service-field,
.social-service-info,
.social-price-preview {
  display: grid;
  gap: 7px;
}

.social-service-info[hidden] {
  display: none;
}

.social-price-preview[hidden] {
  display: none;
}

.social-order-form label > span,
.social-service-field > span,
.social-service-info > span,
.social-price-preview > span {
  color: #008985;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.social-order-form input,
.social-order-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #b9d9e2;
  border-radius: 8px;
  padding: 0 12px;
  color: #0f1d33;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.social-order-form select {
  cursor: pointer;
}

.social-order-form small {
  color: #5d6b82;
  font-size: 12px;
}

.social-service-info {
  border: 1px dashed rgba(15, 143, 140, .35);
  border-radius: 10px;
  background: #f0fffd;
  padding: 14px;
}

.social-price-preview {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(15, 143, 140, .24);
  border-radius: 10px;
  background: linear-gradient(135deg, #f2fffd 0%, #fffaf1 100%);
}

.social-price-preview span {
  align-self: center;
}

.social-price-preview strong {
  color: #008985;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.social-service-info ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #26374f;
}

.social-submit {
  grid-column: 1 / -1;
  min-height: 46px;
}

.social-submit:disabled {
  opacity: .62;
  cursor: not-allowed;
}

.account-social-detail .virtual-live-details dd a {
  color: #008985;
  text-decoration: none;
}

@media (max-width: 760px) {
  .social-platform-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-service-option {
    align-items: flex-start;
  }

  .social-service-option small {
    margin-left: auto;
  }

  .social-price-preview {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .social-platform-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .account-dashboard {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .account-hero,
  .account-panel,
  .account-stats article,
  .account-order-card,
  .account-virtual-detail,
  .support-workspace,
  .support-table,
  .support-thread,
  .balance-info-card {
    min-width: 0;
    max-width: 100%;
  }

  .account-hero h1 {
    font-size: 32px;
  }

  .account-tabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .account-tabs::-webkit-scrollbar {
    display: none;
  }

  .account-tabs button {
    flex: 0 0 auto;
    min-width: max-content;
    max-width: 160px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .account-tabs button span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .account-panel {
    overflow: hidden;
  }

  .account-order-card strong,
  .account-hero p,
  .support-table-row strong,
  .support-table-row small,
  .support-thread-head h3,
  .support-bubble p,
  .virtual-live-details dd,
  .virtual-sms-box p,
  .account-social-detail .virtual-live-details dd a {
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .home-shell,
  .home-board,
  .social-order-panel,
  .social-platform-tabs,
  .social-category-field,
  .social-category-picker,
  .social-order-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .social-hero {
    padding: 24px 18px;
  }

  .social-hero h2,
  .board-head.social-hero h2 {
    max-width: 100%;
    font-size: clamp(34px, 12vw, 46px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .social-hero p,
  .board-head.social-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .board-head-badges {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

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

  .social-platform-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .social-platform-tabs a {
    min-width: 0;
    padding-inline: 10px;
  }

  .social-platform-tabs a > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .social-category-picker summary,
  .social-order-form select,
  .social-order-form input {
    min-width: 0;
    max-width: 100%;
  }

  .social-order-form select {
    min-height: 54px;
    padding: 0 14px;
    font-size: 16px;
    line-height: 1.25;
  }

  .social-category-picker summary strong,
  .social-order-form select {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .social-category-tabs a {
    min-width: 0;
    padding-inline: 8px;
  }

  .social-category-tabs {
    grid-template-columns: 1fr;
  }

  .social-category-tabs a > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.social-media-shell {
  grid-template-columns: minmax(0, 1fr);
}

.social-media-shell .home-board {
  width: min(960px, 100%);
}

