:root {
  --primary: #bd8940;
  --secondary: #2f2c28;
  --accent: #bd8940;
  --primary-fg: #fffaf2;
  --body-bg: #f8f3eb;
  --body-fg: #2f2c28;
  --body-quiet-color: #756f66;
  --body-loud-color: #1f1d1a;
  --header-bg: rgba(255, 250, 242, .95);
  --header-color: #2f2c28;
  --breadcrumbs-bg: transparent;
  --breadcrumbs-fg: #756f66;
  --link-fg: #9c681d;
  --link-hover-color: #bd8940;
  --selected-bg: rgba(189, 137, 64, .12);
  --hairline-color: rgba(74, 61, 45, .14);
  --border-color: rgba(74, 61, 45, .14);
  --darkened-bg: rgba(255, 255, 255, .52);
  --selected-row: rgba(189, 137, 64, .08);
  --button-bg: #bd8940;
  --button-hover-bg: #a9772e;
  --default-button-bg: #bd8940;
  --default-button-hover-bg: #a9772e;
  --delete-button-bg: #9f3f31;
  --delete-button-hover-bg: #843125;
  --radius: 10px;
  --shadow: 0 18px 54px rgba(72, 58, 42, .08);
}

html[data-theme="light"],
html[data-theme="dark"] {
  --primary: #bd8940;
  --secondary: #2f2c28;
  --accent: #bd8940;
  --body-bg: #f8f3eb;
  --body-fg: #2f2c28;
  --header-bg: rgba(255, 250, 242, .95);
  --header-color: #2f2c28;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .95), rgba(255, 250, 242, 0) 32%),
    linear-gradient(180deg, #fffaf2 0%, #f8f3eb 100%);
  color: var(--body-fg);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

a:link,
a:visited {
  color: var(--link-fg);
}

#container {
  min-width: 0;
}

#header {
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(74, 61, 45, .12);
  box-shadow: 0 12px 38px rgba(72, 58, 42, .06);
}

#branding {
  display: flex;
  align-items: center;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #2f2c28 !important;
  text-decoration: none;
}

.admin-brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fffaf2;
  background: linear-gradient(135deg, #bd8940, #9f6b23);
  border-radius: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.admin-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: .9;
}

.admin-brand em {
  display: block;
  margin-top: 4px;
  color: #756f66;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-quick-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-quick-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #2f2c28 !important;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(189, 137, 64, .2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

#user-tools {
  color: #756f66;
  font-size: 12px;
}

body:not(.login) #user-tools {
  display: none !important;
}

#user-tools a {
  border-bottom: 0;
  color: #9c681d;
  font-weight: 800;
}

div.breadcrumbs {
  padding: 14px clamp(18px, 4vw, 56px);
  background: transparent;
  color: #756f66;
  font-size: 13px;
}

#content {
  padding: 28px clamp(18px, 4vw, 56px) 54px;
}

#content h1 {
  margin: 0 0 24px;
  color: #2f2c28;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 700;
  line-height: .96;
}

.object-tools {
  margin-top: -64px;
}

.object-tools a,
.object-tools a:link,
.object-tools a:visited,
input[type="submit"],
button,
.button {
  min-height: 38px;
  padding: 0 18px;
  background: var(--button-bg);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: none;
  color: #fffaf2;
  font-weight: 800;
  line-height: 38px;
}

.object-tools a:hover,
input[type="submit"]:hover,
button:hover,
.button:hover {
  background: var(--button-hover-bg);
}

.button.default,
input[type="submit"].default,
.submit-row input.default {
  background: linear-gradient(135deg, #c99445, #ad772d);
}

#content-main,
.module,
#changelist,
.dashboard-hero,
.dashboard-card,
.dashboard-app,
.submit-row,
.inline-group {
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(74, 61, 45, .12);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.module {
  overflow: hidden;
}

.module h2,
.module caption,
.inline-group h2 {
  padding: 14px 18px;
  background: rgba(189, 137, 64, .09);
  color: #2f2c28;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}

#changelist {
  padding: 0;
  overflow: hidden;
}

#changelist-form .results {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
}

thead th,
tfoot td {
  background: rgba(255, 250, 242, .92);
  color: #756f66;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

td,
th {
  border-bottom: 1px solid rgba(74, 61, 45, .1);
  vertical-align: middle;
}

tbody tr:hover {
  background: rgba(189, 137, 64, .07);
}

#changelist-filter {
  display: none !important;
}

.change-list #changelist.filtered {
  min-height: 0;
}

.change-list #changelist.filtered #changelist-form,
.change-list #changelist.filtered .paginator,
.change-list #changelist.filtered #toolbar,
.change-list #changelist.filtered div.xfull {
  margin-right: 0 !important;
}

#changelist-filter h2 {
  background: transparent;
  color: #2f2c28;
  font-size: 18px;
}

#changelist-filter h3 {
  color: #756f66;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#changelist-filter li.selected {
  border-left: 4px solid var(--gold, #bd8940);
  padding-left: 10px;
}

#toolbar {
  padding: 16px 18px;
  background: rgba(255, 255, 255, .66);
  border-bottom: 1px solid rgba(74, 61, 45, .1);
}

#toolbar form input[type="text"],
#changelist-search input[type="text"] {
  height: 42px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgba(74, 61, 45, .14);
  border-radius: 8px;
}

.paginator {
  padding: 16px 18px;
  background: rgba(255, 250, 242, .78);
  border-top: 1px solid rgba(74, 61, 45, .1);
}

fieldset.module {
  margin-bottom: 18px;
}

.form-row {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(74, 61, 45, .08);
}

label {
  color: #5f574f;
  font-weight: 900;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
select,
.vTextField {
  min-height: 38px;
  background: #fff;
  border: 1px solid rgba(74, 61, 45, .16);
  border-radius: 8px;
  color: #2f2c28;
  font-family: "Manrope", sans-serif;
}

textarea {
  padding: 12px 14px;
}

.help,
.helptext,
p.help,
div.help {
  color: #8d8378;
  font-size: 12px;
}

.aligned label {
  width: 180px;
}

.submit-row {
  position: sticky;
  bottom: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 250, 242, .92);
  backdrop-filter: blur(10px);
}

.inline-related {
  background: rgba(255, 255, 255, .58);
}

.inline-group .tabular tr.has_original td {
  padding-top: 12px;
}

.deletelink,
a.deletelink,
input[type="submit"].deletelink {
  background: #9f3f31;
  border-radius: 8px;
}

.messagelist li {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login #container {
  width: min(430px, calc(100% - 32px));
  margin-top: 8vh;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(74, 61, 45, .12);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.login #header {
  justify-content: center;
  min-height: 96px;
  padding: 18px;
  border-radius: 14px 14px 0 0;
}

.login #content {
  padding: 28px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.dashboard-hero p {
  margin: 0 0 10px;
  color: #9c681d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-hero h1 {
  margin: 0 0 12px !important;
}

.dashboard-hero span {
  color: #756f66;
}

.dashboard-actions {
  display: flex;
  gap: 10px;
}

.admin-action-primary,
.admin-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.admin-action-primary {
  color: #fffaf2 !important;
  background: linear-gradient(135deg, #c99445, #ad772d);
}

.admin-action-secondary {
  color: #9c681d !important;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(189, 137, 64, .28);
}

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

.dashboard-card {
  display: grid;
  gap: 14px;
  min-height: 170px;
  padding: 22px;
  color: #2f2c28 !important;
  text-decoration: none;
}

.dashboard-card-main {
  background: linear-gradient(135deg, rgba(189, 137, 64, .18), rgba(255, 255, 255, .68));
}

.dashboard-card span {
  color: #bd8940;
  font-weight: 900;
}

.dashboard-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: .95;
}

.dashboard-card p {
  margin: 0;
  color: #756f66;
  line-height: 1.45;
}

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

.dashboard-app {
  overflow: hidden;
}

.dashboard-app h2 {
  margin: 0;
  padding: 16px 18px;
  background: rgba(189, 137, 64, .09);
}

.dashboard-app article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid rgba(74, 61, 45, .08);
}

.mini-add {
  color: #9c681d !important;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  #header,
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-cards,
  .dashboard-apps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  #header {
    padding: 14px 16px;
  }

  #content {
    padding: 20px 14px 42px;
  }

  .object-tools {
    margin-top: 0;
  }

  .dashboard-cards,
  .dashboard-apps,
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-actions {
    flex-direction: column;
  }

  .aligned label {
    width: auto;
  }
}

/* DomShtor admin shell v2 */
body.dashboard,
body.change-form,
body.change-list,
body.login {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, #f6efe6 100%);
}

body:not(.login) #container {
  display: block;
  min-height: 100vh;
  padding-left: 330px;
  box-sizing: border-box;
  overflow-x: hidden;
}

body:not(.login) #header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  min-height: 98px;
  margin-left: -330px;
  width: 100vw;
  box-sizing: border-box;
  padding: 0;
  background: rgba(255, 250, 242, .96);
  border-bottom: 1px solid rgba(74, 61, 45, .13);
  backdrop-filter: blur(16px);
}

body:not(.login) #branding {
  height: 100%;
  padding: 0 26px;
  border-right: 1px solid rgba(74, 61, 45, .1);
}

#nav-sidebar,
.toggle-nav-sidebar {
  display: none !important;
}

#main {
  display: block !important;
}

#content-start {
  width: 100%;
}

body:not(.login) .admin-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  font-size: 42px;
}

body:not(.login) .admin-brand strong {
  font-size: 36px;
  white-space: nowrap;
}

body:not(.login) .admin-brand em {
  font-size: 13px;
}

body:not(.login) .admin-quick-nav {
  justify-content: flex-end;
  gap: 10px;
  padding: 0 clamp(22px, 3vw, 54px);
  min-width: 0;
}

.admin-quick-nav span {
  margin-right: auto;
  color: #756f66;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body:not(.login) .admin-quick-nav a {
  min-height: 48px;
  padding: 0 24px;
  background: rgba(255, 255, 255, .55);
  border-color: rgba(74, 61, 45, .12);
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
}

body:not(.login) .admin-quick-nav .open-site-link {
  color: #9c681d !important;
  border-color: rgba(189, 137, 64, .4);
}

body:not(.login) #content {
  width: calc(100vw - 330px);
  max-width: none;
  box-sizing: border-box;
  padding: 36px clamp(28px, 3vw, 54px) 42px;
}

body:not(.login) #content-main {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body:not(.login) .admin-side-menu {
  position: fixed;
  top: 98px;
  left: 14px;
  z-index: 30;
  width: 302px;
  min-height: calc(100vh - 98px);
  margin: 14px;
  padding: 30px 12px 24px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(74, 61, 45, .12);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(72, 58, 42, .06);
}

.side-section-title {
  margin: 0 12px 16px;
  color: #756f66;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.admin-side-menu a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  color: #2f2c28 !important;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.admin-side-menu a:hover,
.admin-side-menu a.is-active {
  background: rgba(189, 137, 64, .1);
  color: #9c681d !important;
}

.admin-side-menu span {
  color: #756f66;
  font-size: 20px;
}

.admin-side-menu i {
  color: #9c681d;
  font-style: normal;
  font-size: 18px;
}

.side-divider {
  height: 1px;
  margin: 22px 16px;
  background: rgba(74, 61, 45, .12);
}

.side-collapse {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  width: auto;
  min-height: 46px;
  color: #756f66;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(74, 61, 45, .12);
}

body:not(.login) div.breadcrumbs {
  width: calc(100vw - 330px);
  box-sizing: border-box;
  padding: 34px clamp(28px, 3vw, 54px) 0;
  background: transparent;
}

body:not(.login) div.breadcrumbs + #content {
  padding-top: 70px;
}

.admin-page-title {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.admin-page-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #bd8940;
  background: rgba(189, 137, 64, .1);
  border-radius: 999px;
  font-size: 28px;
}

.admin-page-title h1 {
  margin: 0 0 7px !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 32px !important;
  line-height: 1.1 !important;
}

.admin-page-title p {
  margin: 0;
  color: #756f66;
}

.change-form .submit-row {
  position: static;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(74, 61, 45, .12);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(72, 58, 42, .07);
}

.change-form .submit-row input,
.change-form .submit-row a {
  min-width: 170px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 7px;
  line-height: 48px;
  text-align: center;
}

.change-form .submit-row input.default {
  min-width: 170px;
  background: linear-gradient(135deg, #c99445, #ad772d);
}

.change-form .submit-row input:not(.default) {
  color: #2f2c28;
  background: rgba(255, 255, 255, .6);
  border-color: rgba(189, 137, 64, .24);
}

.change-form fieldset.module,
.change-form .inline-group,
.change-list #changelist,
.dashboard-app,
.dashboard-card,
.dashboard-hero {
  border-radius: 8px;
}

.change-form fieldset.module {
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(74, 61, 45, .12);
  box-shadow: 0 14px 46px rgba(72, 58, 42, .06);
}

.change-form .aligned {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 10px 22px 22px;
}

.change-form .aligned h2,
.change-form .aligned .description {
  grid-column: 1 / -1;
}

.change-form fieldset.module h2,
.inline-group h2 {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: rgba(255, 255, 255, .54);
  border-bottom: 1px solid rgba(74, 61, 45, .1);
  font-size: 16px;
  text-transform: none;
}

.change-form fieldset.module.product-main-fieldset,
.change-form fieldset.module.product-variants-fieldset,
.change-form fieldset.module.product-price-fieldset {
  position: relative;
  overflow: hidden;
}

.change-form fieldset.module.product-variants-fieldset {
  border-color: rgba(189, 137, 64, .28);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .94), rgba(255, 255, 255, .68)),
    rgba(255, 255, 255, .72);
}

.change-form fieldset.module.product-variants-fieldset h2::after {
  content: "цветы и размеры на сайте";
  margin-left: auto;
  padding: 5px 10px;
  color: #9c681d;
  background: rgba(189, 137, 64, .1);
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.change-form fieldset.module .description {
  margin: 0;
  padding: 14px 22px 0;
  color: #756f66;
  font-size: 13px;
  line-height: 1.55;
}

.change-form .form-row {
  display: block;
  min-width: 0;
  padding: 13px 14px;
  border-bottom: 0;
}

.change-form .form-row > div,
.change-form .form-row .flex-container,
.change-form .form-row .readonly {
  min-width: 0;
  width: 100%;
}

.change-form .form-row label,
.change-form .aligned label {
  display: block;
  float: none;
  width: auto;
  margin: 0 0 8px;
  padding: 0;
  color: #3a352f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.change-form input[type="text"],
.change-form input[type="password"],
.change-form input[type="email"],
.change-form input[type="number"],
.change-form input[type="url"],
.change-form input[type="color"],
.change-form textarea,
.change-form select,
.change-form .vTextField,
.change-form .select2-container,
.change-form .select2-container--admin-autocomplete {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  font-size: 14px;
}

.change-form input[type="text"],
.change-form input[type="password"],
.change-form input[type="email"],
.change-form input[type="number"],
.change-form input[type="url"],
.change-form select,
.change-form .vTextField {
  padding: 0 13px;
}

.change-form input[type="color"] {
  width: 88px !important;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(74, 61, 45, .16);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.change-form select {
  min-width: 0;
  height: 44px;
}

.change-form .select2-container .select2-selection--single {
  min-height: 44px;
  border-color: rgba(74, 61, 45, .16);
  border-radius: 8px;
  background: #fff;
}

.change-form .select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered {
  min-height: 42px;
  padding-left: 13px;
  color: #2f2c28;
  line-height: 42px;
}

.change-form .select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow {
  height: 42px;
}

.change-form .related-widget-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  float: none;
  flex-wrap: nowrap;
}

.change-form .related-widget-wrapper select,
.change-form .related-widget-wrapper .select2-container {
  min-width: 0;
  flex: 1 1 auto;
  width: auto !important;
}

.change-form .related-widget-wrapper-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(189, 137, 64, .22);
  border-radius: 8px;
  background: rgba(255, 250, 242, .72);
}

.change-form .related-widget-wrapper-link img {
  max-width: 15px;
  max-height: 15px;
}

.change-form textarea {
  min-height: 112px;
  resize: vertical;
}

.change-form .form-row.field-short_description,
.change-form .form-row.field-description,
.change-form .form-row.field-image,
.change-form .form-row.field-preview,
.change-form .form-row.field-sizes,
.change-form .form-row.field-variant_group,
.change-form .form-row.field-seo_title,
.change-form .form-row.field-seo_description {
  grid-column: 1 / -1;
}

.change-form .form-row.field-color_hex {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: end;
  gap: 12px;
}

.change-form .form-row.field-color_hex > div {
  display: contents;
}

.change-form .form-row.field-color_hex label {
  grid-column: 1 / -1;
}

.change-form .form-row.field-color_hex .help {
  align-self: center;
  margin: 0;
  color: #756f66;
  font-size: 12px;
}

.change-form .help,
.change-form .help li {
  color: #756f66;
  font-size: 12px;
  line-height: 1.45;
}

.change-form .file-upload {
  display: block;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
  padding: 15px;
  border: 1px dashed rgba(189, 137, 64, .55);
  border-radius: 8px;
  background: rgba(255, 250, 242, .6);
  color: #756f66;
  line-height: 1.7;
}

.change-form .file-upload a {
  font-weight: 900;
}

.change-form .file-upload input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.change-form .checkbox-row {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-top: 36px;
}

.change-form .checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
}

.change-form .checkbox-row label {
  margin: 0;
  font-size: 14px;
}

.change-form .readonly img {
  max-width: 180px;
  height: auto !important;
  border-radius: 8px;
  border: 1px solid rgba(74, 61, 45, .12);
}

.inline-group {
  margin-top: 22px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(74, 61, 45, .12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 46px rgba(72, 58, 42, .05);
}

.inline-group table {
  background: transparent;
}

.inline-group .tabular td,
.inline-group .tabular th {
  padding: 10px;
}

.inline-group .tabular input[type="text"],
.inline-group .tabular input[type="number"],
.inline-group .tabular select {
  width: 100% !important;
  min-width: 110px;
  min-height: 38px;
}

.inline-group .tabular .file-upload {
  min-width: 260px;
}

.inline-group .tabular tr.add-row td {
  padding: 14px 18px;
  background: rgba(255, 250, 242, .72);
}

.change-list #toolbar {
  padding: 18px 22px;
}

.change-list #changelist table {
  font-size: 14px;
}

.change-list #changelist table img {
  border: 1px solid rgba(74, 61, 45, .1);
}

.admin-row-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  color: #fffaf2 !important;
  background: linear-gradient(135deg, #c99445, #ad772d);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.object-tools {
  margin-top: -76px;
}

.object-tools a {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  line-height: 48px;
}

.dashboard-hero {
  grid-template-columns: 1fr auto;
  padding: 34px;
}

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

.dashboard-card {
  border-radius: 8px;
}

@media (max-width: 1180px) {
  body:not(.login) #container {
    display: block;
  }

  body:not(.login) #header {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 18px;
  }

  body:not(.login) #branding {
    padding: 0;
    border-right: 0;
  }

  body:not(.login) .admin-side-menu {
    position: static;
    min-height: auto;
    margin: 14px;
  }

  body:not(.login) div.breadcrumbs,
  body:not(.login) div.breadcrumbs + #content,
  body:not(.login) #content {
    padding: 20px 16px 40px;
  }

  .change-form .form-row {
    grid-template-columns: 1fr;
  }

  .change-form .submit-row {
    flex-direction: column;
  }

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