/* ==========================================================================
   Sellsvora Commerce Suite — Frontend Stylesheet
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  --selsv-green: #1F7A5C;
  --selsv-green-dark: #18604A;
  --selsv-blue: #FF7A30;
  --selsv-blue-dark: #E0631F;
  --selsv-ink: #101820;
  --selsv-ink-soft: #1A2530;
  --selsv-paper: #F6F4EF;
  --selsv-paper-2: #ECE9E1;
  --selsv-muted: #6B7280;
  --selsv-white: #ffffff;
  --selsv-radius: 18px;
  --selsv-shadow: 0 20px 50px -20px rgba(16, 24, 32, .25);
  --selsv-font-display: 'Inter Tight', sans-serif;
  --selsv-font-body: 'Inter', sans-serif;
}

/* -------------------------------------------------------------------------
   Sellsvora E Commerce enhancements: hero writing motion, product rail,
   coupon UI, cart/checkout motion, and payment processing popup.
   ------------------------------------------------------------------------- */
@keyframes scsHeroWriteIn {
  from { opacity: 0; transform: translateX(-54px); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: translateX(0); clip-path: inset(0 0 0 0); }
}

@keyframes scsHeroPhotoDrift {
  from { background-size: 100%; }
  to { background-size: 108%; }
}

.scs-hero {
  border-radius: 0;
  min-height: min(62vh, 560px);
  margin-bottom: 0;
  padding: clamp(34px, 6vw, 74px);
  animation: scsHeroPhotoDrift 10s ease-in-out infinite alternate;
}

.scs-hero-content {
  max-width: 760px;
  animation: scsHeroWriteIn .9s cubic-bezier(.22,.9,.32,1) both;
}

.scs-hero .scs-eyebrow {
  animation: scsHeroWriteIn .72s cubic-bezier(.22,.9,.32,1) .08s both;
}

.scs-hero h2 {
  animation: scsHeroWriteIn .92s cubic-bezier(.22,.9,.32,1) .22s both;
}

.scs-hero p:last-child {
  animation: scsHeroWriteIn .82s cubic-bezier(.22,.9,.32,1) .45s both;
}

.scs-hero-actions {
  animation: scsFadeUp .65s ease .65s both;
}

.scs-product-rail {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
  overflow: hidden;
  padding: 42px 50px;
  width: max-content;
  max-width: none;
  animation: scsProductRail 34s linear infinite;
  will-change: transform;
}

.scs-suite:has(.scs-product-rail) {
  overflow: hidden;
}

.scs-product-rail:hover,
.scs-product-rail:focus-within {
  animation-play-state: paused;
}

.scs-product-rail .scs-card {
  width: min(380px, 84vw);
  flex: 0 0 min(380px, 84vw);
  animation: scsFadeUp .42s ease both;
}

@keyframes scsProductRail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scsCardFromTop {
  from { opacity: 0; transform: translateY(-42px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scsCardFromBottom {
  from { opacity: 0; transform: translateY(46px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scsCardFromLeft {
  from { opacity: 0; transform: translateX(-52px) rotate(-1.5deg) scale(.96); }
  to { opacity: 1; transform: translateX(0) rotate(0) scale(1); }
}

@keyframes scsCardFromRight {
  from { opacity: 0; transform: translateX(52px) rotate(1.5deg) scale(.96); }
  to { opacity: 1; transform: translateX(0) rotate(0) scale(1); }
}

@keyframes scsWriteCursor {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes scsHeroTextType {
  from { opacity: 0; transform: translateX(-46px); clip-path: inset(0 100% 0 0); filter: blur(6px); }
  to { opacity: 1; transform: translateX(0); clip-path: inset(0 0 0 0); filter: blur(0); }
}

@keyframes scsProofRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scsCardGlow {
  0% { transform: translateX(-130%) rotate(12deg); }
  52%, 100% { transform: translateX(130%) rotate(12deg); }
}

.scs-product-rail .scs-card-media img {
  transition: transform .6s cubic-bezier(.22,.9,.32,1), filter .4s ease;
}

.scs-product-rail .scs-card:hover .scs-card-media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.scs-product-rail .scs-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scs-coupon-box {
  grid-area: totals;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 9px;
  animation: scsFadeUp .32s ease both;
}

.scs-cart-page-card .scs-coupon-box {
  grid-area: auto;
}

.scs-coupon-box label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scs-coupon-box > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.scs-coupon-box input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  text-transform: uppercase;
}

.scs-coupon-box p {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}

.scs-coupon-box p.is-error {
  color: #b42318;
}

.scs-cart,
.scs-checkout {
  animation: scsFadeUp .42s ease both;
}

.scs-checkout input,
.scs-checkout textarea,
.scs-gateway-option,
.scs-cart-row {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.scs-checkout input:focus,
.scs-checkout textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -26px rgba(16, 24, 32, .55);
}

.scs-payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(16, 24, 32, .72);
  backdrop-filter: blur(10px);
}

.scs-payment-overlay[hidden] {
  display: none;
}

.scs-payment-pop {
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 30px 90px -38px rgba(0, 0, 0, .65);
  animation: scsFadeUp .24s ease both;
}

.scs-payment-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid #ece9e1;
  border-top-color: var(--brand);
  display: inline-block;
  margin-bottom: 16px;
  animation: scsSpin .8s linear infinite;
}

.scs-payment-pop strong {
  display: block;
  font-family: var(--selsv-font-display);
  font-size: 24px;
}

.scs-payment-pop p {
  margin: 8px 0 0;
  color: var(--muted);
}

.scs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scs-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.scs-hero-proof span {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 800;
  animation: scsProofRise .7s cubic-bezier(.22,.9,.32,1) both;
}

.scs-hero-proof span:nth-child(2) {
  animation-delay: .12s;
}

.scs-hero-proof span:nth-child(3) {
  animation-delay: .22s;
}

.scs-hero-proof strong {
  color: #fff;
  font-family: var(--selsv-font-display);
  font-size: 18px;
}

.scs-shop-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 24px 4px;
  text-align: center;
}

.scs-shop-intro span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(31,122,92,.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scs-shop-intro h3 {
  margin: 12px 0 10px;
  font-family: var(--selsv-font-display);
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.scs-shop-intro p {
  margin: 0 auto;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

@media (max-width: 760px) {
  .scs-hero {
    min-height: 430px;
    padding: 28px 20px;
  }

  .scs-product-rail {
    padding: 28px 18px;
  }

  .scs-coupon-box > div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scs-hero,
  .scs-hero-content,
  .scs-hero .scs-eyebrow,
  .scs-hero h2,
  .scs-hero p:last-child,
  .scs-product-rail,
  .scs-card,
  .scs-cart,
  .scs-checkout,
  .scs-payment-pop,
  .scs-payment-spinner {
    animation: none !important;
  }
  .scs-product-rail .scs-card {
    opacity: 1 !important;
  }
}
.page-content a {
	text-decoration: none !important;
}

/* -------------------------------------------------------------------------
   2. Suite container
   ------------------------------------------------------------------------- */
.scs-suite {
  --ink: var(--selsv-ink);
  --muted: var(--selsv-muted);
  --line: #ddd8cd;
  --brand: var(--selsv-green);
  --brand2: var(--selsv-green-dark);
  --accent: var(--selsv-blue);
  --accent2: var(--selsv-blue-dark);
  --panel: var(--selsv-white);
  --soft: var(--selsv-paper);
  --cream: var(--selsv-paper-2);
  color: var(--ink);
  font-family: var(--selsv-font-body);
  /* max-width: 1240px; */
  width: 100%;
  /* margin: 0 auto; */
  box-sizing: border-box;
  overflow-x: hidden;
}

.scs-suite *,
.scs-suite *:before,
.scs-suite *:after {
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   3. Hero banner
   ------------------------------------------------------------------------- */
.scs-hero,
.scs-catalog-hero {
  min-height: 340px;
  background-color: #101820;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 18px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: var(--selsv-shadow);
  position: relative;
  overflow: hidden;
}

.scs-hero:before,
.scs-catalog-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 16, 22, .96) 8%, rgba(10, 16, 22, .82) 40%, rgba(10, 16, 22, .42) 72%, rgba(10, 16, 22, .2));
}

.scs-hero:after,
.scs-catalog-hero:after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.scs-hero-content,
.scs-hero-actions {
  position: relative;
  z-index: 1;
}

.scs-hero .scs-eyebrow,
.scs-catalog-hero .scs-eyebrow {
  color: #ffd7c4;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
}

.scs-hero h2,
.scs-catalog-hero h2 {
  font-family: var(--selsv-font-display);
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: .98;
  margin: 12px 0 12px;
  color: #fff;
  letter-spacing: 0;
  max-width: 880px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}

.scs-hero p:last-child,
.scs-catalog-hero p:last-child {
  margin: 0;
  color: #eef3f6;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}

/* -------------------------------------------------------------------------
   4. Mini cart pill
   ------------------------------------------------------------------------- */
.scs-cart-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
}

.scs-mini-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #14201b;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  min-width: 0;
  padding: 12px 18px;
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, .7);
  transition: transform .18s ease, box-shadow .18s ease;
}

.scs-mini-cart:hover,
.scs-mini-cart:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 54px -26px rgba(0, 0, 0, .75);
}

.scs-mini-cart .scs-cart-icon {
  color: var(--brand);
  width: 24px;
  height: 24px;
}

.scs-mini-cart span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: .04em;
}

.scs-mini-cart strong {
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}

/* -------------------------------------------------------------------------
   5. Flow navigation (Back / Continue Shopping)
   Replaces the old Cart → Checkout → Thank You step tabs.
   ------------------------------------------------------------------------- */
.scs-flow-nav {
	padding:20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.scs-flow-nav .scs-button {
  min-height: 44px;
  padding: 10px 18px;
}

.scs-flow-nav-back .scs-cart-icon {
  width: 16px;
  height: 16px;
}

/* -------------------------------------------------------------------------
   6. Catalog head + grid + product cards
   ------------------------------------------------------------------------- */
.scs-catalog-head {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.scs-eyebrow {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.scs-catalog-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.scs-grid {
	padding:50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.scs-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--selsv-radius);
  overflow: hidden;
  box-shadow: var(--selsv-shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}

.scs-card.is-hidden {
  display: none;
}

.scs-card:hover,
.scs-card:focus-within,
.scs-card.is-active {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 34px 70px -22px rgba(16, 24, 32, .38);
}

.scs-card:before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.scs-card-media {
  margin: 0;
  background: #eef6fb;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16/8;
  overflow: hidden;
}

.scs-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .22s ease;
}

.scs-card:hover .scs-card-media img,
.scs-card:focus-within .scs-card-media img {
  transform: scale(1.035);
}

.scs-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 390px;
}

.scs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.scs-card-body span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.scs-card-top em {
  font-style: normal;
  background: #fff5d6;
  color: #785600;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
}

.scs-card h3 {
  font-family: var(--selsv-font-display);
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
}

.scs-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.scs-card ul {
  margin: 0;
  padding-left: 18px;
  color: #33413b;
}

.scs-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.scs-price strong {
  font-size: 22px;
}

.scs-price small {
  color: var(--muted);
}

.scs-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.scs-load-wrap {
  text-align: center;
  margin: 24px 0;
}

/* -------------------------------------------------------------------------
   7. Buttons
   ------------------------------------------------------------------------- */
.scs-button {
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  min-height: 48px;
  padding: 12px 10px;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.scs-button:hover,
.scs-button:focus-visible,
.scs-button:active {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -18px rgba(255, 122, 48, .9);
  outline: none;
}

.scs-button:disabled {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.scs-button-ghost {
  background: var(--selsv-paper);
  color: var(--brand);
  box-shadow: none;
}

.scs-button-ghost:hover {
  background: var(--brand);
  color: #fff;
}

.scs-button-dark {
  background: var(--ink);
}

.scs-button-dark:hover {
  background: var(--accent2);
  color: #fff;
}

.scs-button-danger {
  background: #fff1f0;
  color: #b42318;
}

.scs-button-danger:hover {
  background: #b42318;
  color: #fff;
}

/* -------------------------------------------------------------------------
   8. Cart & checkout shell
   ------------------------------------------------------------------------- */
.scs-cart {
  margin: 0 auto;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--selsv-radius);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.15fr);
  grid-template-areas: "head head" "items form" "totals form";
  gap: 16px;
  box-shadow: var(--selsv-shadow);
}

.scs-cart-page-card {
  max-width: 980px;
  grid-template-columns: 1fr;
  grid-template-areas: "head" "items" "totals" "actions";
  background: #fff;
  border-color: #d9d2c6;
  box-shadow: 0 30px 76px -46px rgba(16, 24, 32, .55);
}

.scs-checkout-page-card {
  grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.15fr);
  background: #fff;
  border-color: #d9d2c6;
  box-shadow: 0 30px 76px -46px rgba(16, 24, 32, .55);
}

.scs-cart-head {
  grid-area: head;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  background: #101820;
  color: #fff;
  margin: -24px -24px 18px;
  padding: 18px 24px;
}

.scs-cart [data-scs-cart-items] {
  grid-area: items;
}

.scs-cart [data-scs-totals] {
  grid-area: totals;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 14px;
  min-height: 42px;
}

.scs-cart [data-scs-totals]:empty {
  display: none;
}

.scs-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 18px 36px -30px rgba(16, 24, 32, .32);
  animation: scsFadeUp .28s ease both;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.scs-cart-row:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 26px 56px -38px rgba(16, 24, 32, .58);
}

.scs-cart-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.scs-cart-row strong {
  font-size: 17px;
  line-height: 1.25;
}

.scs-cart-row small {
  color: var(--muted);
  font-size: 13px;
}

.scs-cart-row b {
  white-space: nowrap;
  font-size: 18px;
}

.scs-cart-row button {
  border: 0;
  background: #fff1f0;
  color: #b42318;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
}

.scs-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.scs-total strong,
.scs-totals div:last-child strong {
  font-size: 20px;
}

.scs-empty {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  margin: 0;
  padding: 16px;
}

.scs-flow-actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
}

.scs-flow-actions-single {
  justify-content: stretch;
}

.scs-flow-actions-single .scs-button {
  width: 100%;
}

.scs-flow-actions .scs-button {
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   9. Checkout form
   ------------------------------------------------------------------------- */
.scs-checkout {
  grid-area: form;
  background: #fbfaf7;
  border: 1px solid #d9d2c6;
  border-radius: var(--selsv-radius);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-self: start;
}

.scs-checkout-section {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scs-checkout-section + .scs-checkout-section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.scs-checkout-section legend {
  grid-column: 1/-1;
  padding: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand);
}

.scs-checkout input,
.scs-checkout textarea,
.scs-checkout select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
}

.scs-checkout textarea {
  grid-column: 1/-1;
  min-height: 84px;
  resize: vertical;
}

.scs-checkout input:focus,
.scs-checkout textarea:focus,
.scs-checkout select:focus {
  outline: 3px solid rgba(255, 122, 48, .18);
  border-color: var(--accent);
}

.scs-checkout-submit {
  width: 100%;
  min-height: 54px;
  font-size: 15px;
  letter-spacing: .01em;
}

.scs-message {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}

.scs-gateway-warning {
  color: #b42318;
}

.scs-gateway-options {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scs-gateway-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.scs-gateway-option:hover,
.scs-gateway-option:has(input:checked) {
  border-color: var(--brand);
  box-shadow: 0 18px 42px -34px rgba(16, 24, 32, .45);
  transform: translateY(-2px);
}

.scs-gateway-option input {
  width: auto;
  margin: 3px 0 0;
  accent-color: var(--brand);
}

.scs-gateway-option span {
  display: grid;
  gap: 3px;
}

.scs-gateway-option strong {
  color: var(--ink);
}

.scs-gateway-option small {
  color: var(--muted);
  font-weight: 700;
}

.scs-gateway-option.is-disabled {
  opacity: .48;
  cursor: not-allowed;
}

/* -------------------------------------------------------------------------
   10. Customer lookup / dashboard result / order summary
   ------------------------------------------------------------------------- */
.scs-lookup {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  box-shadow: 0 18px 48px -34px rgba(16, 24, 32, .32);
}

.scs-lookup input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
}

.scs-dashboard .scs-lookup {
  grid-template-columns: minmax(0, 1fr) auto;
}

.scs-dashboard-result {
  max-width: 980px;
  margin: 22px auto 0;
}

.scs-order-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 60px -34px rgba(22, 32, 28, .32);
  animation: scsFadeUp .36s ease both;
}

.scs-dashboard-orders-head {
  max-width: 1040px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #101820;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
}

.scs-dashboard-orders-head span {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffd7c4;
}

.scs-dashboard-orders-head strong {
  font-size: 28px;
}

/* -------------------------------------------------------------------------
   11. Toast & product-detail modal
   ------------------------------------------------------------------------- */
.scs-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #16201c;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(22, 32, 28, .22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 999999;
}

.scs-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.scs-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 16, 14, .62);
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.scs-modal-panel {
  background: #fff;
  border-radius: var(--selsv-radius);
  max-width: 1100px;
  max-height: 88vh;
  overflow: auto;
  padding: 0;
  position: relative;
  width: min(100%, 1100px);
  box-shadow: 0 44px 100px -30px rgba(16, 24, 32, .5);
}

.scs-modal .scs-icon-button {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
}

.scs-modal .scs-icon-button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(90deg);
}

.scs-detail {
  display: grid;
  gap: 22px;
  color: var(--ink);
  padding: 28px;
  background: #fff;
}

.scs-detail-head {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr) 250px;
  gap: 22px;
  align-items: stretch;
  background: #101820;
  border: 1px solid #22303b;
  border-radius: calc(var(--selsv-radius) - 4px);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.scs-detail-head:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.scs-detail-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  min-height: 260px;
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, .8);
  position: relative;
  z-index: 1;
}

.scs-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.scs-detail-head > div {
  align-self: center;
  position: relative;
  z-index: 1;
}

.scs-detail-head span {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: rgba(31, 122, 92, .95);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 7px 12px;
}

.scs-detail-head h3 {
  font-family: var(--selsv-font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 12px;
  color: #fff;
  text-wrap: balance;
}

.scs-detail-head p {
  margin: 0;
  color: #d7dee6;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.scs-detail-head aside {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 10px;
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, .75);
  position: relative;
  z-index: 1;
}

.scs-detail-head aside small {
  color: var(--accent2);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
}

.scs-detail-head aside strong {
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
}

.scs-detail-head aside em {
  font-style: normal;
  color: var(--muted);
  font-weight: 900;
}

.scs-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.scs-detail-grid section,
.scs-detail-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 18px 46px -28px rgba(16, 24, 32, .22);
}

.scs-detail h4 {
  font-family: var(--selsv-font-display);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 14px;
  color: var(--ink);
}

.scs-detail-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.scs-detail-points li {
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}

.scs-detail-points li:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 9px;
  box-shadow: 0 0 0 4px rgba(255, 122, 48, .14);
}

.scs-plan-box {
  display: grid;
  gap: 10px;
}

.scs-plan-box p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--selsv-paper);
}

.scs-plan-box span {
  color: var(--muted);
  font-weight: 800;
}

.scs-plan-box strong {
  color: var(--ink);
  text-align: right;
  font-weight: 900;
}

.scs-detail-faq {
  display: grid;
  gap: 10px;
}

.scs-detail-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faf9;
  padding: 13px;
}

.scs-detail-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.scs-detail-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.scs-detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.scs-detail-actions .scs-button {
  min-width: 170px;
}

/* -------------------------------------------------------------------------
   12. Public order card (thank-you + dashboard result)
   ------------------------------------------------------------------------- */
.scs-public-order {
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 0;
  overflow: hidden;
}

.scs-public-order-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  background: #101820;
  color: #fff;
  padding: 28px;
}

.scs-public-order-hero h3 {
  font-family: var(--selsv-font-display);
  font-size: 38px;
  line-height: 1.05;
  margin: 12px 0 8px;
}

.scs-public-order-hero p {
  margin: 0;
  color: #d7dee6;
  line-height: 1.6;
  max-width: 620px;
}

.scs-public-order-hero > strong {
  font-size: 34px;
  color: #fff;
  white-space: nowrap;
}

.scs-status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff0d1;
  color: #5c3b00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scs-status-paid {
  background: #eaf8f1;
  color: #13714f;
}

.scs-status-failed {
  background: #fff1f0;
  color: #b42318;
}

.scs-status-refunded {
  background: #eef2ff;
  color: #3538cd;
}

.scs-public-order-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 18px 24px;
  background: #f8faf9;
  border-bottom: 1px solid var(--line);
}

.scs-public-order-actions .scs-button {
  text-decoration: none;
  min-width: 160px;
}

.scs-public-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 24px;
}

.scs-public-order h4 {
  font-family: var(--selsv-font-display);
  font-size: 22px;
  margin: 0 0 14px;
}

.scs-public-order-grid section,
.scs-public-products,
.scs-public-totals {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.scs-public-list {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 0;
  margin: 0;
}

.scs-public-list dt,
.scs-public-list dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid #ece9e1;
}

.scs-public-list dt {
  color: var(--muted);
  font-weight: 800;
}

.scs-public-list dd {
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.scs-public-products {
  margin: 0 24px 18px;
}

.scs-public-product-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ece9e1;
}

.scs-public-product-row:last-child {
  border-bottom: 0;
}

.scs-public-product-row div {
  display: grid;
  gap: 4px;
}

.scs-public-product-row span {
  color: var(--muted);
  font-size: 13px;
}

.scs-public-product-row b {
  white-space: nowrap;
}

.scs-public-totals {
  margin: 0 24px 24px;
  margin-left: auto;
  width: min(100% - 48px, 420px);
  display: grid;
  gap: 0;
}

.scs-public-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ece9e1;
}

.scs-public-totals div:last-child {
  border-bottom: 0;
}

.scs-public-grand strong {
  font-size: 24px;
  color: var(--brand);
}

.scs-thankyou-empty {
  max-width: 780px;
  margin: 22px auto 0;
  text-align: center;
}

.scs-thankyou-empty h3 {
  font-family: var(--selsv-font-display);
  font-size: 34px;
  margin: 0 0 10px;
}

/* -------------------------------------------------------------------------
   13. Admin dashboard (frontend)
   ------------------------------------------------------------------------- */
.scs-admin-public-lock,
.scs-admin-public-panel,
.scs-admin-public-kpi,
.scs-admin-public-order {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 62px -42px rgba(16, 24, 32, .48);
}

.scs-admin-public-lock {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 28px;
  text-align: center;
}

.scs-admin-public-lock h3 {
  font-family: var(--selsv-font-display);
  font-size: 32px;
  margin: 0 0 8px;
}

.scs-admin-public-lock p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.scs-admin-public-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.scs-admin-public-kpi {
  padding: 18px;
}

.scs-admin-public-kpi span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scs-admin-public-kpi strong {
  display: block;
  margin-top: 8px;
  font-family: var(--selsv-font-display);
  font-size: 28px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.scs-admin-public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 16px;
}

.scs-admin-public-panel {
  padding: 22px;
}

.scs-admin-public-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.scs-admin-public-panel-head span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scs-admin-public-panel-head h3 {
  font-family: var(--selsv-font-display);
  font-size: 26px;
  margin: 0;
  color: var(--ink);
}

.scs-chart-suite {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.scs-ring-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 768px) {
    .scs-grid {
        padding: 10px;
    }
}

.scs-status-ring {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  background: conic-gradient(var(--ring-color) var(--ring), #eee9de 0);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -28px rgba(16, 24, 32, .38);
}

.scs-status-ring:before {
  content: "";
  position: absolute;
  inset: 13px;
  background: #fff;
  border: 1px solid var(--line);
}

.scs-status-ring > div,
.scs-status-ring small {
  position: relative;
  z-index: 1;
  text-align: center;
}

.scs-status-ring strong {
  display: block;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}

.scs-status-ring span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.scs-status-ring small {
  position: absolute;
  right: 9px;
  bottom: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
}

.scs-line-chart {
  min-height: 285px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfaf7);
  padding: 14px;
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  gap: 10px;
}

.scs-line-chart svg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: visible;
}

.scs-chart-axis {
  stroke: #d9d2c6;
  stroke-width: 1.2;
}

.scs-chart-area {
  fill: url(#scsPublicRevenueFill);
}

.scs-chart-line {
  fill: none;
  stroke: #1F7A5C;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scs-chart-dot {
  fill: #fff;
  stroke: #FF7A30;
  stroke-width: 4;
}

.scs-line-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 6px;
}

.scs-line-labels span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px;
  text-align: center;
  min-width: 0;
}

.scs-line-labels strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scs-line-labels small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}

.scs-admin-public-products {
  display: grid;
  gap: 10px;
}

.scs-admin-public-products div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  background: #f8faf9;
  border: 1px solid var(--line);
  padding: 12px;
}

.scs-admin-public-products strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.scs-admin-public-products span {
  font-weight: 900;
  color: var(--brand);
}

.scs-admin-public-orders {
  margin-top: 18px;
}

.scs-admin-public-order-list {
  display: grid;
  gap: 16px;
}

.scs-admin-public-order {
  padding: 18px;
  animation: scsFadeUp .32s ease both;
}

.scs-admin-public-order-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  background: #101820;
  color: #fff;
  margin: -18px -18px 16px;
  padding: 18px;
}

.scs-admin-public-order-top h4 {
  font-family: var(--selsv-font-display);
  font-size: 26px;
  line-height: 1.1;
  margin: 10px 0 6px;
  color: #fff;
  overflow-wrap: anywhere;
}

.scs-admin-public-order-top p {
  margin: 0;
  color: #d7dee6;
  overflow-wrap: anywhere;
}

.scs-admin-public-order-top > strong {
  font-size: 26px;
  color: #fff;
  white-space: nowrap;
}

.scs-admin-public-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
  background: #f8faf9;
  border: 1px solid var(--line);
  padding: 12px;
}

.scs-admin-public-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px auto;
  gap: 8px;
  margin: 0;
  flex: 1;
}

.scs-admin-public-filter input,
.scs-admin-public-filter select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 44px;
  padding: 10px 12px;
  box-sizing: border-box;
}

.scs-admin-public-table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.scs-admin-public-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

.scs-admin-public-table th {
  background: #101820;
  color: #fff;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  padding: 13px 12px;
  white-space: nowrap;
}

.scs-admin-public-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  vertical-align: middle;
  background: #fff;
}

.scs-admin-public-table tbody tr:hover td {
  background: #fbfaf7;
}

.scs-admin-public-table td small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.scs-admin-public-product-pill {
  display: inline-block;
  background: #f4f1ea;
  color: var(--brand2);
  font-size: 12px;
  font-weight: 900;
  margin: 2px;
  padding: 5px 8px;
}

.scs-admin-public-row-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 7px;
  min-width: 260px;
}

.scs-admin-public-row-actions .scs-button {
  min-height: 36px;
  font-size: 13px;
  padding: 8px 10px;
  text-decoration: none;
  white-space: normal;
}

.scs-admin-public-detail-row td {
  background: #f8faf9;
}

.scs-admin-public-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--muted);
  font-size: 13px;
}

.scs-admin-public-detail strong {
  color: var(--ink);
}

.scs-admin-public-order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.scs-admin-public-order-meta span,
.scs-admin-public-totals span {
  display: grid;
  gap: 4px;
  background: #f8faf9;
  border: 1px solid var(--line);
  padding: 11px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.scs-admin-public-order-meta b {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.scs-admin-public-wide {
  grid-column: 1/-1;
}

.scs-admin-public-order-items {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.scs-admin-public-order-items div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 12px;
}

.scs-admin-public-order-items span {
  font-weight: 900;
  color: var(--ink);
}

.scs-admin-public-order-items small {
  color: var(--muted);
  grid-column: 1/2;
}

.scs-admin-public-order-items b {
  grid-column: 2/3;
  grid-row: 1/3;
  white-space: nowrap;
}

.scs-admin-public-totals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.scs-admin-public-totals span {
  font-weight: 700;
}

.scs-admin-public-totals b {
  color: var(--ink);
}

.scs-admin-public-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
}

.scs-admin-public-actions .scs-button {
  min-width: 112px;
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   14. Sharp-edges design pass + micro animations
   ------------------------------------------------------------------------- */
.scs-suite :where(.scs-hero,
  .scs-hero .scs-eyebrow,
  .scs-card,
  .scs-cart,
  .scs-cart-row,
  .scs-empty,
  .scs-checkout,
  .scs-lookup,
  .scs-order-summary,
  .scs-toast,
  .scs-modal-panel,
  .scs-icon-button,
  .scs-detail-head,
  .scs-detail-media,
  .scs-detail-head span,
  .scs-detail-head aside,
  .scs-detail-grid section,
  .scs-detail-faq,
  .scs-detail-points li,
  .scs-plan-box p,
  .scs-detail-faq details,
  .scs-dashboard-orders-head,
  .scs-public-order,
  .scs-status-chip,
  .scs-public-order-grid section,
  .scs-public-products,
  .scs-public-totals,
  .scs-card-top em,
  .scs-mini-cart,
  .scs-gateway-option,
  .scs-admin-public-lock,
  .scs-admin-public-panel,
  .scs-admin-public-kpi,
  .scs-admin-public-order,
  .scs-admin-public-products div,
  .scs-admin-public-order-meta span,
  .scs-admin-public-order-items div,
  .scs-admin-public-totals span,
  .scs-admin-public-toolbar,
  .scs-admin-public-table-wrap,
  .scs-admin-public-product-pill,
  .scs-status-ring,
  .scs-status-ring:before,
  .scs-line-chart,
  .scs-line-labels span) {
  border-radius: 0;
}

.scs-button,
.scs-suite button,
.scs-suite input[type=submit],
.scs-suite input[type=button] {
  border-radius: 10px;
}

.scs-checkout input,
.scs-checkout textarea,
.scs-checkout select,
.scs-lookup input,
.scs-admin-public-filter input,
.scs-admin-public-filter select {
  border-radius: 0;
}

.scs-cart,
.scs-checkout,
.scs-order-summary {
  animation: scsFadeUp .36s ease both;
}

@keyframes scsFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------------------------------------
   15. Responsive breakpoints
   ------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .scs-cart {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "items" "totals" "form";
  }

  .scs-detail-head {
    grid-template-columns: 1fr 1fr;
  }

  .scs-detail-head aside {
    grid-column: 1/-1;
  }
}

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

  .scs-admin-public-grid {
    grid-template-columns: 1fr;
  }

  .scs-admin-public-order-meta,
  .scs-admin-public-totals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scs-admin-public-toolbar {
    display: grid;
  }

  .scs-admin-public-filter {
    grid-template-columns: 1fr 1fr auto;
  }

  .scs-chart-suite {
    grid-template-columns: 1fr;
  }

  .scs-ring-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .scs-checkout-section {
    grid-template-columns: 1fr;
  }

  .scs-checkout textarea {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  /* .scs-suite {
    padding: 18px 12px 28px;
  } */

  .scs-hero,
  .scs-catalog-hero {
    min-height: 320px;
    padding: 22px 16px;
    grid-template-columns: 1fr;
    align-items: end;
    text-align: left;
    gap: 16px;
  }

  .scs-hero:before,
  .scs-catalog-hero:before {
    background: linear-gradient(180deg, rgba(16, 24, 32, .34), rgba(16, 24, 32, .94));
  }

  .scs-hero h2,
  .scs-catalog-hero h2 {
    font-size: clamp(32px, 11vw, 44px);
    line-height: 1.03;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .scs-hero p:last-child,
  .scs-catalog-hero p:last-child {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
  }

  .scs-hero-actions {
    width: 100%;
  }

  .scs-mini-cart {
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
  }

  .scs-flow-nav {
    gap: 10px;
  }

  .scs-flow-nav .scs-button {
    flex: 1;
    min-width: 0;
  }

  .scs-grid,
  .scs-lookup,
  .scs-dashboard .scs-lookup,
  .scs-detail-head,
  .scs-detail-grid,
  .scs-detail-points,
  .scs-public-order-grid {
    grid-template-columns: 1fr;
  }

  .scs-catalog-head {
    text-align: left;
  }

  .scs-card-body {
    padding: 14px;
    min-height: 0;
  }

  .scs-card-media {
    aspect-ratio: 16/9;
  }

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

  .scs-catalog-head h2 {
    font-size: 32px;
  }

  .scs-modal-panel {
    width: 100%;
  }

  .scs-detail {
    padding: 16px;
  }

  .scs-detail-head {
    padding: 18px;
  }

  .scs-detail-media {
    min-height: 190px;
  }

  .scs-detail-head h3 {
    font-size: 32px;
  }

  .scs-detail-actions .scs-button {
    width: 100%;
  }

  .scs-cart,
  .scs-cart-page-card,
  .scs-checkout-page-card {
    padding: 14px;
	display:block;
    gap: 12px;
  }

  .scs-cart-head {
    margin: -14px -14px 12px;
    padding: 15px 14px;
    font-size: 17px;
  }

  .scs-cart-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 14px;
  }

  .scs-cart-row strong {
    overflow-wrap: anywhere;
  }

  .scs-cart-row b {
    font-size: 18px;
    white-space: normal;
  }

  .scs-cart-row button {
    width: 100%;
    min-height: 44px;
  }

  .scs-cart [data-scs-totals] {
    padding: 4px 12px;
    width: 100%;
  }

  .scs-totals div {
    align-items: flex-start;
    gap: 8px;
  }

  .scs-checkout {
    padding: 16px;
    gap: 18px;
  }

  .scs-checkout-submit {
    min-height: 50px;
  }

  .scs-flow-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 12px;
  }

  .scs-flow-actions .scs-button {
    width: 100%;
    min-height: 50px;
  }

  .scs-lookup {
    padding: 12px;
  }

  .scs-public-order-hero {
    display: grid;
    padding: 22px;
  }

  .scs-public-order-hero h3 {
    font-size: 30px;
  }

  .scs-public-order-hero > strong {
    font-size: 26px;
  }

  .scs-public-list {
    grid-template-columns: 1fr;
  }

  .scs-public-list dd {
    text-align: left;
    padding-top: 0;
  }

  .scs-public-order-actions,
  .scs-public-order-actions .scs-button {
    justify-content: stretch;
  }

  .scs-public-order-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scs-public-order-actions .scs-button {
    width: 100%;
  }

  .scs-public-products {
    margin: 0 14px 14px;
  }

  .scs-public-product-row {
    display: grid;
  }

  .scs-public-totals {
    width: auto;
    margin: 0 14px 14px;
  }

  .scs-admin-public-kpis,
  .scs-admin-public-order-meta,
  .scs-admin-public-totals,
  .scs-admin-public-filter {
    grid-template-columns: 1fr;
  }

  .scs-admin-public-panel,
  .scs-admin-public-order,
  .scs-admin-public-lock {
    padding: 16px;
  }

  .scs-admin-public-order-top {
    display: grid;
    margin: -16px -16px 14px;
    padding: 16px;
  }

  .scs-admin-public-order-top > strong {
    white-space: normal;
  }

  .scs-admin-public-order-items div {
    grid-template-columns: 1fr;
  }

  .scs-admin-public-order-items small,
  .scs-admin-public-order-items b {
    grid-column: auto;
    grid-row: auto;
  }

  .scs-admin-public-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scs-admin-public-actions .scs-button {
    width: 100%;
  }

  .scs-admin-public-row-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .scs-admin-public-table-wrap {
    margin: 0 -16px;
    width: calc(100% + 32px);
    border-left: 0;
    border-right: 0;
  }

  .scs-ring-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scs-line-chart {
    overflow-x: auto;
  }

  .scs-line-chart svg {
    min-width: 560px;
  }
}

/* Final overrides kept last so the animated product rail and hero polish win over the base rules. */
.scs-suite .scs-hero {
  /* min-height: clamp(450, 82vh, 660px); */
  border-radius: 0;
  margin-bottom: 0;
  padding: clamp(56px, 8vw, 112px);
  align-items: center;
  background-position: center center;
  background-size: cover;
  animation: scsHeroPhotoDrift 18s ease-in-out infinite alternate;
  isolation: isolate;
}
.scs-suite .scs-hero:before {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,122,48,.34), transparent 28%),
    linear-gradient(100deg, rgba(8, 13, 18, .97) 4%, rgba(8, 13, 18, .86) 42%, rgba(8, 13, 18, .48) 74%, rgba(8, 13, 18, .18));
}
.scs-suite .scs-hero:after {
  z-index: 2;
}
.scs-suite .scs-hero-content {
  max-width: 760px;
  z-index: 3;
}
.scs-suite .scs-hero-actions {
  z-index: 4;
}
.scs-suite .scs-hero .scs-eyebrow {
  animation: scsHeroTextType 1.45s cubic-bezier(.22,.9,.32,1) .02s both;
}
.scs-suite .scs-hero h2 {
  position: relative;
  width: auto;
  max-width: 760px;
  overflow: hidden;
  text-wrap: balance;
  animation: scsHeroTextType 2.7s cubic-bezier(.18,.86,.24,1) .18s both;
}
.scs-suite .scs-hero h2.scs-typed,
.scs-suite .scs-hero p.scs-typed {
  opacity: 1;
  transform: none;
  clip-path: none;
  filter: none;
  overflow: visible;
  animation: none;
}
.scs-suite .scs-type-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .08em;
  margin-bottom: -.08em;
}
.scs-suite .scs-type-word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateX(-28px) translateY(8px);
  filter: blur(5px);
  transition:
    opacity .72s ease,
    transform .86s cubic-bezier(.18,.86,.24,1),
    filter .72s ease;
}
.scs-suite .scs-typed-ready .scs-type-word-inner {
  opacity: 1;
  transform: translateX(0) translateY(0);
  filter: blur(0);
}
.scs-suite .scs-hero h2:after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .86em;
  margin-left: .08em;
  background: var(--accent);
  vertical-align: -.05em;
  animation: scsWriteCursor .82s steps(1, end) 11;
}
.scs-suite .scs-hero .scs-eyebrow,
.scs-suite .scs-hero p:last-child {
  animation-duration: 1.05s;
}
.scs-suite .scs-hero p:last-child {
  max-width: 650px;
  animation-name: scsHeroTextType;
  animation-delay: 1.15s;
  animation-duration: 1.65s;
}
.scs-suite .scs-hero-video {
  opacity: .72;
  filter: saturate(1.1) contrast(1.04);
}
.scs-suite .scs-product-stage {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto 18px;
  overflow: hidden;
  padding: 8px 0 22px;
  position: relative;
}
.scs-suite .scs-product-stage:before,
.scs-suite .scs-product-stage:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 5;
  pointer-events: none;
}
.scs-suite .scs-product-stage:before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.scs-suite .scs-product-stage:after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}
.scs-suite .scs-product-rail {
  display: flex;
  grid-template-columns: none;
  gap: 24px;
  overflow: visible;
  padding: 42px 0 52px;
  width: max-content;
  max-width: none;
  animation: scsProductRail 68s linear infinite;
  will-change: transform;
}
.scs-suite .scs-product-rail:hover,
.scs-suite .scs-product-rail:focus-within {
  animation-play-state: paused;
}
.scs-suite .scs-product-rail .scs-card {
  width: 418px;
  flex: 0 0 418px;
  opacity: 0;
  border-radius: 16px;
  border-color: rgba(31,122,92,.16);
  box-shadow: 0 26px 70px -44px rgba(16,24,32,.78);
  animation-duration: .86s;
  animation-timing-function: cubic-bezier(.22,.9,.32,1);
  animation-fill-mode: both;
}
.scs-suite .scs-product-rail .scs-card:after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -30%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  pointer-events: none;
  animation: scsCardGlow 3.8s ease-in-out infinite;
}
.scs-suite .scs-product-rail .scs-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: var(--accent);
  box-shadow: 0 34px 86px -38px rgba(16,24,32,.72);
}
.scs-suite .scs-product-rail .scs-card-media {
  aspect-ratio: 16 / 9;
}
.scs-suite .scs-product-rail .scs-card-body {
  min-height: 340px;
  padding: 20px;
  gap: 10px;
}
.scs-suite .scs-product-rail .scs-card h3 {
  font-size: 22px;
}
.scs-suite .scs-product-rail .scs-card p {
  font-size: 14px;
}
.scs-suite .scs-product-rail .scs-card ul {
  font-size: 13px;
}
.scs-suite .scs-product-rail .scs-price strong {
  font-size: 20px;
}
.scs-suite .scs-product-rail .scs-price {
  background: linear-gradient(135deg, rgba(31,122,92,.08), rgba(255,122,48,.08));
  border: 1px solid rgba(31,122,92,.12);
  border-radius: 12px;
  padding: 14px;
}
.scs-suite .scs-shop-after {
  width: min(1120px, calc(100% - 40px));
  margin: 18px auto 74px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(16,24,32,.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(31,122,92,.1), rgba(255,122,48,.1)),
    #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 26px;
  box-shadow: 0 28px 74px -54px rgba(16,24,32,.58);
}
.scs-suite .scs-shop-after > div > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.scs-suite .scs-shop-after h3 {
  margin: 8px 0 10px;
  font-family: var(--selsv-font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.06;
  color: var(--ink);
}
.scs-suite .scs-shop-after p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}
.scs-suite .scs-shop-after ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.scs-suite .scs-shop-after li {
  min-height: 76px;
  border: 1px solid rgba(31,122,92,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  padding: 15px 16px;
  display: grid;
  align-content: center;
  gap: 4px;
  animation: scsProofRise .72s cubic-bezier(.22,.9,.32,1) both;
}
.scs-suite .scs-shop-after li:nth-child(2) {
  animation-delay: .12s;
}
.scs-suite .scs-shop-after li:nth-child(3) {
  animation-delay: .24s;
}
.scs-suite .scs-shop-after strong {
  color: var(--ink);
  font-family: var(--selsv-font-display);
  font-size: 18px;
}
.scs-suite .scs-shop-after small {
  color: var(--muted);
  font-weight: 700;
}
.scs-suite .scs-product-rail .scs-card:nth-child(4n + 1) {
  animation-name: scsCardFromTop;
  animation-delay: .08s;
}
.scs-suite .scs-product-rail .scs-card:nth-child(4n + 2) {
  animation-name: scsCardFromBottom;
  animation-delay: .18s;
}
.scs-suite .scs-product-rail .scs-card:nth-child(4n + 3) {
  animation-name: scsCardFromLeft;
  animation-delay: .28s;
}
.scs-suite .scs-product-rail .scs-card:nth-child(4n) {
  animation-name: scsCardFromRight;
  animation-delay: .38s;
}
.scs-suite .scs-product-rail .scs-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.scs-suite .scs-cart {
  grid-template-areas: "head head" "items form" "coupon form" "totals form";
}
.scs-suite .scs-cart-page-card {
  grid-template-areas: "head" "items" "coupon" "totals" "actions";
}
.scs-suite .scs-coupon-box {
  grid-area: coupon;
}
@media (max-width: 760px) {
  .scs-suite .scs-hero {
    min-height: 620px;
    padding: 32px 20px;
  }
  .scs-suite .scs-hero h2 {
    width: auto;
  }
  .scs-suite .scs-hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }
  .scs-suite .scs-product-rail {
    padding: 36px 18px 46px;
    animation-duration: 44s;
  }
  .scs-suite .scs-product-stage {
    width: min(100%, 430px);
  }
  .scs-suite .scs-product-rail .scs-card {
    width: min(380px, 82vw);
    flex-basis: min(380px, 82vw);
  }
  .scs-suite .scs-shop-after {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-bottom: 52px;
  }
}

/* Clean shop-page finish: no white side masks, no orange accent, natural card row. */
.scs-suite {
  --accent: #26a980;
  --accent2: #176b54;
}
.scs-suite .scs-hero:before {
  background:
    radial-gradient(circle at 78% 18%, rgba(38,169,128,.28), transparent 28%),
    linear-gradient(100deg, rgba(8, 13, 18, .97) 4%, rgba(8, 13, 18, .86) 42%, rgba(8, 13, 18, .48) 74%, rgba(8, 13, 18, .18));
}
.scs-suite .scs-hero h2:after {
  background: #26a980;
}
.scs-suite .scs-hero .scs-eyebrow {
  color: #dffdef;
  border-color: rgba(223,253,239,.28);
  background: rgba(31,122,92,.22);
}
.scs-suite .scs-product-stage {
  width: min(calc(100% - 48px), 1180px);
  overflow: hidden;
  background: transparent;
}
.scs-suite .scs-product-stage:before,
.scs-suite .scs-product-stage:after {
  display: none !important;
}
.scs-suite .scs-product-rail {
  gap: 24px;
  padding: 38px 0 56px;
}
.scs-suite .scs-product-rail .scs-card {
  width: 360px;
  flex: 0 0 360px;
}
.scs-suite .scs-product-rail .scs-card:before,
.scs-suite .scs-hero:after {
  background: linear-gradient(90deg, #1f7a5c, #26a980);
}
.scs-suite .scs-product-rail .scs-price,
.scs-suite .scs-shop-after {
  background:
    linear-gradient(135deg, rgba(31,122,92,.1), rgba(38,169,128,.1)),
    #fff;
}
.scs-suite .scs-button:hover,
.scs-suite .scs-button:focus-visible,
.scs-suite .scs-button:active {
  background: #26a980;
  box-shadow: 0 18px 30px -18px rgba(38,169,128,.75);
}
@media (max-width: 1020px) {
  .scs-suite .scs-product-stage {
    width: min(calc(100% - 32px), 760px);
  }
}
@media (max-width: 760px) {
  .scs-suite .scs-product-stage {
    width: min(100%, 390px);
  }
  .scs-suite .scs-product-rail .scs-card {
    width: min(350px, 84vw);
    flex-basis: min(350px, 84vw);
  }
}

/* Shop hero: video-only background with clean readable content. */
.scs-suite .scs-hero-catalog {
  min-height: clamp(430px, 68vh, 620px);
  background-image: none !important;
  background-color: #05090d;
  animation: none;
}
.scs-suite .scs-hero-catalog:before {
  background:
    linear-gradient(90deg, rgba(4, 8, 12, .82) 0%, rgba(4, 8, 12, .62) 38%, rgba(4, 8, 12, .2) 100%);
}
.scs-suite .scs-hero-catalog:after,
.scs-suite .scs-hero-catalog .scs-hero-proof {
  display: none;
}
.scs-suite .scs-hero-catalog .scs-hero-video {
  opacity: 1;
  filter: none;
}
.scs-suite .scs-hero-catalog .scs-hero-content {
  max-width: 720px;
}
@media (max-width: 760px) {
  .scs-suite .scs-hero-catalog {
    min-height: 500px;
    padding: 32px 20px;
  }
  .scs-suite .scs-hero-catalog:before {
    background: linear-gradient(180deg, rgba(4, 8, 12, .78), rgba(4, 8, 12, .5));
  }
}
.scs-commerce-workspace{max-width:1440px;margin:28px auto;padding:0 22px;color:#20273b;font-family:Inter,system-ui,sans-serif}.scs-workspace-hero{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:34px 38px;border-radius:28px;background:linear-gradient(135deg,#063f35,#0a7758);color:#fff;box-shadow:0 22px 55px rgba(5,74,58,.18)}.scs-workspace-hero span{font-size:13px;font-weight:800;letter-spacing:.12em;color:#9cf27c}.scs-workspace-hero h1{margin:8px 0 6px;font-size:clamp(30px,4vw,48px);color:#fff}.scs-workspace-hero p{margin:0;color:#d8f4e8}.scs-workspace-hero>a{padding:13px 20px;border:1px solid rgba(255,255,255,.5);border-radius:13px;color:#fff;text-decoration:none;font-weight:800}.scs-workspace-tabs{display:flex;gap:8px;overflow-x:auto;margin:18px 0;padding:8px;border:1px solid #dce8e1;border-radius:17px;background:#fff;box-shadow:0 8px 25px rgba(30,48,42,.06)}.scs-workspace-tabs a{white-space:nowrap;padding:12px 17px;border-radius:11px;color:#647083;text-decoration:none;font-weight:750}.scs-workspace-tabs a.is-active,.scs-workspace-tabs a:hover{background:#56ce21;color:#fff}.scs-workspace-notice{margin:14px 0;padding:14px 18px;border:1px solid #a9dc96;border-radius:13px;background:#f1ffec;color:#277719;font-weight:700}.scs-workspace-kpis{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.scs-workspace-kpis article,.scs-workspace-panel{border:1px solid #dce8e1;border-radius:20px;background:#fff;box-shadow:0 12px 35px rgba(30,48,42,.07)}.scs-workspace-kpis article{padding:22px;border-left:5px solid #58ca29}.scs-workspace-kpis span{display:block;color:#68758a;font-size:13px;font-weight:800;text-transform:uppercase}.scs-workspace-kpis strong{display:block;margin-top:8px;font-size:28px}.scs-workspace-actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px;margin-top:18px}.scs-workspace-actions a{min-height:125px;padding:24px;border:1px solid #d9e7de;border-radius:19px;background:linear-gradient(145deg,#fff,#f4fbf1);color:#20273b;text-decoration:none}.scs-workspace-actions strong{display:block;font-size:20px}.scs-workspace-actions span{display:block;margin-top:26px;color:#2b8f21;font-weight:800}.scs-workspace-panel{padding:28px}.scs-workspace-panel h2{margin:0 0 22px;font-size:30px}.scs-panel-title{display:flex;align-items:center;justify-content:space-between}.scs-panel-title>a,.scs-workspace-form>button,.scs-order-filter button,.scs-inline-status button,.scs-save-wide{border:0;border-radius:11px;background:#56ce21;color:#fff;padding:12px 18px;text-decoration:none;font-weight:800;cursor:pointer}.scs-workspace-form label,.scs-payment-grid label{display:block;margin-bottom:15px;color:#455066;font-size:13px;font-weight:750}.scs-workspace-form input,.scs-workspace-form textarea,.scs-workspace-form select,.scs-order-filter input,.scs-order-filter select,.scs-table-wrap input,.scs-table-wrap select{box-sizing:border-box;width:100%;margin-top:7px;padding:13px 14px;border:1px solid #d5e0e8;border-radius:11px;background:#fbfdff;color:#20273b;font:inherit}.scs-form-grid,.scs-payment-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.scs-payment-grid section{padding:22px;border:1px solid #dce8e1;border-radius:17px;background:#f9fcfa}.scs-check{display:flex!important;align-items:center;gap:9px}.scs-check input{width:auto!important;margin:0!important}.scs-product-admin-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.scs-product-admin-grid article{overflow:hidden;border:1px solid #dce5e0;border-radius:17px;background:#fff}.scs-product-admin-grid img{width:100%;height:175px;object-fit:cover}.scs-product-admin-grid article>div{padding:18px}.scs-product-admin-grid h3{margin:5px 0 10px}.scs-row-actions{display:flex;gap:10px;margin-top:18px}.scs-row-actions a,.scs-row-actions button{border:0;border-radius:9px;background:#edf8e9;color:#27801e;padding:9px 14px;text-decoration:none;font-weight:750;cursor:pointer}.scs-row-actions form{margin:0}.scs-order-filter{display:grid;grid-template-columns:minmax(240px,1fr) 220px auto;gap:12px;align-items:end;margin-bottom:18px}.scs-table-wrap{overflow:auto}.scs-table-wrap table{width:100%;border-collapse:collapse}.scs-table-wrap th,.scs-table-wrap td{padding:13px;border-bottom:1px solid #e5ece8;text-align:left;vertical-align:middle}.scs-table-wrap th{background:#f3f8f5;font-size:12px;text-transform:uppercase}.scs-table-wrap td small{display:block;color:#788397}.scs-inline-status{display:flex;gap:7px;min-width:220px}.scs-inline-status select{margin:0;padding:9px}.scs-inline-status button{padding:8px 11px}.scs-workspace-lock{max-width:700px;margin:60px auto;padding:35px;border:1px solid #f0c9c9;border-radius:18px;background:#fff5f5;text-align:center}
@media(max-width:1000px){.scs-workspace-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}.scs-workspace-actions,.scs-product-admin-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:680px){.scs-commerce-workspace{padding:0 12px}.scs-workspace-hero{align-items:flex-start;flex-direction:column;padding:25px}.scs-workspace-kpis,.scs-workspace-actions,.scs-product-admin-grid,.scs-form-grid,.scs-payment-grid,.scs-order-filter{grid-template-columns:1fr}.scs-workspace-panel{padding:18px}.scs-workspace-kpis strong{font-size:24px}}
.scs-workspace-actions a:hover,.scs-workspace-actions a:focus,.scs-product-admin-grid article:hover{background:linear-gradient(145deg,#fff,#f4fbf1)!important;color:#20273b!important}.scs-workspace-pagination{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:24px 0 4px}.scs-workspace-pagination .page-numbers,.scs-workspace-pagination button{min-width:40px;padding:10px 13px;border:1px solid #d5e4da;border-radius:10px;background:#fff!important;color:#2d7130!important;text-align:center;text-decoration:none;font-weight:800;cursor:pointer}.scs-workspace-pagination .current,.scs-workspace-pagination button.is-current{border-color:#56ce21;background:#56ce21!important;color:#fff!important}.scs-panel-title>div>span{display:block;margin-top:-15px;margin-bottom:20px;color:#788397;font-weight:700}
body .scs-suite .scs-grid.scs-product-rail>.scs-card{animation:none!important;display:flex!important;opacity:1!important;visibility:visible!important;will-change:auto!important}body .scs-preview-suite,body .scs-preview-suite .scs-product-stage,body .scs-preview-suite .scs-product-rail{min-height:0!important;opacity:1!important;visibility:visible!important}
body .scs-suite .scs-product-stage{overflow:visible!important}body .scs-suite .scs-grid.scs-product-rail{animation:none!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;grid-auto-flow:row!important;gap:22px!important;overflow:visible!important;padding:30px!important;transform:none!important;width:100%!important}body .scs-suite .scs-grid.scs-product-rail .scs-card{animation:none!important;height:auto!important;min-width:0!important;transform:none}body .scs-suite .scs-grid.scs-product-rail .scs-card:hover{transform:translateY(-5px)!important}body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:repeat(4,minmax(0,1fr))!important;padding:18px 0!important}.scs-catalog-pagination{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:8px 0 34px}.scs-catalog-pagination .page-numbers{min-width:42px;padding:11px 14px;border:1px solid #d6e4da;border-radius:10px;background:#fff;color:#2b8124;text-align:center;text-decoration:none;font-weight:850}.scs-catalog-pagination .current,.scs-catalog-pagination .page-numbers:hover{border-color:#58cf20;background:#58cf20;color:#fff}.scs-inline-product-details{position:relative;margin:0 30px 36px;padding:30px;border:1px solid #cfe2d5;border-radius:22px;background:#fff;box-shadow:0 18px 48px rgba(16,44,31,.12);scroll-margin-top:24px}.scs-inline-product-details[hidden]{display:none!important}.scs-inline-close{position:absolute;right:15px;top:15px;z-index:3;width:40px;height:40px;border:1px solid #d6e2db;border-radius:50%;background:#fff;color:#1d2b25;font-size:25px;cursor:pointer}@media(max-width:950px){body .scs-suite .scs-grid.scs-product-rail,body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:620px){body .scs-suite .scs-grid.scs-product-rail,body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:1fr!important;padding:16px!important}.scs-inline-product-details{margin:0 16px 26px;padding:20px 15px}}
.scs-bulk-toolbar{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:0 0 18px;padding:15px 17px;border:1px solid #d9e7de;border-radius:15px;background:linear-gradient(135deg,#f7fbf8,#eff9eb)}.scs-bulk-toolbar>div:first-child{display:flex;align-items:center;gap:10px}.scs-bulk-toolbar strong{color:#233044}.scs-bulk-toolbar [data-scs-selected-count]{padding:5px 9px;border-radius:999px;background:#e2f6d9;color:#2d7c25;font-size:12px;font-weight:800}.scs-bulk-controls{display:flex;align-items:center;justify-content:flex-end;gap:9px;flex:1}.scs-bulk-controls input,.scs-bulk-controls select{box-sizing:border-box;min-height:41px;margin:0!important;padding:9px 12px;border:1px solid #cedbd3;border-radius:10px;background:#fff;color:#263247;font:inherit}.scs-bulk-controls input{max-width:220px}.scs-bulk-controls button{min-height:41px;padding:9px 17px;border:0;border-radius:10px;background:#53c922;color:#fff;font-weight:850;cursor:pointer;box-shadow:0 8px 18px rgba(83,201,34,.2)}.scs-bulk-controls button:disabled{cursor:wait;opacity:.65}.scs-select-cell{width:38px!important;text-align:center!important}.scs-select-cell input{width:17px!important;height:17px;margin:0!important;accent-color:#53c922}.scs-commerce-workspace .scs-table-wrap{border:1px solid #dde7e1;border-radius:15px;background:#fff}.scs-commerce-workspace .scs-table-wrap thead th{position:sticky;top:0;z-index:1;background:#edf6ef;color:#455167}.scs-commerce-workspace .scs-table-wrap tbody tr{transition:background .15s ease}.scs-commerce-workspace .scs-table-wrap tbody tr:hover{background:#f7fcf5!important}.scs-commerce-workspace .scs-table-wrap tbody tr:has([data-scs-row-select]:checked){background:#effbe9!important}.scs-inline-status select{border-color:#cadbcf!important;background:#fff!important}.scs-inline-status button{box-shadow:none!important}@media(max-width:760px){.scs-bulk-toolbar{align-items:stretch;flex-direction:column}.scs-bulk-controls{align-items:stretch;flex-direction:column}.scs-bulk-controls input{max-width:none}.scs-bulk-controls>*{width:100%}.scs-commerce-workspace .scs-table-wrap{border-radius:11px}}

/* Homepage catalog: six products in a stable three-column, two-row grid. */
body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:repeat(3,minmax(0,1fr))!important;grid-auto-flow:row!important;overflow:hidden!important;width:100%!important}
body .scs-preview-suite .scs-card{box-sizing:border-box!important;max-width:100%!important;min-width:0!important;overflow:hidden!important}
body .scs-preview-suite .scs-card *{max-width:100%}
body .scs-preview-suite .scs-card h3,body .scs-preview-suite .scs-card p{overflow-wrap:anywhere}
@media(max-width:950px){body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:620px){body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:1fr!important}}

/* Tablet: exactly two cards per row on Services and homepage previews. */
@media(min-width:621px) and (max-width:1180px){body .scs-suite .scs-grid.scs-product-rail,body .scs-preview-suite .scs-grid.scs-product-rail{grid-template-columns:repeat(2,minmax(0,1fr))!important;grid-auto-flow:row!important;gap:20px!important}body .scs-suite .scs-grid.scs-product-rail .scs-card,body .scs-preview-suite .scs-grid.scs-product-rail .scs-card{box-sizing:border-box!important;width:100%!important;max-width:100%!important;min-width:0!important}}

/* Frontend product media upload and native WordPress rich editor. */
.scs-cart-related{max-width:1320px;margin:40px auto 70px;padding:0 24px}.scs-cart-related-head{text-align:center;margin-bottom:24px}.scs-cart-related-head>span{color:#2b8f21;font-size:12px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}.scs-cart-related-head h2{margin:7px 0;color:#182439;font-size:clamp(27px,3vw,40px)}.scs-cart-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.scs-cart-related-item[hidden],.scs-related-empty[hidden],[data-scs-empty-shopping][hidden],[data-scs-go-checkout][hidden]{display:none!important}.scs-cart-related-item>.scs-card{height:100%}.scs-related-empty{padding:38px;border:1px solid #d8e7dc;border-radius:20px;background:linear-gradient(135deg,#f4fbed,#fff);text-align:center}.scs-related-empty p{margin:0 0 17px;color:#647269}.scs-related-empty a{text-decoration:none}@media(max-width:900px){.scs-cart-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:620px){.scs-cart-related{padding:0 16px}.scs-cart-related-grid{grid-template-columns:1fr}}
.scs-suite [data-scs-add].is-added-to-cart,.scs-suite [data-scs-add].is-added-to-cart:hover,.scs-preview-suite [data-scs-add].is-added-to-cart,.scs-preview-suite [data-scs-add].is-added-to-cart:hover{border-color:#b9d5c0!important;background:#e9f5e8!important;color:#287b20!important;box-shadow:none!important;cursor:not-allowed!important;opacity:1!important;transform:none!important}.scs-added-check{display:inline-grid;width:22px;height:22px;place-items:center;border-radius:50%;background:#58cf20;color:#10220b;font-size:13px;font-weight:950}

/* Frontend product media upload and native WordPress rich editor. */
body .svcrm-suite-main>.scs-commerce-workspace{box-sizing:border-box!important;min-width:0!important;max-width:100%!important;width:100%!important;margin:28px 0!important;padding:0 32px!important;overflow:hidden!important}body .svcrm-suite-main>.scs-commerce-workspace *{box-sizing:border-box}.scs-commerce-workspace .scs-workspace-tabs,.scs-commerce-workspace .scs-workspace-panel,.scs-commerce-workspace .scs-workspace-form{min-width:0!important;max-width:100%!important}.scs-product-editor-panel{overflow:hidden}.scs-product-image-upload input[type=file]{padding:10px;background:#f7fbf5;cursor:pointer}.scs-product-image-upload>small{display:block;margin-top:7px;color:#758279;font-weight:650}.scs-current-product-image{display:flex;align-items:center;gap:12px;margin-top:10px;padding:10px;border:1px solid #d8e6dc;border-radius:12px;background:#f7fbf5}.scs-current-product-image img{width:72px;height:72px;border-radius:9px;object-fit:cover}.scs-current-product-image small{color:#64736b;line-height:1.4}.scs-rich-editor{min-width:0;margin:2px 0 18px}.scs-rich-editor>label{display:block;margin-bottom:7px;color:#455066;font-size:13px;font-weight:750}.scs-rich-editor .wp-editor-wrap{min-width:0;max-width:100%;overflow:hidden;border:1px solid #d4dfd7;border-radius:13px;background:#fff}.scs-rich-editor .wp-editor-tools{padding:8px 10px 0;background:#f4f9f2}.scs-rich-editor .wp-editor-tabs button{border-color:#d4dfd7;background:#fff;color:#33473d}.scs-rich-editor .mce-toolbar-grp{border-color:#dce8df;background:#f8fbf7}.scs-rich-editor .mce-btn:hover,.scs-rich-editor .mce-btn:focus{background:#e8f8e1}.scs-rich-editor textarea.wp-editor-area{box-sizing:border-box!important;width:100%!important;margin:0!important;border:0!important;border-radius:0!important;background:#fff!important;line-height:1.7!important}.scs-rich-editor .mce-statusbar{border-color:#dce8df}.scs-rich-editor .wp-media-buttons .button{border-color:#58cf20;color:#287b20}@media(max-width:700px){body .svcrm-suite-main>.scs-commerce-workspace{padding:0 16px!important}.scs-current-product-image{align-items:flex-start;flex-direction:column}}
.scs-webdev-flow .scs-cart,.scs-webdev-flow .scs-checkout-section,.scs-webdev-flow .scs-order-summary,.scs-webdev-flow .scs-button{border-radius:0!important}
.scs-webdev-flow .scs-cart-related{display:none!important}
.scs-webdev-flow .scs-flow-nav a[href*="sellsvora-store"],.scs-webdev-flow .scs-flow-nav a[href*="sellsvora-cart"]{display:none!important}
