:root {
  --sfs-ink: #171a1d;
  --sfs-muted: #666b70;
  --sfs-paper: #f5f3ed;
  --sfs-red: #c5332d;
  --sfs-gold: #f4c44e;
  --sfs-line: #deddd8;
}

.sfs-studio,
.sfs-studio * {
  box-sizing: border-box;
}

.sfs-studio button,
.sfs-studio input,
.sfs-studio select,
.sfs-studio textarea {
  font: inherit;
}

.sfs-studio button {
  cursor: pointer;
}

.sfs-studio {
  width: 100%;
  min-height: 680px;
  display: grid;
  grid-template-columns: 76px 290px minmax(390px, 1fr) 270px;
  overflow: hidden;
  border: 1px solid #d4d3ce;
  border-radius: 3px;
  background: #fff;
  color: var(--sfs-ink);
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 22px 70px rgba(36, 34, 31, .1);
}

.sfs-tools {
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--sfs-ink);
}

.sfs-tools button {
  min-height: 68px;
  padding: 8px 3px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #aeb1b3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sfs-tools button:hover,
.sfs-tools button.is-active {
  background: #2c3033;
  color: #fff;
}

.sfs-tools button.is-active {
  box-shadow: inset 3px 0 0 var(--sfs-red);
}

.sfs-tools i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #55595c;
  border-radius: 3px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.sfs-tools span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
}

.sfs-controls,
.sfs-product-panel {
  min-width: 0;
  padding: 0 20px 22px;
  background: #fff;
}

.sfs-controls {
  border-right: 1px solid var(--sfs-line);
}

.sfs-product-panel {
  border-left: 1px solid var(--sfs-line);
}

.sfs-topline {
  height: 54px;
  margin: 0 -20px 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3e2de;
  color: #73777a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.sfs-tool-panel {
  display: none;
}

.sfs-tool-panel.is-active {
  display: block;
}

.sfs-tool-panel h3,
.sfs-school-designer h2 {
  margin: 0 0 20px;
  color: var(--sfs-ink);
  font-size: 20px;
  line-height: 1.15;
}

.sfs-tool-panel > p {
  margin: -10px 0 18px;
  color: var(--sfs-muted);
  font-size: 12px;
  line-height: 1.5;
}

.sfs-tool-panel label {
  display: block;
  margin-bottom: 16px;
  color: #696d70;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sfs-tool-panel input:not([type="color"]):not([type="file"]),
.sfs-tool-panel select,
.sfs-tool-panel textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #cac9c4;
  border-radius: 2px;
  outline: 0;
  background: #faf9f6;
  color: var(--sfs-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.sfs-tool-panel textarea {
  min-height: 112px;
  resize: vertical;
}

.sfs-tool-panel input:focus,
.sfs-tool-panel select:focus,
.sfs-tool-panel textarea:focus {
  border-color: var(--sfs-red);
  box-shadow: 0 0 0 2px rgba(197, 51, 45, .1);
}

.sfs-color-field {
  margin-top: 7px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #cac9c4;
}

.sfs-color-field input {
  width: 29px;
  height: 29px;
  padding: 0;
  border: 0;
  background: transparent;
}

.sfs-color-field span {
  color: var(--sfs-ink);
  font-size: 12px;
}

.sfs-art-grid,
.sfs-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sfs-art-grid button,
.sfs-product-grid button {
  min-width: 0;
  min-height: 76px;
  padding: 8px 5px;
  border: 1px solid #d8d7d2;
  background: #fff;
  color: #65696c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.sfs-art-grid button:hover,
.sfs-product-grid button:hover {
  border-color: #9b9b96;
}

.sfs-art-grid button.is-selected,
.sfs-product-grid button.is-selected {
  border: 2px solid var(--sfs-red);
  background: #fff9f7;
  color: var(--sfs-red);
}

.sfs-art-grid i {
  color: var(--sfs-ink);
  font-size: 25px;
  font-style: normal;
}

.sfs-art-grid span,
.sfs-product-grid span {
  max-width: 100%;
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
}

.sfs-product-grid i {
  color: var(--sfs-ink);
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}

.sfs-upload {
  min-height: 180px;
  padding: 20px;
  border: 1px dashed #a8a8a3;
  background: #faf9f6;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  cursor: pointer;
}

.sfs-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.sfs-upload i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sfs-ink);
  color: #fff;
  font-style: normal;
  font-size: 20px;
}

.sfs-upload b {
  color: var(--sfs-ink);
  font-size: 12px;
  text-transform: none;
}

.sfs-upload span {
  color: #75797c;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.sfs-rights-note {
  margin-top: 16px;
  padding: 14px;
  border-left: 3px solid var(--sfs-gold);
  background: #fff4d8;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 11px;
  line-height: 1.45;
}

.sfs-ai-title {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sfs-ai-title > i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: var(--sfs-red);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  clip-path: polygon(50% 0, 95% 22%, 88% 80%, 50% 100%, 12% 80%, 5% 22%);
}

.sfs-ai-title h3 {
  margin: 0 0 2px;
}

.sfs-ai-title p {
  margin: 0;
  color: var(--sfs-muted);
  font-size: 10px;
}

.sfs-prompt-chips {
  margin: -4px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sfs-prompt-chips button {
  padding: 6px 8px;
  border: 1px solid #dad9d4;
  background: #fff;
  color: #63676a;
  font-size: 9px;
}

.sfs-tool-panel > small {
  display: block;
  margin-top: 10px;
  color: #777b7e;
  font-size: 9px;
  line-height: 1.45;
}

.sfs-primary {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 2px;
  background: var(--sfs-school-primary, var(--sfs-red));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.sfs-primary:hover {
  filter: brightness(.9);
}

.sfs-primary:disabled {
  cursor: not-allowed;
  opacity: .52;
}

.sfs-message {
  margin: 16px 0 0;
  padding: 11px 12px;
  border-left: 3px solid #2b8659;
  background: #e7f2eb;
  color: #215d41;
  font-size: 10px;
  line-height: 1.45;
}

.sfs-message[data-kind="error"] {
  border-left-color: var(--sfs-red);
  background: #fff0ed;
  color: #8f2520;
}

.sfs-message[data-kind="working"] {
  border-left-color: var(--sfs-gold);
  background: #fff6df;
  color: #70510e;
}

.sfs-canvas-wrap {
  min-width: 0;
  background: #e8e6e0;
}

.sfs-canvas-bar {
  height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid #d4d2cc;
  background: #f8f7f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b7e80;
  font-size: 9px;
}

.sfs-canvas-bar div {
  display: flex;
  gap: 3px;
}

.sfs-canvas-bar button {
  padding: 7px 9px;
  border: 0;
  background: transparent;
  color: #6c7073;
  font-size: 10px;
}

.sfs-canvas-bar button.is-active {
  border-bottom: 2px solid var(--sfs-red);
  color: var(--sfs-ink);
  font-weight: 900;
}

.sfs-stage {
  min-height: 625px;
  height: calc(100% - 54px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .025) 1px, transparent 1px);
  background-size: 24px 24px;
}

.sfs-product {
  --sfs-item-color: #c5332d;
  width: min(56%, 300px);
  aspect-ratio: .78;
  position: relative;
  background: var(--sfs-item-color);
  filter: drop-shadow(0 25px 18px rgba(40, 38, 34, .19));
  transition: background .2s ease, border-radius .25s ease, clip-path .25s ease;
}

.sfs-shirt,
.sfs-hoodie {
  clip-path: polygon(27% 6%, 40% 0, 60% 0, 73% 6%, 98% 17%, 88% 38%, 76% 33%, 78% 100%, 22% 100%, 24% 33%, 12% 38%, 2% 17%);
}

.sfs-hoodie {
  clip-path: polygon(28% 8%, 36% 2%, 42% 0, 58% 0, 64% 2%, 72% 8%, 98% 22%, 87% 42%, 78% 36%, 78% 100%, 22% 100%, 22% 36%, 13% 42%, 2% 22%);
}

.sfs-neck {
  position: absolute;
  top: 0;
  left: 39%;
  width: 22%;
  height: 9%;
  border-radius: 0 0 50% 50%;
  background: #e8e6e0;
}

.sfs-bottle {
  width: 180px;
  aspect-ratio: .45;
  border-radius: 30px 30px 22px 22px;
}

.sfs-bottle::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 26%;
  width: 48%;
  height: 44px;
  border-radius: 9px 9px 0 0;
  background: #24272a;
}

.sfs-towel {
  width: min(70%, 340px);
  aspect-ratio: 1.55;
  border-radius: 3px;
}

.sfs-bag {
  width: min(72%, 360px);
  aspect-ratio: 1.75;
  border-radius: 45px 45px 30px 30px;
}

.sfs-bag::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 25%;
  width: 50%;
  height: 80px;
  border: 14px solid #282b2d;
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.sfs-print-area {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 68%;
  height: 48%;
  z-index: 3;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px dashed rgba(255, 255, 255, .45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sfs-bottle .sfs-print-area {
  top: 27%;
  width: 74%;
  height: 40%;
}

.sfs-towel .sfs-print-area,
.sfs-bag .sfs-print-area {
  top: 22%;
  width: 67%;
  height: 58%;
}

.sfs-print-area > span {
  font-size: clamp(30px, 4vw, 50px);
  line-height: .9;
}

.sfs-print-area strong {
  max-width: 100%;
  font-size: clamp(22px, 3vw, 41px);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
  word-break: break-word;
}

.sfs-print-area small {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .15em;
}

.sfs-print-area img {
  max-width: 96%;
  max-height: 64%;
  margin-bottom: 8px;
  object-fit: contain;
}

.sfs-font-varsity,
.sfs-font-impact {
  font-family: Impact, Haettenschweiler, sans-serif;
}

.sfs-font-varsity {
  transform: scaleX(.82);
}

.sfs-font-slab {
  font-family: Georgia, serif;
  letter-spacing: -.03em !important;
}

.sfs-font-script {
  font-family: cursive;
  text-transform: none !important;
}

.sfs-font-modern {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .02em !important;
}

.sfs-zoom {
  position: absolute;
  left: 17px;
  bottom: 17px;
  padding: 8px 11px;
  border: 1px solid #d4d2cc;
  background: #fff;
  color: #6b6f72;
  font-size: 10px;
  word-spacing: 8px;
}

.sfs-product-colors {
  padding: 19px 0;
  border-bottom: 1px solid #e1e0dc;
}

.sfs-variation {
  padding: 17px 0 0;
}

.sfs-variation label {
  display: block;
  color: #696d70;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sfs-variation select {
  width: 100%;
  margin-top: 7px;
  padding: 11px 12px;
  border: 1px solid #cac9c4;
  border-radius: 2px;
  background: #faf9f6;
  color: var(--sfs-ink);
  font-size: 11px;
  font-weight: 700;
}

.sfs-product-colors p {
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
  color: #6b6f72;
  font-size: 10px;
}

.sfs-product-colors p b {
  color: var(--sfs-ink);
}

.sfs-product-colors > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sfs-product-colors button {
  width: 27px;
  height: 27px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c6c5c0;
}

.sfs-product-colors button.is-selected {
  box-shadow: 0 0 0 2px var(--sfs-red);
}

.sfs-price {
  padding: 19px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.sfs-price span {
  color: #787c7e;
  font-size: 10px;
}

.sfs-price b {
  font-size: 23px;
}

.sfs-help {
  width: 100%;
  margin-top: 15px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6e7275;
  font-size: 10px;
}

.sfs-help b {
  color: var(--sfs-red);
}

.sfs-empty-products,
.sfs-directory-empty {
  padding: 16px;
  border-left: 3px solid var(--sfs-gold);
  background: #fff6df;
  color: #6c5522;
  font-size: 11px;
  line-height: 1.5;
}

.sfs-school-hero {
  --school-primary: #15543a;
  --school-secondary: #fff;
  margin-bottom: 38px;
  padding: clamp(28px, 5vw, 70px);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, var(--school-primary), color-mix(in srgb, var(--school-primary) 78%, #000));
  color: var(--school-secondary);
}

.sfs-school-hero > div:first-child {
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  clip-path: polygon(50% 0, 94% 19%, 86% 79%, 50% 100%, 14% 79%, 6% 19%);
}

.sfs-school-hero img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.sfs-school-hero > div:first-child span {
  font-size: 38px;
  font-weight: 950;
}

.sfs-school-hero small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sfs-school-hero h1 {
  margin: 8px 0;
  color: inherit;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.sfs-school-hero p {
  margin: 0;
  color: inherit;
}

.sfs-school-copy {
  margin-bottom: 35px;
}

.sfs-school-designer {
  margin-top: 65px;
}

.sf-school-row {
  padding: 13px 0;
  border-top: 1px solid #d8d7d3;
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 13px;
  align-items: center;
}

.sf-school-badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  clip-path: polygon(50% 0, 94% 19%, 86% 79%, 50% 100%, 14% 79%, 6% 19%);
}

.sf-school-row > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sf-school-row small {
  color: #777b7e;
}

.sf-school-row > a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: var(--sfs-ink);
  color: #fff;
  text-decoration: none;
}

/* Catalog-backed product mockups and movable design placement */
.sfs-product {
  width: min(88%, 520px);
  aspect-ratio: 1;
  position: relative;
  background: transparent;
  filter: none;
  transition: transform .2s ease;
  transform-origin: center;
}

.sfs-catalog-product {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(33, 31, 28, .16));
  pointer-events: none;
  user-select: none;
}

.sfs-print-boundary {
  position: absolute;
  left: 25%;
  top: 16%;
  width: 50%;
  height: 68%;
  border: 1px dashed rgba(197, 51, 45, .55);
  border-radius: 3px;
  pointer-events: none;
}

.sfs-design-placement {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 34%;
  min-width: 70px;
  min-height: 55px;
  z-index: 5;
  padding: 7px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--sfs-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: move;
  touch-action: none;
  user-select: none;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .22));
}

.sfs-design-placement > span {
  font-size: clamp(23px, 3vw, 43px);
  line-height: .9;
}

.sfs-design-placement strong {
  max-width: 100%;
  font-size: clamp(16px, 2.4vw, 35px);
  line-height: .9;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.sfs-design-placement small {
  margin-top: 4px;
  font-size: clamp(5px, .65vw, 8px);
  font-weight: 900;
  letter-spacing: .11em;
}

.sfs-design-placement > img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  pointer-events: none;
}

.sfs-placement-handle {
  width: 8px;
  height: 8px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--sfs-red);
}

.sfs-placement-handle.is-tl { left: -5px; top: -5px; }
.sfs-placement-handle.is-tr { right: -5px; top: -5px; }
.sfs-placement-handle.is-bl { left: -5px; bottom: -5px; }
.sfs-placement-handle.is-br { right: -5px; bottom: -5px; }

.sfs-drag-hint {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  padding: 6px 9px;
  border-radius: 20px;
  background: rgba(23, 26, 29, .82);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sfs-zoom { display: flex; align-items: center; gap: 7px; word-spacing: 0; }
.sfs-zoom button { width: 25px; height: 25px; padding: 0; border: 0; background: #f0efeb; color: var(--sfs-ink); }
.sfs-product-grid button { min-height: 102px; }
.sfs-product-grid button > img { width: 50px; height: 50px; object-fit: contain; }
.sfs-product-grid button > small { color: var(--sfs-red); font-size: 7px; font-weight: 900; text-transform: uppercase; }
.sfs-catalog-details { margin-top: 15px; padding: 14px 0; border-top: 1px solid #e1e0dc; border-bottom: 1px solid #e1e0dc; display: flex; flex-direction: column; gap: 5px; }
.sfs-catalog-details small { color: var(--sfs-red); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.sfs-catalog-details strong { font-size: 13px; line-height: 1.25; }
.sfs-catalog-details span { color: #555a5d; font-size: 9px; }
.sfs-catalog-details em { color: #7b7f81; font-size: 8px; font-style: normal; line-height: 1.4; }
.sfs-placement-controls { margin-top: 14px; padding-top: 13px; border-top: 1px solid #e1e0dc; }
.sfs-placement-controls > div { margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
.sfs-placement-controls > div b { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.sfs-placement-controls > div button { padding: 0; border: 0; background: transparent; color: var(--sfs-red); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.sfs-placement-controls label { display: grid; grid-template-columns: 1fr auto; margin: 0 0 7px; color: #696d70; font-size: 8px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.sfs-placement-controls label span { color: var(--sfs-ink); }
.sfs-placement-controls input { grid-column: 1 / -1; width: 100%; margin-top: 3px; accent-color: var(--sfs-red); }
.sf-school-badge img { width: 100%; height: 100%; object-fit: cover; }
.sf-school-row em { color: var(--sfs-red); font-size: 8px; font-style: normal; font-weight: 800; }

@media (max-width: 1180px) {
  .sfs-studio {
    grid-template-columns: 70px 270px minmax(360px, 1fr);
  }

  .sfs-product-panel {
    grid-column: 2 / -1;
    padding-top: 22px;
    border-top: 1px solid var(--sfs-line);
    border-left: 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 17px;
    align-items: center;
  }

  .sfs-product-panel .sfs-topline {
    display: none;
  }

  .sfs-product-panel .sfs-help {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .sfs-studio {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .sfs-tools {
    padding: 8px;
    flex-direction: row;
    justify-content: space-around;
  }

  .sfs-tools button {
    width: 25%;
    min-height: 61px;
  }

  .sfs-tools button.is-active {
    box-shadow: inset 0 -3px 0 var(--sfs-red);
  }

  .sfs-controls {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--sfs-line);
  }

  .sfs-stage {
    min-height: 520px;
  }

  .sfs-product-panel {
    display: block;
    border-left: 0;
  }

  .sfs-school-hero {
    grid-template-columns: 100px 1fr;
  }

  .sfs-school-hero > div:first-child {
    width: 96px;
  }
}

@media (max-width: 520px) {
  .sfs-canvas-bar > span {
    display: none;
  }

  .sfs-stage {
    min-height: 430px;
  }

  .sfs-product {
    width: 66%;
  }

  .sfs-bottle {
    width: 135px;
  }

  .sfs-towel,
  .sfs-bag {
    width: 78%;
  }

  .sfs-school-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sfs-school-hero > div:first-child {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sfs-studio *,
  .sfs-studio *::before,
  .sfs-studio *::after {
    transition-duration: .01ms !important;
  }
}
