body.mockup-body {
  overflow-x: hidden;
  overflow-y: auto;
}

.brand-tm {
  font-size: 0.34em;
  line-height: 1;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0;
}

.cd-catalog-shell {
  width: 100%;
  margin: 0 0 16px;
  padding: clamp(18px, 2.6vw, 34px);
  border-radius: 0;
  border: 1px solid rgba(0, 143, 140, 0.18);
  border-left: none;
  border-right: none;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 143, 140, 0.1), transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(255, 107, 94, 0.08), transparent 54%),
    linear-gradient(165deg, #f4fbf9 0%, #eaf8f5 56%, #fff7f5 100%);
  box-shadow: 0 34px 64px rgba(0, 98, 93, 0.12);
}

.cd-hero {
  max-width: 860px;
  margin-bottom: 24px;
}

.cd-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(0, 109, 105, 0.74);
}

.cd-hero h1 {
  margin: 10px 0 10px;
  font-family: 'Sora', 'Noto Sans SC', Arial, sans-serif;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: #16201f;
}

.cd-hero p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
  color: rgba(63, 83, 80, 0.78);
}

.cd-hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cd-btn:hover {
  transform: translateY(-2px);
}

.cd-btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, #008f8c 0%, #34d5ca 100%);
  border: 1px solid rgba(126, 230, 222, 0.42);
  box-shadow: 0 12px 26px rgba(0, 143, 140, 0.22);
}

.cd-btn-ghost {
  color: #006d69;
  border: 1px solid rgba(0, 143, 140, 0.24);
  background: rgba(0, 143, 140, 0.06);
}

.cd-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.cd-filter-chip {
  border: 1px solid rgba(0, 143, 140, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(22, 32, 31, 0.86);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.24s ease;
}

.cd-filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(120deg, #008f8c 0%, #34d5ca 100%);
  border-color: rgba(0, 109, 105, 0.44);
  box-shadow: 0 10px 24px rgba(0, 143, 140, 0.22);
}

.cd-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cd-card {
  border: 1px solid rgba(0, 143, 140, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 250, 247, 0.98) 100%);
  box-shadow: 0 14px 30px rgba(0, 98, 93, 0.1);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.cd-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 143, 140, 0.36);
  box-shadow: 0 20px 34px rgba(0, 98, 93, 0.12);
}

.cd-card-media {
  position: relative;
  aspect-ratio: 1.06 / 1;
  padding: 14px;
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 247, 242, 0.95), rgba(255, 255, 255, 0.9) 54%),
    linear-gradient(160deg, #eefaf7 0%, #fff7f5 100%);
}

.cd-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(8, 10, 16, 0.22));
}

.cd-card-meta {
  padding: 12px 13px 14px;
  border-top: 1px solid rgba(0, 143, 140, 0.14);
}

.cd-card-meta h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #16201f;
}

.cd-card-meta p {
  margin: 5px 0 0;
  font-size: 12px;
  color: rgba(63, 83, 80, 0.78);
}

.cd-card-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cd-card-tags span {
  border: 1px solid rgba(0, 143, 140, 0.16);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(63, 83, 80, 0.78);
  background: rgba(0, 143, 140, 0.06);
}

.cd-card[hidden] {
  display: none !important;
}

main#designEditor.guides-only-layout {
  width: 100%;
  margin: 0 0 16px;
  height: min(940px, calc(100vh - 94px));
  scroll-margin-top: 74px;
  border-radius: 0;
  border: 1px solid rgba(0, 143, 140, 0.18);
  border-left: none;
  border-right: none;
  overflow: hidden;
  box-shadow: 0 24px 46px rgba(0, 98, 93, 0.14);
}

.cd-full-section {
  width: 100%;
  margin: 0 0 14px;
  padding: clamp(18px, 2.3vw, 30px);
  border-radius: 0;
  border: 1px solid rgba(0, 143, 140, 0.16);
  border-left: none;
  border-right: none;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 250, 247, 0.96) 100%);
  box-shadow: 0 20px 40px rgba(0, 98, 93, 0.12);
}

.cd-full-head p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(0, 109, 105, 0.74);
}

.cd-full-head h2 {
  margin: 10px 0 0;
  font-family: 'Sora', 'Noto Sans SC', Arial, sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #16201f;
}

.cd-process-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cd-process-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 143, 140, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 250, 247, 0.82) 100%);
  padding: 14px;
}

.cd-process-card span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #008f8c 0%, #34d5ca 100%);
}

.cd-process-card h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  color: #16201f;
}

.cd-process-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(63, 83, 80, 0.78);
}

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

.cd-spec-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 143, 140, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(239, 250, 247, 0.86) 100%);
  padding: 16px;
}

.cd-spec-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: rgba(0, 109, 105, 0.74);
}

.cd-spec-card h3 {
  margin: 9px 0 10px;
  font-size: 25px;
  line-height: 1.05;
  color: #16201f;
  font-family: 'Sora', 'Noto Sans SC', Arial, sans-serif;
}

.cd-spec-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.cd-spec-card li {
  color: rgba(63, 83, 80, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.cd-faq-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cd-faq-list details {
  border: 1px solid rgba(0, 143, 140, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 14px;
}

.cd-faq-list summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #16201f;
}

.cd-faq-list p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(63, 83, 80, 0.78);
}

.cd-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cd-cta-wrap h2 {
  margin: 10px 0 8px;
  font-family: 'Sora', 'Noto Sans SC', Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  color: #16201f;
}

.cd-cta-wrap p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(63, 83, 80, 0.78);
}

.cd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cd-footer {
  width: 100%;
  margin: 0;
  padding: 18px 20px 16px;
  border-radius: 0;
  border: 1px solid rgba(0, 143, 140, 0.14);
  border-left: none;
  border-right: none;
  background: linear-gradient(175deg, rgba(15, 59, 56, 0.96) 0%, rgba(9, 43, 41, 0.96) 100%);
}

.cd-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
}

.cd-footer h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #ffffff;
}

.cd-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(235, 252, 248, 0.78);
}

.cd-footer a {
  color: #7ee6de;
  text-decoration: none;
}

.cd-footer-copy {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 143, 140, 0.14);
  color: rgba(235, 252, 248, 0.66) !important;
  font-size: 12px !important;
}

.right-side-dock {
  top: 46px;
  width: min(520px, calc(100% - 24px));
}

.preview-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 12px;
  background: rgba(15, 36, 34, 0.86);
  color: var(--ui-text, #ecfffb);
  width: 100%;
}

.preview-card h2 {
  margin: 0 0 10px 0;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.preview-frame {
  background: var(--preview-bg, #ffffff);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.preview-frame img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
}

.preview-frame canvas {
  width: 100%;
  height: auto;
  max-height: 340px;
  display: block;
}

.color-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  background: #ffffff;
  color: #1e2a24;
  box-shadow: 0 10px 20px rgba(6, 8, 12, 0.12);
}

.color-card h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
}

.color-swatch-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch.is-add {
  border: 2px solid #6a44ff;
  color: #6a44ff;
  background: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.color-swatch.is-active {
  border-color: #6a44ff;
  box-shadow: 0 0 0 3px rgba(106, 68, 255, 0.2);
  transform: translateY(-1px);
}

.color-swatch[data-base-color="#ffffff"] {
  background: #ffffff;
}
.color-swatch[data-preview-bg="#ffffff"] {
  background: #ffffff;
}
.color-swatch[data-base-color="#d9d9d9"] {
  background: #d9d9d9;
}
.color-swatch[data-preview-bg="#f2f2f2"] {
  background: #f2f2f2;
}
.color-swatch[data-base-color="#222222"] {
  background: #222222;
}
.color-swatch[data-preview-bg="#222222"] {
  background: #222222;
}
.color-swatch[data-base-color="#c03434"] {
  background: #c03434;
}
.color-swatch[data-preview-bg="#e9f0f4"] {
  background: #e9f0f4;
}
.color-swatch[data-base-color="#c9b8ff"] {
  background: #c9b8ff;
}
.color-swatch[data-preview-bg="#f7f1e6"] {
  background: #f7f1e6;
}
.color-swatch[data-base-color="#f6c8d6"] {
  background: #f6c8d6;
}
.color-swatch[data-preview-bg="#ffe6e6"] {
  background: #ffe6e6;
}

.left-side-dock {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 4;
  width: min(286px, calc(100% - 24px));
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guides-only-workspace .tools-control-paddle {
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: 30px;
  transform: translateX(-50%);
  width: max-content;
  max-height: none;
  overflow: visible;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(14, 20, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(6, 8, 12, 0.35);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.guides-only-workspace .tools-control-head {
  display: none;
}

.guides-only-workspace .tools-control-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(13, 22, 28, 0.96);
}

.guides-only-workspace .tools-control-btn svg {
  shape-rendering: geometricPrecision;
}

.guides-only-workspace .tools-control-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 4px;
}

.simple-color-picker {
  position: fixed;
  width: 260px;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  color: #1e2a24;
  box-shadow: 0 18px 34px rgba(6, 8, 12, 0.18);
  z-index: 1300;
}

.simple-color-picker[hidden] {
  display: none;
}

.simple-color-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.simple-color-head p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.simple-color-close {
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: #f1f2f5;
  color: #111111;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.simple-color-body {
  display: grid;
  gap: 10px;
}

.simple-color-sv {
  position: relative;
  height: 120px;
  border-radius: 12px;
  background: #ff0000;
  overflow: hidden;
  cursor: crosshair;
}

.simple-color-sv::before,
.simple-color-sv::after {
  content: "";
  position: absolute;
  inset: 0;
}

.simple-color-sv::before {
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
}

.simple-color-sv::after {
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.simple-color-hue {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #ff0000 0%,
    #ffff00 17%,
    #00ff00 33%,
    #00ffff 50%,
    #0000ff 67%,
    #ff00ff 83%,
    #ff0000 100%
  );
  cursor: pointer;
}

.simple-color-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
  transform: translate(-7px, -7px);
  pointer-events: none;
}

.simple-color-hue-handle {
  width: 16px;
  height: 16px;
  transform: translate(-8px, -5px);
}

.simple-color-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.simple-color-preview {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  flex-shrink: 0;
}

.simple-color-hex {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d6dbe2;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1e2a24;
  background: #ffffff;
}

@media (max-width: 700px) {
  .cd-catalog-shell {
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    border-radius: 0;
    padding: 14px 10px 12px;
  }

  .cd-hero {
    margin-bottom: 16px;
  }

  .cd-kicker {
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  .cd-hero h1 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 36px;
  }

  .cd-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cd-hero-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .cd-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  .cd-filter-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .cd-filter-chip {
    font-size: 10px;
    padding: 7px 11px;
    letter-spacing: 0.07em;
  }

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

  .cd-full-section {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 0;
    padding: 14px 10px;
  }

  .cd-full-head h2 {
    font-size: 34px;
  }

  .cd-process-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .cd-process-card {
    border-radius: 12px;
    padding: 12px;
  }

  .cd-process-card h3 {
    font-size: 14px;
    margin-top: 8px;
  }

  .cd-process-card p {
    font-size: 12px;
  }

  .cd-specs-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cd-spec-card {
    border-radius: 12px;
    padding: 12px;
  }

  .cd-spec-card h3 {
    font-size: 24px;
  }

  .cd-spec-card li {
    font-size: 12px;
  }

  .cd-faq-list {
    margin-top: 10px;
    gap: 8px;
  }

  .cd-faq-list details {
    border-radius: 12px;
    padding: 10px;
  }

  .cd-faq-list summary {
    font-size: 13px;
  }

  .cd-faq-list p {
    font-size: 12px;
    margin-top: 8px;
  }

  .cd-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cd-cta-wrap h2 {
    font-size: 34px;
  }

  .cd-cta-wrap p {
    font-size: 13px;
  }

  .cd-cta-actions {
    width: 100%;
  }

  .cd-footer {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0;
    padding: 12px 10px;
  }

  .cd-footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cd-footer h3 {
    font-size: 16px;
  }

  .cd-footer p {
    font-size: 12px;
  }

  .cd-card {
    border-radius: 12px;
  }

  .cd-card-meta {
    padding: 10px;
  }

  .cd-card-meta h3 {
    font-size: 13px;
  }

  .cd-card-meta p {
    font-size: 11px;
  }

  .cd-card-tags {
    margin-top: 8px;
    gap: 5px;
  }

  .cd-card-tags span {
    font-size: 9px;
    padding: 3px 6px;
  }

  main#designEditor.guides-only-layout {
    width: 100%;
    height: calc(100vh - 84px);
    margin-bottom: 12px;
    border-radius: 0;
  }

  .topbar {
    padding: 6px 8px;
  }

  .topbar-center {
    display: none;
  }

  .topbar-right {
    width: 100%;
    gap: 6px;
  }

  .editor-lang-select {
    min-width: 74px;
    height: 36px;
    font-size: 12px;
  }

  .topbar-right .top-back-link {
    display: none;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .guides-only-workspace {
    position: relative;
    overflow: hidden;
    padding-bottom: 78px;
  }

  .guides-only-workspace #mockup2dCanvas {
    width: 100%;
    height: calc(100vh - 142px) !important;
    min-height: 240px;
    margin-top: 0 !important;
  }

  .mobile-panel-controls {
    position: fixed;
    right: 8px;
    top: 56px;
    z-index: 31;
    display: flex;
    gap: 6px;
  }

  .mobile-panel-btn {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(14, 20, 24, 0.9);
    color: #f0f5f3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .mobile-panel-btn.is-active {
    background: rgba(18, 108, 68, 0.95);
    border-color: rgba(54, 200, 140, 0.8);
  }

  .left-side-dock,
  .right-side-dock {
    position: fixed !important;
    left: 8px !important;
    right: 8px !important;
    top: auto !important;
    width: auto !important;
    max-height: min(68vh, 500px);
    margin: 0 !important;
    padding: 0;
    overflow: auto;
    z-index: 29;
    transform: translateY(calc(100% + 22px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  body.show-mobile-props .left-side-dock {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.show-mobile-preview .right-side-dock {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .left-side-dock {
    bottom: 56px;
  }

  .right-side-dock {
    bottom: 56px;
    gap: 6px;
  }

  .properties-dock {
    width: 100%;
    border-radius: 12px;
  }

  .preview-card,
  .color-card {
    width: 100%;
    border-radius: 12px;
  }

  .guides-only-workspace .tools-control-paddle {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: 10px !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 10px;
    z-index: 30;
  }

  .guides-only-workspace .tools-control-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
  }

  .guides-only-workspace .tools-control-btn svg {
    width: 17px;
    height: 17px;
  }

  .guides-only-workspace .tools-control-btn .tool-letter-icon {
    font-size: 18px;
  }

  .guides-only-workspace .tools-control-divider {
    display: none;
  }

  #duplicateLayerBtn,
  .guides-only-workspace .tools-control-btn[data-guide-tool="guide"],
  #clearGuidesBtn {
    display: none;
  }

  .simple-color-picker {
    width: min(250px, calc(100vw - 16px));
  }
}

@media (max-width: 1180px) and (min-width: 701px) {
  .cd-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) and (min-width: 701px) {
  .cd-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cd-specs-grid {
    grid-template-columns: 1fr;
  }

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