/* base */
:root {
  --page: #f0dbc9;
  --paper: #fcece0;
  --cream: #fdf4ea;
  --tan: #f5dcc4;
  --line: #dda87e;
  --line2: #c08a5f;
  --ink: #3d383a;
  --ink2: #8d5846;
  --ink3: #ad8268;
  --bluetx: #4a6b7d;
  --bluesoft: #e4eef3;
  --blueline: #c2d7e0;
  --warnline: #ecc39c;
  --warntx: #8a5a24;
  --btn-hover: #fff9f2;
  --inputbg: #fffaf4;
}
@font-face {
  font-display: swap;
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/quicksand-v37-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/quicksand-v37-latin-700.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/comfortaa-v47-cyrillic_latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/comfortaa-v47-cyrillic_latin-700.woff2') format('woff2');
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  background: var(--page);
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--page);
  color: var(--ink2);
  text-shadow: 0px 0px 6px var(--ink2);
}
:focus-visible {
  outline: 2px dashed var(--ink2);
  outline-offset: 2px;
}
img {
  display: block;
}
b {
  font-weight: 700;
  color: var(--ink2);
}
i {
  font-style: italic;
  color: var(--ink2);
}
.wavy {
  text-decoration: underline wavy var(--ink2);
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
}
ul {
  padding: 0 0 0 16px;
  margin: 0;
  list-style-type: circle;
}
.faq p {
  margin-bottom: 6px !important;
}
.site {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 100%;
  align-content: safe center;
  color: var(--ink);
  font-family: Quicksand, Comfortaa, Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  background-color: var(--page);
  background-size: 22px 22px;
}
.outer {
  padding: 0;
}
.sheet {
  max-width: 63rem;
  margin: 0 auto;
  background: var(--page);
  border: 1px solid var(--line2);
  padding: 7px;
}

/* TABS */
#tab2,
#tab2 * {
  box-sizing: border-box;
}
#tab2 {
  padding: 32px 32px 0 32px;
  background: var(--paper);
  transition: max-width 0.44s cubic-bezier(0.4, 0, 0.2, 1);
}
#tab2 .body-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}
#tab2 .sidebar {
  width: 190px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  transition: width 0.44s ease;
}
#tab2 #tab2-rad-1:checked ~ .body-wrap {
  flex-direction: column;
}
#tab2 #tab2-rad-1:checked ~ .body-wrap .sidebar {
  width: 100% !important;
  border-right: none !important;
}
#tab2 #tab2-rad-1:checked ~ .body-wrap .sidebar .nav {
  flex-direction: row !important;
  flex-wrap: wrap !important;
}
#tab2 #tab2-rad-1:checked ~ .body-wrap .sidebar .tab-btn {
  flex: 1 1 12% !important;
  min-width: 90px !important;
  justify-content: center !important;
  text-align: center !important;
}
#tab2 #tab2-rad-1:checked ~ .body-wrap .panels {
  display: none !important;
}
.sheet:has(#tab2-rad-1:checked) {
  max-width: 50vw;
}
body:has(#tab2-rad-2:checked) .static-table :is(tr, td),
body:has(#tab2-rad-3:checked) .static-table :is(tr, td),
body:has(#tab2-rad-4:checked) .static-table :is(tr, td),
body:has(#tab2-rad-5:checked) .static-table :is(tr, td),
body:has(#tab2-rad-6:checked) .static-table :is(tr, td) {
  display: block !important;
  width: 100% !important;
}
.sheet:has(#tab2-rad-2:checked),
.sheet:has(#tab2-rad-3:checked),
.sheet:has(#tab2-rad-4:checked),
.sheet:has(#tab2-rad-5:checked),
.sheet:has(#tab2-rad-6:checked) {
  max-width: 84vw;
}
/* TAB navs */
#tab2 .nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 19px 0;
}
.nav a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--ink3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}
#tab2 .tab-btn {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: var(--cream);
  padding: 6px 13px;
  color: var(--ink2);
  text-decoration: none;
  transition: all 0.15s ease;
  text-transform: uppercase;
  flex-grow: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
#tab2 .tab-btn:hover {
  border-color: var(--line2);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-1px);
}
#tab2 .radio {
  display: none !important;
}
/* TAB Nav Active */
#tab2 #tab2-rad-1:checked ~ .body-wrap .nav label[for="tab2-rad-1"],
#tab2 #tab2-rad-2:checked ~ .body-wrap .nav label[for="tab2-rad-2"],
#tab2 #tab2-rad-3:checked ~ .body-wrap .nav label[for="tab2-rad-3"],
#tab2 #tab2-rad-4:checked ~ .body-wrap .nav label[for="tab2-rad-4"],
#tab2 #tab2-rad-5:checked ~ .body-wrap .nav label[for="tab2-rad-5"],
#tab2 #tab2-rad-6:checked ~ .body-wrap .nav label[for="tab2-rad-6"],
#tab2 #tab2-rad-7:checked ~ .body-wrap .nav label[for="tab2-rad-7"] {
  background: var(--tan) !important;
  color: var(--ink) !important;
  border-color: var(--line2) !important;
  transform: translateY(-1px);
}
/* HEADER table */
#tab2 .fixed-box {
  display: flex;
  flex-direction: column;
  place-items: center;
}
#tab2 .fixed-body {
  flex: 1;
  width: 100%;
}
#tab2 .static-table {
  width: 100%;
  font-size: 12.5px;
  border: 0px;
  text-align: center;
}
#tab2 .static-table th,
#tab2 .static-table td {
  vertical-align: middle;
}
#tab2 .static-table .th-lbl {
  width: 32%;
  place-items: center;
}
#tab2 .static-table .td-val {
  color: var(--ink);
  font-size: 12.5px;
  place-items: center;
}
th span.card-tag {
  border: none !important;
  font-size: 14px !important;
  display: block !important;
  text-align: right !important;
}
.inner-table th {
  padding: 0;
}
/* sidebar */
.intro-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.intro-text {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 15px 0;
  text-align: center;
}
.avatar-link {
  display: block;
  position: relative;
  transition: transform 0.18s ease;
}
.avatar-link:hover {
  transform: translateY(-2px);
}
.avatar {
  width: 100%;
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
  outline: 3px solid var(--page);
  border: 1px solid var(--line2);
  outline-offset: -4px;
  background: var(--page);
}
.horse-link {
  vertical-align: -3px;
  position: relative;
  display: inline-block;
}
.intro-text {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.small {
  font-size: 12px;
  color: var(--ink3);
}
/* clock */
.my-time {
  color: var(--line2);
  padding: 2px;
  text-align: center;
  display: inline-block;
  font-family: Quicksand, Comfortaa, Georgia, "Times New Roman", serif;
}
#time {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
}
/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  place-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.01em;
  padding: 3px 11px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink2);
  text-decoration: none;
}
.chip.is-open {
  background: var(--bluesoft);
  border-color: var(--blueline);
  color: var(--bluetx);
  font-weight: 600;
}
.chip.is-open:empty::before {
  content: "● commissions open";
}
.chip.is-closed {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink3);
  font-weight: 600;
}
.chip.is-closed:empty::before {
  content: "○ commissions closed";
}
/* tooltips */
.tooltippy-box {
  position: relative;
}
span.tooltippy {
  visibility: hidden;
  position: absolute;
  background: var(--line2);
  color: var(--cream);
  width: 100%;
  font-size: 16px;
  padding: 15px 6px;
  cursor: default;
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0;
  display: block;
  bottom: 0;
}
a:hover span.tooltippy {
  visibility: visible;
  opacity: 1;
}
/* TAB Content */
#tab2 .panels {
  flex: 1;
  background: var(--paper);
  min-width: 0;
}
#tab2 .tab-content {
  display: none;
  width: 100%;
  height: auto;
  padding: 16px 18px;
  color: var(--ink);
  line-height: 1.55;
  opacity: 0;
  animation: tab2FadeIn 0.22s ease-out;
  overflow: hidden;
}
/* TAB Content Active */
#tab2 #tab2-rad-1:checked ~ .body-wrap .panels #tab2-panel-1,
#tab2 #tab2-rad-2:checked ~ .body-wrap .panels #tab2-panel-2,
#tab2 #tab2-rad-3:checked ~ .body-wrap .panels #tab2-panel-3,
#tab2 #tab2-rad-4:checked ~ .body-wrap .panels #tab2-panel-4,
#tab2 #tab2-rad-5:checked ~ .body-wrap .panels #tab2-panel-5,
#tab2 #tab2-rad-6:checked ~ .body-wrap .panels #tab2-panel-6,
#tab2 #tab2-rad-7:checked ~ .body-wrap .panels #tab2-panel-7 {
  display: block;
  opacity: 1;
}
@keyframes tab2FadeIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* TAB Content Styles */
#tab2 .tab-content p {
  margin-bottom: 10px;
}
#tab2 .tab-content p:last-child {
  margin-bottom: 0;
}
#tab2 .tab-content a,
#tab2 .mini-card label,
#tab2-panel-2 .card label,
#tab2-panel-5 .card label {
  color: var(--ink3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}
#tab2 .tab-content a:hover,
#tab2 .mini-card label:hover,
#tab2-panel-2 .card label:hover,
#tab2-panel-5 .card label:hover {
  letter-spacing: 0.03em;
  cursor: pointer;
}
#tab2 .tab-content a:hover {
  color: var(--ink);
}
.card.upd {
  max-height: 90px;
  overflow-y: scroll !important;
}
/* TAB Mini-card */
#tab2 .mini-card {
  position: relative;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  background: var(--cream);
  border: 1px solid var(--line2);
  color: var(--warntx);
  margin-bottom: 20px;
}
#tab2 .mini-card p {
  color: var(--ink3);
  margin: 0;
}
/* TAB Card */
#tab2 .card {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 16px;
  align-content: center;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
}
#tab2 .card p {
  margin: 0;
}
#tab2 .card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--tan);
  border: 1px solid var(--line);
  border-bottom: none;
  color: var(--ink2);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
/* TAB Price Table */
#tab2 .inner-table {
  background: var(--cream);
  border: 1px solid var(--line);
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
}
#tab2 .inner-table td {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.4;
  padding: 0;
}
#tab2 .inner-table .col-70 {
  width: 60%;
  align-content: center;
}
#tab2 .inner-table .col-30 {
  width: 40%;
  padding: 14px 16px;
  align-content: center;
  border-left: 1px solid var(--line);
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--bluetx);
  background: var(--bluesoft);
  border: 1px solid var(--blueline);
  padding: 8px 14px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  box-shadow: 0 2px 0 var(--blueline);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  font-family: Quicksand, Comfortaa, Georgia, "Times New Roman", serif;
}
.btn:hover {
  transform: translate(0px, -4px);
  background: var(--bluesoft);
  box-shadow: 0 4px 0 var(--blueline);
}
.btn:active {
  transform: translate(0px, 2px);
  box-shadow: 0 2px 0 var(--blueline);
}
#c-pre {
  font-family: Quicksand, Comfortaa, Georgia, "Times New Roman", serif;
  padding: 0;
  margin: 0;
}
/* form fields */
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink2);
  margin: 0 0 5px;
}
.input,
select.input,
textarea.input {
  width: 100%;
  box-sizing: border-box;
  font-size: 13px;
  color: var(--ink);
  background: var(--inputbg);
  border: 1px solid var(--line2);
  padding: 8px 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input:focus {
  outline: none;
  border-color: var(--line);
  box-shadow: 0 0 0 3px var(--page);
}
textarea.input {
  resize: vertical;
  min-height: 84px;
}
.stack {
  display: grid;
  gap: 0;
}
.stack-s {
  display: grid;
  gap: 8px;
}
.box-body {
  gap: 14px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.row-b,
.row-w {
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-b.row-left,
.row-w.row-left {
  justify-content: flex-start;
}
.addon {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.addon:hover {
  border-color: var(--line2);
  background: var(--btn-hover);
}
.addon input {
  flex: none;
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--ink3);
  cursor: pointer;
}
.addon > span:first-of-type {
  line-height: 1.35;
}
.addon b {
  color: var(--ink);
}
.addon .tagprice {
  margin-left: auto;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.35;
}
/* shop page */
table.shop {
  text-align: center;
  table-layout: fixed;
  width: 100%
}
a.shop-btn {
  font-size: 16px;
  text-transform: uppercase;
  background: var(--paper);
  padding: 10px;
  color: var(--ink2);
  text-decoration: none;
  transition: all 0.15s ease;
  flex-grow: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
  width: 70%;
}
a.shop-btn:hover {
  padding: 10px !important;
  background: var(--page);
  width: 100%;
}
/* page 2 5 */
body.flat #tab2-panel-2 .card,
body.flat #tab2-panel-5 .card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-height: none;
  overflow: visible;
}
body.flat #tab2-panel-2 .card-tag,
body.flat #tab2-panel-5 .card-tag {
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--ink2);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 26px 0 8px;
  margin-bottom: 0;
}
body.flat #tab2-panel-2 .card-tag::after,
body.flat #tab2-panel-5 .card-tag::after {
  content: "";
  display: block;
  width: 3.5em;
  height: 2px;
  background: var(--line2);
  margin-top: 8px;
}
/* image slider */
.split-media {
  background: var(--cream);
  overflow: hidden;
  min-height: 248px;
}
.sb-hint {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
}
/* preview */
.preview-row {
  position: static;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0;
}
.preview-row .prv {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  cursor: zoom-in;
}
.preview-row img {
  max-height: 354px;
}
.prv-vid {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}
.prv-vid iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.preview-row.is-video.two {
  grid-template-columns: 1fr 1fr;
}
.preview-row.is-video {
  min-height: 0;
  align-content: center;
  background: var(--tan);
}
/* price rows */
.prow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  font-size: 15px;
}
.prow span {
  color: var(--ink2);
}
.prow b {
  font-size: 18px;
  font-weight: 650;
  color: var(--ink2);
  letter-spacing: -0.01em;
}
/* divider */
.divider {
  border: none;
  border-top: 1px dashed var(--line2);
  margin: 18px 0;
  position: relative;
  overflow: visible;
}
.divider::after {
  content: "★";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 10px;
  color: var(--ink2);
  font-size: 11px;
}
.palette {
  height: 60px;
  display: inline-grid;
  text-align: center;
}
.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0;
}
.iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink2);
  transition: all 0.15s ease;
}
.iconbtn svg,
.iconbtn img {
  width: 16px;
  height: 16px;
  display: block;
}
a.iconbtn:hover {
  background: var(--bluesoft);
  border-color: var(--bluetx);
  transform: translateY(-2px);
}
/* loading screen */
.boot {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: var(--page);
}
.dots {
  display: inline-flex;
  gap: 11px;
}
.dots i {
  width: 13px;
  height: 13px;
  background: var(--ink2);
  animation: dotb 1.15s ease-in-out infinite;
}
.dots i:nth-child(2) {
  animation-delay: 0.18s;
}
.dots i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes dotb {
  0%,
  70%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  30% {
    transform: translateY(-7px);
    opacity: 1;
  }
}
#tab2 .fixed-body::-webkit-scrollbar {
  width: 5px;
}
#tab2 .fixed-body::-webkit-scrollbar-track {
  background: var(--paper);
}
#tab2 .fixed-body::-webkit-scrollbar-thumb {
  background: var(--ink2);
}
/* scrollbar */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: var(--paper);
}
::-webkit-scrollbar-thumb {
  background: var(--ink2);
  border: 3px solid var(--paper);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ink3);
}

/**
 * Made with love by Designfreaks.net
 * Do not redistribute or modify without permission.
 * Version 1.0.6
 */
/* Lightbox Overlay */
.dfl-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fdf4ead9;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dfl-overlay.active {
  display: flex;
  opacity: 1;
}
.dfl-overlay .dfl-img.dfl-pop-in,
.dfl-overlay .dfl-seamless-view.dfl-pop-in {
  animation: pop-in 0.25s ease forwards;
}
.dfl-overlay.active .dfl-img.dfl-is-zoomed {
  animation: none;
}
@keyframes pop-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Seamless Container */
.dfl-seamless-view {
  display: none;
  box-sizing: border-box;
  user-select: none;
  touch-action: none;
  background-color: #222;
  background-repeat: repeat;
  background-position: 0 0;
  border-radius: 5px;
  aspect-ratio: 4 / 3;
  width: min(90vw, 800px);
  height: auto;
  max-width: calc((70vh - 50px) * (4 / 3));
  max-height: calc(70vh - 50px);
  min-height: 100px;
}
.dfl-seamless-view.active {
  display: block;
}
/* Image & Caption */
.dfl-img {
  max-width: 90%;
  max-height: 70vh;
  user-select: none;
  touch-action: none;
  display: block;
  cursor: default;
  will-change: transform;
  /* Checkerboard background for transparent images */
  background-color: var(--paper);
}
.dfl-img.dfl-hidden {
  display: none;
}
[data-lightbox-src] {
  cursor: pointer;
}
.dfl-caption {
  color: var(--ink2);
  margin-top: 15px;
  font-family: Quicksand, Comfortaa, Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  background: var(--paper);
  padding: 15px;
  width: 100%;
  max-width: 500px;
  max-height: 100px;
  overflow-y: auto;
  box-sizing: border-box;
  border: 1px solid var(--line2);
  outline: 6px solid var(--page);
  outline-offset: -7px;
}
.dfl-download {
  display: block;
  background: #222;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  padding: 10px;
  margin: 10px auto;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
/* Controls */
.dfl-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--ink2);
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
  outline: none;
  user-select: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10001;
}
.dfl-button:hover {
  opacity: 1;
}
.dfl-prev {
  left: 10px;
}
.dfl-next {
  right: 10px;
}
.dfl-close {
  top: 20px;
  right: 20px;
  transform: none;
  font-size: 30px;
}
/* Hide arrows if single image */
.dfl-single .dfl-prev,
.dfl-single .dfl-next {
  display: none;
}
/* Zoom & Drag */
.dfl-img.dfl-can-zoom {
  cursor: zoom-in;
}
.dfl-img.dfl-is-zoomed {
  max-width: none;
  max-height: none;
  transform-origin: center center;
}
.dfl-img.dfl-is-zoomed[style*="grabbing"] {
  cursor: grabbing !important;
}
/* Loading State */
.dfl-overlay.dfl-loading {
  cursor: wait;
}
.dfl-overlay.dfl-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 1001;
}
/* Spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Accessibility: Focus Outlines */
.dfl-overlay a:focus-visible,
.dfl-overlay button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  transition: box-shadow 0.1s ease;
}
.dfl-button:focus-visible {
  border-radius: 5px;
}
.dfl-download:focus-visible {
  box-shadow: none;
}
/* Adaptive */
@media (min-width: 640px) {
  .outer {
    padding: 32px 16px;
  }
}
/* ADAPTIVE */
@media (max-width: 768px) {
  .sheet:has(#tab2-rad-1:checked),
  .sheet:has(#tab2-rad-2:checked),
  .sheet:has(#tab2-rad-3:checked),
  .sheet:has(#tab2-rad-4:checked),
  .sheet:has(#tab2-rad-5:checked),
  .sheet:has(#tab2-rad-6:checked) {
    max-width: 100vw;
  }
  #tab2 {
    padding: 1%;
  }
  #tab2 .body-wrap {
    flex-direction: column;
    gap: 0;
  }
  #tab2 .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    position: relative;
    top: 0;
    padding: 0 16px;
  }
  #tab2 .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #tab2 .tab-btn {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
  #tab2 .static-table,
  #tab2 .static-table tbody,
  #tab2 .static-table tr,
  #tab2 .static-table th,
  #tab2 .static-table td,
  #tab2 .inner-table,
  #tab2 .inner-table tbody,
  #tab2 .inner-table tr,
  #tab2 .inner-table td {
    display: block;
    width: 100%;
  }
  #tab2 .static-table th.th-lbl {
    width: 100%;
    min-width: 0;
    padding: 7px 10px 6px;
    font-size: 10.5px;
    border-right: none;
  }
  #tab2 .inner-table tr {
    border-bottom: 1px solid var(--line);
  }
  #tab2 .inner-table tr:last-child {
    border-bottom: none;
  }
  #tab2 .inner-table td {
    border: none;
  }
  #tab2 .inner-table .col-70,
  #tab2 .inner-table .col-30 {
    width: 100%;
  }
  #tab2 .mini-card {
    width: 100%;
  }
  #tab2 .fixed-box {
    height: 100%;
    overflow-y: auto;
  }
  #tab2 .nav {
    padding: 8px 10px;
    gap: 6px;
  }
  #tab2 .tab-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 90px;
    font-size: 12px;
    padding: 8px;
  }
  #tab2 .tab-content {
    padding: 0 14px;
  }
  .preview-row .prv {
    min-height: 220px;
  }
  .split-media.preview-row {
    height: auto;
  }
  table.shop td {
    display: flex;
    justify-content: space-between;
  }
  table.shop td:last-child {
    border-bottom: none;
  }
}
@media (min-width: 890px) {
  .dfl-seamless-view {
    width: 800px;
    height: 600px;
  }
}
