:root {
  --pink: #ea4e8e;
  --pink-soft: #ef77a7;
  --pink-deep: #dc145f;
  --pink-light: #f692c7;
  --pink-pale: #ffe3f0;
  --ink: #151316;
  --muted: #6c6268;
  --line: #f05b9d;
  --page: #ffffff;
  --panel: #fff7fb;
  --shadow: 0 8px 28px rgba(234, 78, 142, 0.16);
  --max: 2200px;
  --band-max: clamp(930px, 72vw, 1320px);
  --gutter: clamp(18px, 4vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 3px solid var(--line);
  box-shadow: 0 4px 14px rgba(234, 78, 142, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100vw - var(--gutter) * 2));
  min-height: 86px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 96px;
  flex: 0 0 auto;
}

.brand img {
  width: 84px;
  height: 70px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 4vw, 64px);
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink);
  background: #fff;
  color: var(--pink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.section {
  width: min(var(--max), calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
  padding: 54px 0;
}

.section-tight {
  padding: 34px 0;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.pink-band {
  background: var(--pink-soft);
  color: #fff;
}

.band-inner {
  width: min(var(--band-max), calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
  padding: 52px 0;
}

h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.18;
}

.serif-title {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 66px);
  align-items: stretch;
}

.hero-image-grid img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

.home-intro h1,
.comfort-band h2 {
  max-width: 820px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.8vw, 48px);
  letter-spacing: 0;
}

.home-intro p,
.comfort-band p {
  max-width: 900px;
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-width: 138px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 10px 24px;
  border: 0;
  background: #ffc1dc;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  color: var(--pink);
  cursor: pointer;
  font-weight: 700;
  text-align: center;
}

.button:hover {
  background: #fff;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.8vw, 90px) clamp(36px, 5.5vw, 96px);
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
  min-height: 320px;
  overflow: hidden;
  border-top: 2px solid var(--pink);
  background: #fff;
}

.collection-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
}

.tone-deep .collection-copy {
  background: var(--pink-deep);
}

.tone-soft .collection-copy {
  background: var(--pink);
}

.tone-light .collection-copy {
  background: var(--pink-light);
}

.collection-copy h3 {
  overflow-wrap: normal;
  word-break: keep-all;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.collection-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 700;
}

.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.comfort-band {
  margin-top: 18px;
}

.about-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.intro-box {
  margin-top: 28px;
  padding: 26px 30px;
  border: 2px dashed #f69bc2;
  background: #fff;
}

.intro-box h1,
.intro-box h2 {
  margin-bottom: 14px;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
}

.intro-box p {
  margin: 12px 0 0;
  font-size: 17px;
}

.client-grid {
  display: grid;
  gap: 28px;
}

.certificate-layout {
  display: grid;
  gap: 72px;
}

.certificate-logo-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.15fr 1.45fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.certificate-logo,
.certificate-doc {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #fff;
}

.certificate-logo img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.certificate-doc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(56px, 8vw, 112px);
  align-items: stretch;
}

.certificate-doc {
  min-height: 330px;
  border: 2px dashed #f69bc2;
  padding: 16px;
}

.certificate-doc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.manufacturing-design {
  max-width: min(var(--max), 1540px);
}

.manufacturing-copy-wide {
  max-width: 1090px;
}

.manufacturing-copy-wide h1 {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.8vw, 72px);
  letter-spacing: 0;
  margin-bottom: 28px;
}

.manufacturing-copy-wide p {
  margin: 0 0 26px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.52;
}

.manufacturing-split,
.manufacturing-pair {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: center;
}

.manufacturing-cutting {
  margin-top: 64px;
}

.manufacturing-split img,
.manufacturing-pair img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
}

.manufacturing-paired {
  display: grid;
  gap: 88px;
}

.sewing-pair {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
}

.adhesive-pair {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  align-items: center;
}

.seamless-pair {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
  min-height: 570px;
}

.workshop-copy h2 {
  color: var(--pink);
  font-size: 22px;
  font-weight: 800;
}

.workshop-copy p {
  margin: 32px 0 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.48;
}

.products-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.products-intro h1 {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.8vw, 54px);
}

.products-intro p {
  margin: 0;
  font-size: 17px;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 58px;
}

.category-card {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  color: var(--pink);
  font-weight: 700;
}

.category-card img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}

.category-card h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 17px;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 14px;
}

.explore-link::after {
  content: ">";
}

.product-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  scroll-margin-top: 110px;
}

.product-copy {
  padding-top: 8px;
}

.product-copy h2 {
  font-size: 22px;
}

.product-copy ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

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

.product-tile {
  display: flex;
  min-width: 0;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  border: 2px solid #f68bbb;
  background: #fff;
  padding: 10px;
  cursor: zoom-in;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.product-tile:hover,
.product-tile:focus-visible {
  border-color: var(--pink);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.image-lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 19, 22, 0.76);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: min(880px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
  padding: 18px;
}

.lightbox-panel img {
  max-width: 100%;
  max-height: calc(100vh - 92px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.lightbox-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.client-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.client-logo {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.client-logo img {
  max-height: 82px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
}

.contact-details h1,
.contact-form-card h2 {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 46px);
}

.contact-list {
  margin-top: 18px;
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
}

.contact-list p {
  margin: 8px 0;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-form label {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--pink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  border: 2px solid #f7a1c8;
  background: #fff;
  color: var(--ink);
}

.contact-form input {
  min-height: 36px;
  padding: 6px 10px;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  padding: 8px 10px;
}

.form-submit {
  justify-self: end;
  min-width: 138px;
  min-height: 44px;
  border: 0;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.map-frame {
  position: relative;
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #d9e5ef;
  background: #eef4f8;
  aspect-ratio: 3.2 / 1;
}

.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-load {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 142px;
  min-height: 44px;
  border: 0;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.status-line {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--pink);
  font-weight: 700;
}

.site-footer {
  border-top: 3px solid var(--line);
  box-shadow: 0 -4px 14px rgba(234, 78, 142, 0.1);
}

.footer-inner {
  display: grid;
  width: min(var(--max), calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
  grid-template-columns: 1.3fr 1.2fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}

.footer-brand {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: var(--pink);
  font-size: 18px;
  font-weight: 800;
}

.footer-brand img {
  width: 120px;
  height: 92px;
  object-fit: contain;
}

.footer-contact {
  font-size: 15px;
  font-weight: 700;
}

.footer-contact p {
  margin: 3px 0;
}

.footer-qrs {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-qrs img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.admin-body {
  min-height: 100vh;
  background: #fff7fb;
}

.admin-shell {
  display: grid;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  gap: 20px;
  padding: 36px 0;
}

.admin-panel {
  border: 1px solid #f3afd0;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.admin-kicker,
.admin-panel h1,
.admin-panel h2 {
  color: var(--pink);
}

.admin-panel h1 {
  margin: 4px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.admin-note {
  color: var(--muted);
}

.admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  margin: 20px 0;
}

.admin-controls label {
  display: grid;
  gap: 6px;
  min-width: min(260px, 100%);
  color: var(--pink);
  font-weight: 700;
}

.admin-controls button {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--pink);
  background: #fff;
  color: var(--pink);
  cursor: pointer;
  font-weight: 700;
}

.admin-controls button.primary {
  background: var(--pink);
  color: #fff;
}

#jsonEditor {
  min-height: 520px;
  padding: 14px;
  font-family: Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  resize: vertical;
}

.upload-result {
  min-height: 44px;
  overflow-x: auto;
  background: #fff7fb;
  padding: 12px;
  color: var(--pink-deep);
}

.admin-topbar {
  display: flex;
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px 0 20px;
}

.admin-topbar h1 {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
}

.admin-topbar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-topbar-actions a,
.admin-topbar-actions button,
.admin-primary,
.admin-inline-actions button,
.admin-row-actions button,
.admin-mini-actions button,
.admin-controls button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink);
  background: #fff;
  color: var(--pink);
  cursor: pointer;
  font-weight: 700;
  padding: 8px 15px;
}

.admin-primary,
.admin-topbar-actions a {
  background: var(--pink);
  color: #fff;
}

.admin-layout {
  display: grid;
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 42px;
}

.admin-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  align-self: start;
  gap: 8px;
  border: 1px solid #f3afd0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px;
}

.admin-sidebar button {
  min-height: 42px;
  border: 0;
  background: #fff;
  color: var(--pink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  padding: 8px 12px;
}

.admin-sidebar button.is-active,
.admin-sidebar button:hover {
  background: var(--pink);
  color: #fff;
}

.admin-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-status {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 44px;
  margin: 0;
  border: 1px solid #f3afd0;
  background: #fff;
  color: var(--pink);
  box-shadow: var(--shadow);
  font-weight: 800;
  padding: 10px 14px;
}

.admin-status[data-type="error"] {
  border-color: #d0264f;
  color: #d0264f;
}

.admin-view {
  display: none;
  min-width: 0;
}

.admin-view.is-active {
  display: grid;
  gap: 16px;
}

.admin-section-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid #f3afd0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
}

.admin-section-head.small {
  border: 0;
  box-shadow: none;
  padding: 0 0 14px;
}

.admin-section-head h2,
.admin-section-head h3,
.admin-panel.clean h2,
.admin-panel.clean h3 {
  color: var(--pink);
}

.admin-section-head p,
.admin-panel.clean p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-panel.clean {
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  gap: 14px;
}

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

.admin-grid .span-2 {
  grid-column: 1 / -1;
}

.admin-grid label,
.admin-row-fields label,
.admin-inline-actions label,
.admin-controls label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--pink);
  font-weight: 800;
}

.admin-grid input,
.admin-grid textarea,
.admin-row-fields input,
.admin-row-fields textarea,
.admin-image-item input,
.admin-inline-actions select {
  width: 100%;
  min-width: 0;
  border: 2px solid #f7a1c8;
  background: #fff;
  color: var(--ink);
  padding: 8px 10px;
}

.admin-grid textarea,
.admin-row-fields textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-controls.compact {
  margin: 0 0 14px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-stat {
  border: 1px solid #f3afd0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.admin-stat span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--pink);
  font-size: 30px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-list-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border: 1px solid #f3afd0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.admin-row-fields {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.admin-row-actions,
.admin-mini-actions,
.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-row-actions {
  justify-content: flex-end;
}

.admin-thumb {
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 2px solid #f7a1c8;
  background: #fff;
  overflow: hidden;
}

.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-thumb span {
  color: var(--muted);
  font-size: 13px;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-image-item {
  display: grid;
  gap: 10px;
  border: 1px solid #f3afd0;
  background: #fff;
  padding: 12px;
}

.admin-image-item .admin-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.admin-mini-actions button {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 13px;
}

.admin-message {
  display: grid;
  gap: 12px;
  border: 1px solid #f3afd0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.admin-message > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-message strong {
  color: var(--pink);
  font-size: 18px;
}

.admin-message a,
.admin-message time {
  color: var(--muted);
  font-weight: 700;
}

.admin-message p {
  margin: 0;
  white-space: pre-wrap;
}

@media (max-width: 1099px) {
  :root {
    --max: 1180px;
    --band-max: 930px;
    --gutter: 22px;
  }

  .header-inner {
    min-height: 78px;
  }

  .site-nav {
    gap: 22px;
    font-size: 14px;
  }

  .collection-grid {
    gap: 34px;
  }

  .collection-card {
    grid-template-columns: minmax(160px, 0.92fr) minmax(0, 1.08fr);
    min-height: 280px;
  }

  .collection-card img {
    min-height: 280px;
  }

  .category-cards {
    gap: 28px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-qrs {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

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

  .admin-sidebar {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-sidebar button {
    text-align: center;
  }

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

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    width: 74px;
  }

  .brand img {
    width: 64px;
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 0 solid var(--line);
    background: #fff;
    box-shadow: 0 14px 22px rgba(234, 78, 142, 0.14);
    transition: max-height 180ms ease, border-width 180ms ease;
  }

  .site-header.is-open .site-nav {
    max-height: 380px;
    border-bottom-width: 2px;
  }

  .site-nav a {
    width: min(var(--max), calc(100vw - var(--gutter) * 2));
    min-height: 48px;
    margin: 0 auto;
  }

  .section {
    padding: 38px 0;
  }

  .hero-image-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero-image-grid img {
    aspect-ratio: 1.05 / 1;
  }

  .band-inner {
    padding: 38px 0;
  }

  .home-intro h1,
  .comfort-band h2 {
    font-size: clamp(24px, 7vw, 34px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .home-intro p,
  .comfort-band p {
    font-size: 16px;
    font-weight: 600;
    overflow-wrap: anywhere;
  }

  .products-intro h1,
  .contact-details h1,
  .contact-form-card h2,
  .section-head h1,
  .section-head h2 {
    font-size: clamp(28px, 8vw, 36px);
    overflow-wrap: anywhere;
  }

  .products-intro p,
  .contact-list p,
  .footer-brand,
  .footer-contact p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

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

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    grid-template-columns: 1fr;
    min-height: 250px;
  }

  .collection-copy {
    min-height: 240px;
    padding: 18px;
  }

  .collection-copy h3 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .collection-card img {
    height: auto;
    min-height: 250px;
    aspect-ratio: 1 / 1;
  }

  .products-intro,
  .product-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .certificate-layout {
    gap: 38px;
  }

  .certificate-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 42px;
  }

  .certificate-doc-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .certificate-doc {
    min-height: 280px;
  }

  .manufacturing-copy-wide h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .manufacturing-copy-wide p,
  .workshop-copy p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
  }

  .manufacturing-split,
  .manufacturing-pair,
  .sewing-pair,
  .adhesive-pair,
  .seamless-pair {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .manufacturing-cutting,
  .manufacturing-paired {
    margin-top: 34px;
  }

  .manufacturing-paired {
    gap: 52px;
  }

  .sewing-pair img,
  .seamless-pair img {
    order: 1;
  }

  .sewing-pair .workshop-copy,
  .seamless-pair .workshop-copy {
    order: 2;
  }

  .seamless-pair {
    min-height: 0;
  }

  .workshop-copy p {
    margin-top: 16px;
  }

  .category-cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .category-card h2,
  .explore-link {
    overflow-wrap: anywhere;
  }

  .category-card img {
    aspect-ratio: 1 / 1;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .client-logo {
    min-height: 92px;
    padding: 12px;
  }

  .contact-form label {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-submit {
    width: 100%;
    justify-self: stretch;
  }

  .map-frame {
    aspect-ratio: 1.55 / 1;
  }

  .map-load {
    right: 12px;
    bottom: 12px;
    min-width: 126px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-brand {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    font-size: 16px;
  }

  .footer-brand img {
    width: 78px;
    height: 66px;
  }

  .footer-qrs {
    justify-content: flex-start;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-section-head,
  .admin-list-row {
    grid-template-columns: 1fr;
  }

  .admin-section-head {
    flex-direction: column;
  }

  .admin-grid.two,
  .admin-cards,
  .admin-image-grid {
    grid-template-columns: 1fr;
  }

  .admin-row-actions {
    justify-content: flex-start;
  }

  .admin-thumb {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .admin-primary {
    width: 100%;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 14px;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .home-intro h1,
  .comfort-band h2 {
    font-size: 26px;
  }

  .home-intro p,
  .comfort-band p {
    font-size: 14px;
  }

  .collection-card img {
    min-height: 230px;
  }

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

  .certificate-logo-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .certificate-logo img {
    max-height: 92px;
  }

  .certificate-doc {
    min-height: 240px;
    padding: 12px;
  }

  .manufacturing-split img,
  .manufacturing-pair img {
    aspect-ratio: 1.35 / 1;
  }

  .manufacturing-copy-wide h1 {
    font-size: 32px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-tile {
    padding: 8px;
  }

  .image-lightbox {
    padding: 14px;
  }

  .lightbox-panel {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    padding: 12px;
  }

  .lightbox-panel img {
    max-height: calc(100vh - 52px);
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .footer-qrs img {
    width: 84px;
    height: 84px;
  }

  .admin-shell {
    width: min(100vw - 20px, 1120px);
  }

  .admin-panel {
    padding: 18px;
  }

  .admin-layout,
  .admin-topbar {
    width: min(100vw - 20px, 1320px);
  }

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

  .admin-topbar-actions,
  .admin-topbar-actions a,
  .admin-topbar-actions button,
  .admin-inline-actions button,
  .admin-row-actions button,
  .admin-mini-actions button {
    width: 100%;
  }
}
