﻿:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --danger: #dc2626;
  --line: #dbe2ee;
  --shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  --gold: #facc15;
  --gold-2: #eab308;
  --navy: #0f172a;
  --navy-2: #1e3a5f;
}

* {
  box-sizing: border-box;
}

body.customizer-shell {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top right, #e8efff, transparent 45%), var(--bg);
}

.customizer-shell .site-header .container,
.customizer-shell .product-page.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.site-header::after {
  content: 'Design Lab';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(250, 204, 21, 0.04);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.header-inner h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: #facc15;
  text-shadow: 0 2px 12px rgba(250,204,21,0.25);
}

.header-inner p {
  margin: 0.6rem 0 0;
  color: rgba(255,255,255,0.72);
}

.product-page {
  padding: 1rem 0 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #facc15, #eab308);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.16);
  border-color: #eab308;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  background: #f8fafc;
}

.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card-content h2 {
  font-size: 0.88rem;
  margin: 0;
}

.btn {
  border: 0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.62rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 12px 22px rgba(234, 179, 8, 0.42);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid #c9d6ee;
  color: #1e3a5f;
  background: linear-gradient(135deg, #fff, #f3f7ff);
}

.btn-ghost:hover {
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border-color: #eab308;
  color: #92600a;
}

.btn-ghost.active {
  border-color: #eab308;
  color: #0f172a;
  background: linear-gradient(135deg, #facc15, #eab308);
}

.customizer-body {
  min-height: 100vh;
}

.customizer-shell {
  padding-top: 96px;
}

.customizer-header {
  position: relative;
  top: auto;
  z-index: 50;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(250,204,21,0.2);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.toolbar-top {
  width: min(1320px, calc(100% - 1rem));
  margin: 0 auto;
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.toolbar-top > .btn,
.toolbar-top > .btn-ghost {
  flex: 0 0 auto;
}

.toolbar-top h1 {
  font-size: 0.92rem;
  margin: 0;
  min-width: 150px;
  flex: 1 1 200px;
  color: #facc15;
  font-weight: 700;
}

.toolbar-note {
  margin: 0;
  flex: 1 1 100%;
  color: rgba(255,255,255,0.55);
  font-size: 0.76rem;
}

.side-switch {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.35rem;
  padding: 0.22rem;
  border: 1px solid #cad5ea;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.05);
}

.side-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  flex: 1 1 0;
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.side-btn.active {
  color: #0f172a;
  background: linear-gradient(135deg, #facc15, #eab308);
  box-shadow: 0 5px 12px rgba(234, 179, 8, 0.28);
}

.control-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.control-select,
#textColor {
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  background: #fff;
}

.control-input {
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  background: #fff;
  font-family: inherit;
}

.customizer-layout {
  width: min(1320px, calc(100% - 1rem));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 330px;
  gap: 1rem;
}

.toolbar-left {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  padding: 0.6rem;
  height: fit-content;
}

.tools-title {
  margin: 0;
  font-size: 0.88rem;
}

.tools-subtitle {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.tool-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.tool-btn {
  width: 100%;
  justify-content: flex-start;
}

.custom-color-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 0.45rem;
  align-items: center;
}

#customColorValue {
  width: 48px;
  height: 38px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0;
  background: #fff;
}

.danger-btn {
  border-color: #fecdd3;
  color: #b91c1c;
  background: linear-gradient(180deg, #fff5f6, #fff0f2);
}

.tools-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.icon-btn {
  border: 1px solid #c9d6ee;
  border-radius: 10px;
  width: 100%;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff, #edf3ff);
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn img {
  width: 20px;
  height: 20px;
}

.icon-btn:hover {
  border-color: #93c5fd;
  transform: translateY(-1px);
}

.icon-btn.danger {
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  border-color: #fecdd3;
}

.workspace {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.7rem;
  box-shadow: var(--shadow);
}

.mockup-stage {
  width: min(100%, 700px);
  margin: 0 auto;
  position: relative;
  aspect-ratio: 700 / 760;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #cdd8ea;
  background: #eef4ff;
}

.active-side-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7e1f2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.mockup-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-bg {
  z-index: 1;
}

.shirt-base {
  z-index: 2;
}

.canvas-wrapper {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.canvas-wrapper .canvas-container {
  position: absolute !important;
  inset: 0;
}

.canvas-wrapper .canvas-container.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.design-surface {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.design-surface.hidden {
  opacity: 0;
  pointer-events: none;
}

.shirt-overlay {
  z-index: 4;
  pointer-events: none;
}

.workspace-meta p,
.workspace-note-p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Mobile-only toggle button — hidden on desktop */
.controls-toggle-btn { display: none; }

/* Controls body — on desktop behave as transparent wrapper */
.controls-body {
  display: contents;
}

/* Notes toggle — hidden on desktop, text is always visible */
.notes-toggle-btn { display: none; }

/* Mobile canvas action controls (hidden on desktop) */
.mobile-controls-fab,
.quick-actions-mobile {
  display: none;
}

.mobile-controls-backdrop {
  display: none;
}

.mobile-controls-header,
.mobile-controls-close-btn {
  display: none;
}

/* Desktop guard: keep original desktop behavior unchanged */
@media (min-width: 769px) {
  .controls-toggle-btn,
  .mobile-controls-fab,
  .quick-actions-mobile,
  .notes-toggle-btn {
    display: none !important;
  }

  .controls-body {
    display: contents !important;
  }

  .workspace-note-p {
    display: block !important;
  }
}

.mobile-controls-fab {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 7;
  width: 40px;
  height: 40px;
  border: 2px solid #facc15;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(250,204,21,0.15);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-controls-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.36), 0 0 0 2px rgba(250,204,21,0.4);
}

.quick-actions-mobile {
  position: absolute;
  top: 58px;
  left: 10px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-mobile-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250,204,21,0.4);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(30,58,95,0.85));
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: #facc15;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.quick-mobile-btn:hover {
  transform: scale(1.08);
}

.quick-mobile-btn.danger {
  color: #fca5a5;
  border-color: rgba(239,68,68,0.4);
  background: linear-gradient(135deg, rgba(127,0,0,0.75), rgba(185,28,28,0.75));
}

.quote-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0;
  height: fit-content;
  overflow: hidden;
  position: relative;
}

.quote-panel::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #facc15, #eab308, #f59e0b);
  width: 100%;
}

.quote-panel > *:not(:first-child) {
  padding-left: 1rem;
  padding-right: 1rem;
}

.quote-panel > .preview-summary {
  padding: 0.75rem 1rem 0;
}

.quote-panel > h2 {
  color: var(--navy);
  padding: 0.5rem 1rem 0;
}

.quote-panel > p {
  padding: 0 1rem;
}

.quote-panel .design-preview {
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc(100% - 2rem);
}

.quote-panel .preview-generate-btn {
  margin-left: 1rem;
  margin-right: 1rem;
}

.quote-panel .quote-form {
  padding: 0 1rem 1rem;
}

.preview-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.placement-card {
  border: 1px solid #d9e3f2;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.placement-card__header {
  padding: 0.35rem 0.55rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #334155;
}

.placement-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  background: #eef4ff;
}

.quote-panel h2 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

.quote-panel p {
  color: var(--muted);
  font-size: 0.78rem;
}

.design-preview {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dbe2ee;
  margin-top: 0.65rem;
}

.preview-generate-btn {
  display: block;
  margin: 0.15rem auto 0;
  min-width: 180px;
}

.quote-form {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.quote-form input,
.quote-form textarea {
  border: 1px solid #d4dbe7;
  border-radius: 10px;
  padding: 0.52rem 0.75rem;
  font-size: 0.8rem;
  font-family: inherit;
  background: #fffdf7;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #eab308;
  box-shadow: 0 0 0 3px rgba(234,179,8,0.15);
  background: #fff;
}

.quote-form textarea {
  min-height: 92px;
  resize: vertical;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.76rem;
  color: #334155;
}

@media (max-width: 1080px) {
  .customizer-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .quote-panel {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .customizer-shell {
    padding-top: 84px;
  }

  .customizer-header {
    position: relative;
    margin-bottom: 0;
  }

  .toolbar-top {
    width: 100%;
    padding: 0.55rem 0.75rem;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .toolbar-top h1 {
    font-size: 0.95rem;
    order: -1;
    flex: 1;
    min-width: 0;
    margin: 0;
  }

  .toolbar-note { display: none; }

  /* Single-column, full-bleed */
  .customizer-layout {
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ① Canvas — fills full width, no chrome */
  .workspace {
    order: 1;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .mockup-stage {
    width: 100%;
    max-height: none;
    border-radius: 0;
    border: none;
  }

  .canvas-wrapper,
  .canvas-wrapper .canvas-container,
  .canvas-wrapper canvas {
    touch-action: none;
  }

  .active-side-indicator {
    top: 8px;
    right: 8px;
    font-size: 0.73rem;
    padding: 0.28rem 0.55rem;
  }

  .workspace-meta {
    display: none;
  }

  .mobile-controls-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(15, 23, 42, 0.38);
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .customizer-body.mobile-controls-open .mobile-controls-backdrop {
    display: block;
  }

  .mobile-controls-fab,
  .quick-actions-mobile {
    display: flex;
  }

  .mobile-controls-fab {
    top: 4px;
    left: 10px;
    right: auto;
    width: 38px;
    height: 38px;
  }

  .quick-actions-mobile {
    top: 48px;
    left: 10px;
    right: auto;
    flex-direction: column;
    gap: 8px;
  }

  .active-side-indicator {
    top: 56px;
  }

  /* ② Controls — hidden by default, opened by corner gear */
  .toolbar-left {
    order: 2;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    display: none;
    gap: 0;
    background: var(--panel);
  }

  .toolbar-left.mobile-expanded {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    max-height: 72vh;
    overflow: auto;
    border-top: 1px solid var(--line);
    box-shadow: 0 -16px 36px rgba(15, 23, 42, 0.22);
  }

  /* Hide old full-width text toggle row */
  .controls-toggle-btn {
    display: none;
  }

  .toggle-chevron {
    display: inline-block;
    transition: transform 0.25s ease;
    font-style: normal;
  }

  .toolbar-left.mobile-expanded .toggle-chevron {
    transform: rotate(180deg);
  }

  /* Controls body — hidden when collapsed */
  .controls-body {
    display: none;
  }

  .toolbar-left.mobile-expanded .controls-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
    align-items: start;
  }

  .mobile-controls-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / -1;
    margin-bottom: 0.2rem;
  }

  .mobile-controls-header strong {
    font-size: 0.95rem;
  }

  .mobile-controls-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    font: inherit;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
  }

  /* Hide desktop title/subtitle — toggle button replaces them */
  .controls-body .tools-title,
  .controls-body .tools-subtitle {
    display: none;
  }

  /*
   * Children inside controls-body:
   * 1) h2 (hidden)  2) p (hidden)  3) Choose Side  4) Shirt Colour
   * 5) Add Design   6) Text Font   7) Text Colour  8) Print Area
   * first 5 (3+4+5: Choose Side, Shirt Colour, Add Design) = full width
   * 6+7 (Font, Text Colour) = 2-col pair
   * 8 Print Area = full width
   */
  .controls-body > *:nth-child(-n+5) {
    grid-column: 1 / -1;
  }

  .controls-body > *:nth-child(9) {
    grid-column: 1 / -1;
  }

  .tool-group {
    gap: 0.3rem;
    padding: 0.5rem;
  }

  .control-select,
  #textColor {
    min-height: 42px;
    font-size: 0.96rem;
  }

  .tool-btn, .side-btn, .icon-btn {
    min-height: 44px;
    font-size: 0.96rem;
  }

  /* ③ Quote panel */
  .quote-panel {
    order: 3;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0.85rem;
    border-top: 1px solid var(--line);
  }

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

/* Very small phones — stack preview cards */
@media (max-width: 420px) {
  .preview-summary {
    grid-template-columns: 1fr;
  }
}

/* Landscape phones — canvas left, controls sidebar */
@media (orientation: landscape) and (max-height: 520px) {
  .customizer-layout {
    width: 100%;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 0;
  }

  .workspace {
    order: 1;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    grid-row: 1 / 3;
    border-right: 1px solid var(--line);
  }

  .mockup-stage {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
  }

  .mobile-controls-fab,
  .quick-actions-mobile {
    display: none;
  }

  .mobile-controls-backdrop {
    display: none !important;
  }

  /* In landscape sidebar mode: always show controls, hide toggle */
  .controls-toggle-btn { display: none; }

  .controls-body {
    display: flex !important;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.6rem;
    overflow-y: auto;
    max-height: calc(100dvh - 52px);
  }

  .toolbar-left {
    order: 2;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    grid-column: 2;
    overflow: hidden;
  }

  .toolbar-left.mobile-expanded {
    position: static;
    max-height: none;
    display: flex;
    box-shadow: none;
  }

  .workspace-meta { display: none; }

  .quote-panel {
    order: 3;
    overflow-y: auto;
    max-height: calc(100dvh - 52px);
    border-radius: 0;
    border: none;
    box-shadow: none;
    border-top: 1px solid var(--line);
    grid-column: 2;
  }
}

@media (max-width: 420px) {
  .customizer-shell .site-header .container,
  .customizer-shell .product-page.container {
    width: calc(100% - 1rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-card img {
    height: 200px;
  }

  .toolbar-top {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}
