/*
 * Reafrio — modern visual layer
 * This file intentionally contains presentation rules only. Existing routes,
 * form names, element ids and JavaScript hooks remain untouched.
 */

:root {
  --reafrio-blue-950: #0a1d52;
  --reafrio-blue-900: #30327a;
  --reafrio-blue-800: #3E4095;
  --reafrio-blue-700: #3E4095;
  --reafrio-blue-600: #5759b2;
  --reafrio-cyan: #35b9e8;
  --reafrio-cyan-soft: #f1f2ff;
  --reafrio-ink: #17243f;
  --reafrio-text: #526079;
  --reafrio-muted: #7f8aa2;
  --reafrio-line: #dfe6f0;
  --reafrio-surface: #ffffff;
  --reafrio-canvas: #f4f7fb;
  --reafrio-success: #16865c;
  --reafrio-danger: #cf3f51;
  --reafrio-radius-sm: 10px;
  --reafrio-radius: 16px;
  --reafrio-radius-lg: 24px;
  --reafrio-shadow-sm: 0 4px 14px rgba(18, 45, 93, 0.07);
  --reafrio-shadow: 0 14px 38px rgba(18, 45, 93, 0.11);
  --reafrio-focus: 0 0 0 4px rgba(62, 64, 149, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--reafrio-canvas);
  color: var(--reafrio-text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

body.catalog-page {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.new-layout-section,
.new-layout-cart,
.cart-main,
.orders-main,
.product-detail-main,
.order-document-main,
.profile-main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  color: var(--reafrio-ink);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  color: var(--reafrio-blue-700);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--reafrio-blue-900);
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

button,
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.25;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

button:focus-visible,
.button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--reafrio-focus);
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]), select, textarea, .form-control) {
  min-height: 46px;
  border: 1px solid var(--reafrio-line);
  border-radius: 11px;
  background: var(--reafrio-surface);
  color: var(--reafrio-ink);
  padding: 10px 13px;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

textarea,
textarea.form-control {
  min-height: 104px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #98a3b7;
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]), select, textarea, .form-control):focus {
  border-color: var(--reafrio-cyan);
  background: #fff;
  box-shadow: var(--reafrio-focus);
  outline: none;
}

body:not(.theme-light-blue) .container {
  width: min(100% - 32px, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}

body:not(.theme-light-blue) .row {
  margin-right: -10px;
  margin-left: -10px;
}

body:not(.theme-light-blue) .row > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

/* Public navigation */
.header_area {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(202, 216, 232, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(18, 45, 93, 0.08);
  backdrop-filter: blur(14px);
}

.header_area .main_menu,
.header_area .navbar {
  background: transparent;
}

.header_area .main_menu {
  padding: 0;
}

.header_area .navbar {
  min-height: 74px;
  padding: 8px 0;
}

.header_area .navbar .container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header_area .navbar-brand {
  flex: 0 0 auto;
  margin-right: 8px;
  padding: 2px 0;
}

.header_area .navbar-brand img {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.header_area .navbar-collapse {
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.header_area .menu_nav,
.header_area .nav-shop {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.header_area .menu_nav {
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
}

.header_area .navbar .nav .nav-item {
  margin: 0;
}

.header_area .navbar .nav .nav-item .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #34415a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.header_area .navbar .nav .nav-item .nav-link i {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  color: var(--reafrio-blue-700);
  font-size: 15px;
  line-height: 1;
}

.header_area .navbar .nav .nav-item:hover > .nav-link,
.header_area .navbar .nav .nav-item.active > .nav-link {
  border-color: #d8d9f6;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
}

.header_area .navbar .nav .nav-item:hover > .nav-link i,
.header_area .navbar .nav .nav-item.active > .nav-link i {
  color: var(--reafrio-blue-800);
}

.header_area .navbar .nav .nav-item.submenu ul {
  min-width: 245px;
  overflow: hidden;
  padding: 9px;
  border: 1px solid var(--reafrio-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--reafrio-shadow);
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item {
  border: 0;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
  min-height: 40px;
  justify-content: flex-start;
  padding: 9px 12px;
  border-radius: 10px;
  line-height: 1.35;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
}

.nav-shop,
.header_area .nav-shop {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: 14px;
}

.nav-shop li,
.header_area .nav-shop li {
  margin: 0;
}

.nav-shop li button,
.header_area .nav-shop li button,
.nav-icon-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid #cbdceb;
  border-radius: 999px;
  background: #fff;
  color: var(--reafrio-blue-800);
}

.nav-shop li button:hover,
.header_area .nav-shop li button:hover,
.nav-icon-link:hover {
  border-color: #c8c9f2;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-900);
  box-shadow: var(--reafrio-shadow-sm);
}

.nav-shop li button i,
.nav-shop li button span,
.nav-icon-link i {
  color: currentColor;
  font-size: 17px;
  line-height: 1;
}

.nav-shop li button .nav-shop__circle,
.nav-icon-link .nav-shop__circle {
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--reafrio-blue-600);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.button-header {
  gap: 7px;
  min-height: 40px;
  margin-left: 4px;
  padding: 9px 17px;
  border: 1px solid var(--reafrio-blue-800);
  border-radius: 999px;
  background: #fff;
  color: var(--reafrio-blue-800);
  line-height: 22px;
}

.button-header i {
  color: currentColor;
  font-size: 14px;
  line-height: 1;
}

.button-header:hover {
  border-color: var(--reafrio-blue-800);
  background: var(--reafrio-blue-800);
  color: #fff;
  box-shadow: 0 8px 20px rgba(62, 64, 149, 0.2);
}

.navbar-toggler {
  width: 44px;
  min-height: 42px;
  margin: 0;
  padding: 10px;
  border: 1px solid #cbdceb;
  border-radius: 999px;
  background: #fff;
}

.navbar-toggler span {
  display: block;
  width: 23px;
  height: 2px;
  margin-bottom: 5px;
  border-radius: 999px;
  background: var(--reafrio-blue-800);
  transition: transform 180ms ease, opacity 180ms ease;
}

.navbar-toggler span:last-child {
  margin-bottom: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Store catalogue */
.section-margin.new-layout-section,
.new-layout-section,
.new-layout-cart {
  min-height: calc(100vh - 170px);
  margin: 0;
  padding: 34px 0 48px;
  background: var(--reafrio-canvas);
}

.new-layout-container-int,
.new-layout-container-cart {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.new-layout-container-int > .row,
.new-layout-container-cart > .row {
  width: auto;
}

.new-layout-filter-bar {
  width: calc(100% - 20px);
  margin: 0 10px 24px;
  padding: 16px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--reafrio-shadow-sm);
}

.new-layout-filter-bar .flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.new-layout-filter-bar form {
  width: min(100%, 430px);
  margin: 0;
}

.new-layout-select-filter-bar {
  width: min(100%, 290px);
}

.new-layout-select-filter-bar select,
.new-layout-filter-bar .nice-select {
  width: 100%;
  height: 48px;
  padding-left: 14px;
  border-color: var(--reafrio-line);
  border-radius: 11px;
  background: #fff;
  line-height: 46px;
}

.new-layout-filter-bar-search {
  position: relative;
  display: flex;
  width: 100%;
  float: none;
  margin: 0;
  overflow: visible;
}

.new-layout-filter-bar-search button {
  position: absolute;
  top: 50%;
  left: 4px;
  z-index: 2;
  width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--reafrio-blue-800);
  transform: translateY(-50%);
}

.new-layout-filter-bar-search button:hover {
  transform: translateY(-50%);
}

.new-layout-filter-bar-search input {
  width: 100%;
  height: 48px;
  padding-left: 48px;
  border: 1px solid var(--reafrio-line);
  border-radius: 11px;
  background: #fff;
}

.new-layout-col-responsive {
  width: 25%;
  padding: 10px;
}

.new-layout-col-responsive > form {
  height: 100%;
  margin: 0;
}

.card-product.new-layout-card-product,
.new-layout-card-product {
  display: flex;
  height: 100%;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: 12px 12px 16px;
  border: 1px solid rgba(223, 230, 240, 0.95);
  border-radius: var(--reafrio-radius);
  background: var(--reafrio-surface);
  box-shadow: 0 5px 18px rgba(18, 45, 93, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-product.new-layout-card-product:hover {
  z-index: 1;
  border-color: #cfd0f4;
  box-shadow: var(--reafrio-shadow);
  transform: translateY(-4px);
}

.new-layout-card-product .card-product__img {
  display: grid;
  height: 230px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #f9fbfd, #f0f5fa);
}

.new-layout-card-product .card-product__img a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.new-layout-card-product .card-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 230px;
  max-height: 230px;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: multiply;
  transition: transform 280ms ease;
}

.new-layout-card-product:hover .card-img {
  transform: scale(1.035);
}

.new-layout-card-body {
  display: flex;
  min-height: 125px;
  flex: 1;
  flex-direction: column;
  padding: 16px 4px 8px;
}

.new-layout-card-body > p:first-child {
  margin: 0 0 5px;
  color: var(--reafrio-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.new-layout-card-body .card-product__title {
  min-height: 42px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.new-layout-card-body .card-product__title a {
  color: var(--reafrio-ink);
}

.new-layout-card-body .card-product__price {
  margin-top: auto;
  color: var(--reafrio-blue-800);
  font-size: 20px;
  font-weight: 750;
}

.new-layout-card-product .product_count {
  position: relative;
  display: block;
  margin: 0 0 10px;
}

.new-layout-card-product .product_count input {
  width: 72px;
  height: 42px;
  min-height: 42px;
  padding: 8px;
  text-align: center;
}

.product_count button {
  position: absolute;
  right: 4px;
  width: 28px;
  min-height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--reafrio-muted);
  line-height: 20px;
}

.product_count .increase {
  top: 0;
}

.product_count .reduced {
  bottom: 0;
}

.btn-primary,
.btn-info,
.btn-success,
.new-layout-button,
.button-login {
  border: 1px solid var(--reafrio-blue-700);
  background: linear-gradient(135deg, var(--reafrio-blue-700), var(--reafrio-blue-600));
  color: #fff;
  box-shadow: 0 8px 18px rgba(62, 64, 149, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.new-layout-button:hover,
.new-layout-button:focus,
.new-layout-button:active,
.button-login:hover,
.button-login:focus,
.button-login:active {
  border-color: var(--reafrio-blue-900);
  background: linear-gradient(135deg, var(--reafrio-blue-900), var(--reafrio-blue-700));
  color: #fff;
  box-shadow: 0 11px 24px rgba(62, 64, 149, 0.26);
}

.btn-outline-primary {
  border-color: var(--reafrio-blue-700);
  background: transparent;
  color: var(--reafrio-blue-700);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  border-color: var(--reafrio-blue-900);
  background: var(--reafrio-blue-700);
  color: #fff;
  box-shadow: 0 10px 22px rgba(62, 64, 149, 0.2);
}

.new-layout-button {
  width: calc(100% - 8px);
  margin: 0 4px;
  padding: 10px 16px;
  border-radius: 11px;
  font-size: 14px;
}

.eng-pagination {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 35px 0 16px;
}

.product-action,
.full-width-select {
  width: 100%;
}

.eng-links-pagination {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid var(--reafrio-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.link-pagination {
  display: grid;
  width: 40px;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9px;
  color: var(--reafrio-text);
  text-decoration: none;
}

.eng-number-pagination {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 0;
}

.active-pagination,
.link-pagination:hover {
  background: var(--reafrio-blue-800);
  color: #fff;
}

.active-pagination h4,
.link-pagination:hover h4 {
  color: #fff;
}

.eng-links-pagination h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.points-pagination {
  display: grid;
  width: 28px;
  height: 40px;
  place-items: center;
  color: var(--reafrio-muted);
}

.arrow-pagination {
  width: 16px;
  height: 16px;
}

/* Product detail */
.product-detail-page {
  min-height: 100vh;
  background: var(--reafrio-canvas);
}

.product-detail-main {
  min-height: calc(100vh - 78px);
  padding: clamp(24px, 4vw, 46px) 0 52px;
}

.product-back-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid var(--reafrio-line);
  border-radius: 11px;
  background: #fff;
  color: var(--reafrio-blue-800);
  font-weight: 700;
  box-shadow: var(--reafrio-shadow-sm);
}

.product-back-button .arrow-left {
  display: block;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 4vw, 52px);
  padding: 30px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.product-detail-media {
  display: grid;
  min-width: 0;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--reafrio-radius);
  background: linear-gradient(145deg, #f8fafc, #eef4f9);
}

.product-detail-media img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: 400px;
  max-height: 400px;
  padding: 20px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.product-detail-code {
  margin: 0 0 7px;
  color: var(--reafrio-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-detail-content h1 {
  margin: 0 0 12px;
  color: var(--reafrio-blue-950);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.22;
}

.product-detail-price {
  margin: 0 0 22px;
  color: var(--reafrio-blue-800);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.product-detail-meta > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--reafrio-line);
  border-radius: 12px;
  background: #f8fafc;
}

.product-detail-meta dt {
  margin: 0 0 3px;
  color: var(--reafrio-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-detail-meta dd {
  overflow: hidden;
  margin: 0;
  color: var(--reafrio-ink);
  font-weight: 700;
  text-overflow: ellipsis;
}

.product-detail-description {
  margin: 0;
  color: var(--reafrio-text);
  line-height: 1.7;
}

.product-detail-form {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--reafrio-line);
}

.product-detail-actions {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.product-detail-field {
  flex: 0 0 120px;
}

.product-detail-field label {
  display: block;
  margin: 0 0 7px;
  color: var(--reafrio-blue-950);
  font-size: 13px;
  font-weight: 700;
}

.product-detail-quantity {
  position: relative;
  width: 120px;
  margin: 0;
}

.product-detail-quantity input {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 9px 38px 9px 12px;
  text-align: center;
}

.product-detail-quantity button {
  right: 3px;
  width: 30px;
  min-height: 22px;
}

.product-detail-quantity .increase {
  top: 2px;
}

.product-detail-quantity .reduced {
  bottom: 2px;
}

.product-detail-actions .button-product-datail {
  width: auto;
  min-width: 210px;
  min-height: 48px;
  margin: 0;
}

/* Cart, order and data views */
.cart-main {
  flex: 1 0 auto;
  padding: clamp(26px, 4vw, 46px) 0 52px;
  background: var(--reafrio-canvas);
}

.cart-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.cart-page-header__eyebrow,
.cart-section-eyebrow {
  margin: 0 0 4px;
  color: var(--reafrio-blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cart-page-header h1 {
  margin: 0 0 6px;
  color: var(--reafrio-blue-950);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.cart-page-header > div > p:last-child {
  margin: 0;
  color: var(--reafrio-muted);
}

.cart-page-header__count {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid #c9dff0;
  border-radius: 999px;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
  font-size: 13px;
  font-weight: 750;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, 0.55fr);
  align-items: start;
  gap: 22px;
}

.cart-items-panel,
.cart-summary-card {
  min-width: 0;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.cart-items-panel {
  overflow: hidden;
}

.cart-items-panel__header,
.cart-summary-card__header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--reafrio-line);
  background: linear-gradient(145deg, #fff 0%, #f8fbfe 100%);
}

.cart-items-panel__header h2,
.cart-summary-card__header h2 {
  margin: 0;
  color: var(--reafrio-blue-950);
  font-size: 20px;
}

.cart-items-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.cart-item {
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cart-item:hover {
  border-color: #cfd0f4;
  box-shadow: var(--reafrio-shadow-sm);
  transform: translateY(-1px);
}

.cart-item__form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(235px, 1fr) minmax(335px, 1.05fr) 40px;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 16px;
}

.cart-item__product {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--reafrio-ink);
}

.cart-item__product:hover {
  color: var(--reafrio-blue-800);
}

.cart-item__image {
  display: grid;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, #f7fafc, #eef4f8);
}

.cart-item__image img {
  display: block;
  width: 74px;
  height: 74px;
  padding: 5px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-item__identity {
  display: block;
  min-width: 0;
}

.cart-item__code {
  display: block;
  margin-bottom: 3px;
  color: var(--reafrio-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-item__identity strong {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item__values {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) minmax(76px, 0.72fr) minmax(118px, 1.15fr);
  align-items: end;
  gap: 10px;
}

.cart-item__field,
.cart-item__total {
  min-width: 0;
}

.cart-item__field label,
.cart-item__total span {
  display: block;
  margin: 0 0 6px;
  color: var(--reafrio-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-item__field input {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 8px 10px;
  text-align: center;
}

.cart-item__total {
  min-height: 70px;
  padding: 10px 11px;
  border-radius: 11px;
  background: #f5f8fc;
}

.cart-item__total strong {
  display: block;
  overflow: hidden;
  color: var(--reafrio-blue-800);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item__remove {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #fff1f3;
}

.cart-item__remove::before,
.cart-item__remove::after {
  position: absolute;
  width: 2px;
  height: 18px;
  border-radius: 999px;
  background: var(--reafrio-danger);
  content: "";
}

.cart-item__remove::before {
  transform: rotate(45deg);
}

.cart-item__remove::after {
  transform: rotate(-45deg);
}

.cart-item__remove:hover {
  background: #ffe1e6;
}

.cart-summary-card {
  position: static;
  overflow: visible;
  margin: 0;
}

.cart-summary-card__header {
  padding-inline: 22px;
}

.cart-summary-totals {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 10px;
  margin: 18px 20px 0;
  padding: 14px;
  border: 1px solid #d7e5f0;
  border-radius: 14px;
  background: #f6f9fc;
}

.cart-summary-totals > div {
  min-width: 0;
}

.cart-summary-totals span {
  display: block;
  margin-bottom: 4px;
  color: var(--reafrio-muted);
  font-size: 11px;
  font-weight: 750;
}

.cart-summary-totals strong {
  display: block;
  overflow: hidden;
  color: var(--reafrio-ink);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-summary-totals__amount {
  text-align: right;
}

.cart-summary-totals__amount strong {
  color: var(--reafrio-blue-800);
  font-size: 20px;
}

.cart-summary-fields {
  display: grid;
  gap: 14px;
  padding: 18px 20px 20px;
}

.cart-summary-field {
  min-width: 0;
}

.cart-summary-field label {
  display: block;
  margin: 0 0 6px;
  color: var(--reafrio-blue-950);
  font-size: 12px;
  font-weight: 750;
}

.cart-summary-field input,
.cart-summary-field select,
.cart-summary-field textarea {
  width: 100%;
}

.cart-transport-combobox {
  display: none;
  position: relative;
  width: 100%;
}

.cart-transport-combobox.is-ready {
  display: block;
}

.cart-transport-native.is-enhanced {
  display: none;
}

.cart-transport-combobox__button {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid var(--reafrio-line);
  border-radius: 11px;
  background: var(--reafrio-surface);
  color: var(--reafrio-ink);
  font-weight: 650;
  line-height: 1.25;
  text-align: left;
  box-shadow: none;
}

.cart-transport-combobox__button:hover {
  transform: none;
}

.cart-transport-combobox__button:focus,
.cart-transport-combobox.is-open .cart-transport-combobox__button {
  border-color: var(--reafrio-cyan);
  outline: none;
  box-shadow: var(--reafrio-focus);
}

.cart-transport-combobox__button span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-transport-combobox__caret {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 5px solid var(--reafrio-blue-800);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.cart-transport-combobox.is-open .cart-transport-combobox__caret {
  transform: rotate(180deg);
}

.cart-transport-combobox__panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--reafrio-shadow);
}

.cart-transport-combobox__search {
  width: calc(100% - 16px);
  min-height: 40px;
  margin: 8px;
  padding: 8px 12px;
  border: 1px solid var(--reafrio-line);
  border-radius: 10px;
  color: var(--reafrio-blue-950);
  box-shadow: none;
}

.cart-transport-combobox__search:focus {
  border-color: var(--reafrio-cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 181, 226, 0.12);
}

.cart-transport-combobox__list {
  max-height: 280px;
  margin: 0;
  padding: 0 0 6px;
  overflow-y: auto;
  list-style: none;
}

.cart-transport-option {
  padding: 10px 13px;
  color: var(--reafrio-blue-950);
  cursor: pointer;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cart-transport-option:hover,
.cart-transport-option.is-active,
.cart-transport-option[aria-selected="true"] {
  background: rgba(62, 64, 149, 0.08);
  color: var(--reafrio-blue-700);
}

.cart-transport-option--empty {
  cursor: default;
  color: var(--reafrio-muted);
}

.cart-summary-field textarea {
  min-height: 88px;
}

.cart-summary-card__button {
  width: calc(100% - 40px);
  min-height: 50px;
  margin: 0 20px 20px;
}

.cart-summary-card__button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

/* Order history and tracking */
.orders-main {
  flex: 1 0 auto;
  padding: clamp(26px, 4vw, 46px) 0 52px;
  background: var(--reafrio-canvas);
}

.orders-page-header {
  margin-bottom: 22px;
}

.orders-page-header__eyebrow {
  margin: 0 0 4px;
  color: var(--reafrio-blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.orders-page-header h1 {
  margin: 0 0 6px;
  color: var(--reafrio-blue-950);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.orders-page-header > div > p:last-child {
  margin: 0;
  color: var(--reafrio-muted);
}

.orders-panel {
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.orders-grid {
  display: grid;
  grid-template-columns: 100px 110px minmax(190px, 1.25fr) minmax(170px, 0.95fr) 135px 118px;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.orders-grid--header {
  min-height: 54px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--reafrio-line);
  background: linear-gradient(145deg, #f9fbfd, #f3f7fb);
  color: var(--reafrio-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.order-row + .order-row {
  border-top: 1px solid var(--reafrio-line);
}

.order-row .orders-grid {
  min-height: 82px;
  padding: 14px 18px;
  background: #fff;
  transition: background 160ms ease;
}

.order-row:hover .orders-grid {
  background: #fafdff;
}

.order-cell {
  min-width: 0;
  color: var(--reafrio-ink);
  font-size: 13px;
  line-height: 1.4;
}

.order-cell::before {
  display: none;
}

.order-cell--number strong {
  color: var(--reafrio-blue-800);
  font-size: 16px;
}

.order-cell--client {
  overflow: hidden;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orders-cell--value,
.order-cell--value {
  text-align: right;
}

.order-cell--value strong {
  color: var(--reafrio-blue-800);
  font-size: 14px;
  white-space: nowrap;
}

.orders-cell--action,
.order-cell--action {
  text-align: right;
}

.order-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
  font-size: 11px;
  font-weight: 750;
}

.order-view-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #c9dff0;
  border-radius: 10px;
  background: #fff;
  color: var(--reafrio-blue-800);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.order-view-button:hover {
  border-color: var(--reafrio-cyan);
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-950);
}

/* Director order management */
.director-orders-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.director-orders-summary {
  min-width: 245px;
  padding: 15px 18px;
  border: 1px solid #c9dff0;
  border-radius: 15px;
  background: linear-gradient(145deg, #f8fcff, var(--reafrio-cyan-soft));
  text-align: right;
}

.director-orders-summary span {
  display: block;
  margin-bottom: 3px;
  color: var(--reafrio-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.director-orders-summary strong {
  display: block;
  color: var(--reafrio-blue-800);
  font-size: 22px;
  line-height: 1.2;
  white-space: nowrap;
}

.director-orders-filter {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  padding: 20px 22px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.director-orders-filter__heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.director-orders-filter__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
  font-size: 18px;
}

.director-orders-filter__heading h2 {
  margin: 0 0 3px;
  color: var(--reafrio-blue-950);
  font-size: 17px;
}

.director-orders-filter__heading p {
  margin: 0;
  color: var(--reafrio-muted);
  font-size: 12px;
}

.director-orders-filter__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr)) auto;
  align-items: end;
  gap: 12px;
  margin: 0;
}

.director-orders-filter__field label {
  display: block;
  margin: 0 0 6px;
  color: var(--reafrio-blue-950);
  font-size: 11px;
  font-weight: 750;
}

.director-orders-filter__field .form-control {
  width: 100%;
  min-height: 46px;
  text-align: center;
}

.director-orders-filter__button {
  display: inline-flex;
  min-width: 126px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--reafrio-blue-700);
  background: linear-gradient(135deg, var(--reafrio-blue-700), var(--reafrio-blue-600));
  color: #fff;
  box-shadow: 0 9px 20px rgba(62, 64, 149, 0.16);
}

.director-orders-filter__button:hover {
  border-color: var(--reafrio-blue-800);
  background: linear-gradient(135deg, var(--reafrio-blue-800), var(--reafrio-blue-700));
  color: #fff;
}

.director-orders-panel {
  margin-top: 0;
}

.orders-grid.director-orders-grid {
  grid-template-columns: 110px 105px minmax(190px, 1.15fr) minmax(180px, 1fr) 135px 118px;
}

.orders-grid.internal-orders-grid {
  grid-template-columns: 110px 105px minmax(190px, 1.15fr) minmax(180px, 1fr) 135px minmax(126px, auto);
}

.internal-order-row .order-cell--representative {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-actions-list {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.order-icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #c9dff0;
  border-radius: 10px;
  background: #fff;
  color: var(--reafrio-blue-800);
}

.order-icon-button:hover {
  border-color: var(--reafrio-cyan);
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-950);
}

.order-icon-button i,
.order-view-button i {
  color: currentColor;
}

.order-icon-button .status-default,
.order-view-button .status-default {
  color: #b27614;
}

.order-icon-button .status-printed,
.order-view-button .status-printed,
.order-icon-button .status-imported,
.order-view-button .status-imported {
  color: var(--reafrio-success);
}

.order-icon-button .status-not-imported,
.order-view-button .status-not-imported {
  color: var(--reafrio-blue-700);
}

.order-view-button--icon {
  min-width: 62px;
}

.cart-watch-panel {
  overflow: hidden;
}

.cart-watch-table {
  border-radius: 0;
  box-shadow: none;
}

.cart-watch-table .table td:last-child,
.cart-watch-table .table th:last-child {
  text-align: right;
}

.director-order-number {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.director-order-status {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.director-order-status.status-default {
  background: #fff3df;
  color: #946211;
}

.director-order-status.status-printed {
  background: #eaf8f2;
  color: #126b4a;
}

.director-order-row .order-cell--representative {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.director-order-row .order-view-button .status-default {
  color: #b27614;
}

.director-order-row .order-view-button .status-printed {
  color: var(--reafrio-success);
}

body:not(.theme-light-blue) .date-query-main .container {
  width: min(100% - 32px, 880px);
  max-width: 880px;
}

.date-query-card {
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.date-query-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--reafrio-line);
  background: linear-gradient(145deg, #fff, #f7fafc);
}

.date-query-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
  font-size: 18px;
}

.date-query-card__header h2 {
  margin: 0 0 3px;
  color: var(--reafrio-blue-950);
  font-size: 19px;
}

.date-query-card__header p {
  margin: 0;
  color: var(--reafrio-muted);
  font-size: 13px;
}

.date-query-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 24px;
}

.date-query-field label {
  display: block;
  margin: 0 0 7px;
  color: var(--reafrio-blue-950);
  font-size: 12px;
  font-weight: 750;
}

.date-query-field .form-control {
  width: 100%;
  min-height: 50px;
}

.date-query-actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding-top: 4px;
}

.date-query-actions .button {
  min-width: 210px;
  min-height: 48px;
}

.cart-content-row,
.orders-content-row {
  padding: 24px;
}

.date-filter-row {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.date-filter-row .button-login {
  margin-left: auto;
}

.order-action-column {
  width: 46px;
  min-width: 46px;
  justify-content: center;
  text-align: center;
}

.order-action-column .new-font-table {
  margin: 0;
  text-align: center;
}

.order-success-message {
  margin: 12px 0;
  color: var(--reafrio-success);
  font-weight: 700;
}

.order-spacer {
  height: 5px;
}

.order-document-page td {
  font-size: 16px;
}

.order-document-page .order_details_table {
  background: transparent;
}

.new-layout-container-cart > .row {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.tittle-container-cart,
.eng-title-cart,
.eng-div-cart {
  color: var(--reafrio-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.tittle-container-cart {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0 14px 10px;
}

.eng-title-cart .eng-div-cart {
  display: grid;
  width: calc(100% - 46px);
  height: auto;
  grid-template-columns: 13% 18% 27% 27% 15%;
  align-items: center;
}

.eng-title-cart .requests-first-column,
.eng-title-cart .requests-second-column,
.eng-title-cart .requests-third-column,
.eng-title-cart .requests-fourth-column,
.eng-title-cart .requests-fifth-column {
  width: auto;
  padding: 0 10px;
  float: none;
  white-space: nowrap;
}

.eng-full-line-cart {
  width: 100%;
  height: auto;
  float: none;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.eng-full-line-cart:hover {
  border-color: #c4d9e9;
  box-shadow: var(--reafrio-shadow-sm);
}

.eng-full-line-cart > form {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  margin: 0;
  padding: 10px 14px;
}

.eng-cols-line-cart {
  display: flex;
  width: 100%;
  height: auto;
  min-width: 0;
  flex: 1;
  float: none;
  align-items: center;
}

.eng-product-info {
  display: flex;
  height: auto;
  align-items: center;
  float: none;
}

.eng-product-info {
  width: 42%;
}

.eng-product-info > a {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.eng-full-line-cart > form > .cart-allign-itens-middle:last-child {
  width: 46px;
  min-width: 46px;
  justify-content: center;
}

.cart-allign-itens-middle {
  height: auto;
  min-height: 62px;
  float: none;
}

.line-request-responsive .eng-cols-line-cart {
  display: grid;
  grid-template-columns: 13% 18% 27% 27% 15%;
  gap: 0;
}

.line-request-responsive .col-left-request,
.line-request-responsive .col-right-request {
  display: contents;
}

.line-request-responsive .requests-first-column,
.line-request-responsive .requests-second-column,
.line-request-responsive .requests-third-column,
.line-request-responsive .requests-fourth-column,
.line-request-responsive .requests-fifth-column {
  width: auto;
  min-height: 62px;
  padding: 8px 10px;
  float: none;
}

.line-request-responsive .requests-first-column {
  font-weight: 750;
}

.line-request-responsive .requests-fifth-column {
  justify-content: flex-end;
  text-align: right;
}

.eng-product-info p {
  margin: 0;
  color: var(--reafrio-ink);
  font-weight: 650;
  line-height: 1.45;
}

.new-layout-container-cart a > [class^="ti-"],
.new-layout-container-cart a > [class*=" ti-"] {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--reafrio-line);
  border-radius: 10px;
  background: #fff;
  color: var(--reafrio-blue-800);
  font-size: 16px;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.new-layout-container-cart a:hover > [class^="ti-"],
.new-layout-container-cart a:hover > [class*=" ti-"] {
  border-color: #c8c9f2;
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-900);
  transform: translateY(-1px);
}

.new-layout-container-cart a > .status-default {
  color: var(--reafrio-ink);
}

.new-layout-container-cart a > .status-printed {
  color: var(--reafrio-danger);
}

.new-layout-container-cart a > .status-imported {
  color: var(--reafrio-ink);
}

.new-layout-container-cart a > .status-not-imported {
  color: var(--reafrio-blue-700);
}

.requests-fifth-column {
  color: var(--reafrio-blue-800);
  font-weight: 750;
}

.new-layout-table,
.table-responsive {
  overflow-x: auto;
  border-radius: var(--reafrio-radius);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.table,
table.dataTable,
.new-layout-table table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.table thead th,
table.dataTable thead th,
.new-layout-table thead th {
  padding: 13px 15px;
  border: 0;
  border-bottom: 1px solid var(--reafrio-line);
  background: #f5f8fb;
  color: #5b6880;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.table td,
table.dataTable td,
.new-layout-table td,
.new-layout-container-cart td {
  padding: 14px 15px;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  color: var(--reafrio-text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

.table tbody tr:hover,
table.dataTable tbody tr:hover {
  background: #f8fbfd;
}

.title-data-requests-page {
  margin: 0 0 18px;
  color: var(--reafrio-ink);
  font-size: clamp(24px, 3vw, 34px);
}

.alert {
  padding: 13px 16px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--reafrio-shadow-sm);
}

.alert-danger {
  background: #fff0f2;
  color: #a62d3b;
}

.alert-success {
  background: #eaf8f2;
  color: #126b4a;
}

/* Authentication */
.login-page {
  min-height: 100vh;
  background: #3E4095;
}

.auth-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: clamp(20px, 4vw, 48px);
  background:
    radial-gradient(circle at 14% 14%, rgba(0, 181, 226, 0.18), transparent 30%),
    radial-gradient(circle at 86% 86%, rgba(62, 64, 149, 0.14), transparent 32%),
    linear-gradient(145deg, #edf7fc 0%, #f7f9fc 48%, #eaf1f8 100%);
}

.auth-shell::before,
.auth-shell::after {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 181, 226, 0.16);
  border-radius: 50%;
  content: "";
}

.auth-shell::before {
  top: -230px;
  right: -130px;
}

.auth-shell::after {
  bottom: -260px;
  left: -150px;
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 980px);
  min-height: 590px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(18, 45, 93, 0.17);
}

.auth-brand-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 48px;
  background:
    linear-gradient(145deg, rgba(8, 38, 85, 0.96), rgba(15, 91, 145, 0.93)),
    url("../img/layout/bg.png") center / cover;
  color: #fff;
}

.auth-brand-panel::before,
.auth-brand-panel::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  content: "";
}

.auth-brand-panel::before {
  top: -90px;
  right: -110px;
  width: 320px;
  height: 320px;
}

.auth-brand-panel::after {
  right: 50px;
  bottom: -150px;
  width: 300px;
  height: 300px;
}

.auth-brand-panel__logo {
  position: relative;
  z-index: 1;
  width: min(100%, 230px);
  height: auto;
}

.auth-brand-panel__content {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.auth-eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--reafrio-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.auth-brand-panel h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}

.auth-brand-panel p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.auth-form-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
}

.auth-form-header {
  margin-bottom: 28px;
}

.auth-form-header__logo {
  display: none;
  width: min(100%, 190px);
  height: auto;
  margin-bottom: 28px;
}

.auth-form-header h2 {
  margin: 0 0 8px;
  color: var(--reafrio-blue-950);
  font-size: clamp(27px, 4vw, 34px);
}

.auth-form-header p {
  margin: 0;
  color: var(--reafrio-muted);
  font-size: 14px;
}

.auth-form-panel .login_form {
  margin: 0;
}

.auth-form-panel .form-group {
  position: relative;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.auth-form-panel label {
  display: block;
  margin: 0 0 7px;
  color: var(--reafrio-blue-950);
  font-size: 13px;
  font-weight: 750;
}

.auth-input-wrap {
  position: relative;
}

.auth-input-wrap .new-layout-login-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--reafrio-blue-700);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-50%);
}

.auth-form-panel .form-control {
  width: 100%;
  height: 52px;
  padding: 11px 14px 11px 48px;
  border: 1px solid var(--reafrio-line);
  border-radius: 12px;
  background: #f9fbfd;
}

.auth-form-panel .form-control:focus {
  background: #fff;
}

.auth-alert {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  box-shadow: none;
}

.auth-global-alert {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(calc(100% - 28px), 430px);
  margin: 0;
  transform: translateX(-50%);
}

.auth-form-panel .eng-button-login {
  margin: 8px 0 0;
}

.auth-form-panel .button-login {
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
}

.login-page .auth-shell {
  padding: 20px;
  background: #3E4095;
}

.login-page .auth-shell::before,
.login-page .auth-shell::after {
  display: none;
}

.login-page .auth-layout {
  width: min(100%, 430px);
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid rgba(202, 216, 232, 0.9);
  border-radius: 20px;
  box-shadow: 0 18px 52px rgba(18, 45, 93, 0.12);
}

.login-page .auth-brand-panel {
  display: none;
}

.login-page .auth-form-panel {
  padding: clamp(28px, 6vw, 42px);
}

.login-page .auth-form-header {
  margin-bottom: 24px;
  text-align: center;
}

.login-page .auth-form-header__logo {
  display: block;
  width: min(100%, 210px);
  margin: 0 auto 22px;
}

.login-page .auth-form-header .auth-eyebrow,
.login-page .auth-form-header p {
  display: none;
}

.login-page .auth-form-header h2 {
  margin-bottom: 0;
  font-size: 24px;
}

/* Client/representative selection screens */
body.selection-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(0, 181, 226, 0.14), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(62, 64, 149, 0.12), transparent 36%),
    #f4f7fb;
}

.selection-shell {
  display: grid;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 64px) 20px;
}

.selection-card {
  width: min(100%, 720px);
  box-sizing: border-box;
  overflow: visible;
  border: 1px solid rgba(185, 198, 215, 0.75);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 45, 93, 0.14);
}

.selection-card--wide {
  width: min(100%, 920px);
}

.selection-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px 24px;
  border-bottom: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg) var(--reafrio-radius-lg) 0 0;
  background: linear-gradient(145deg, #fff 0%, #f7fbff 100%);
}

.selection-card__header > div {
  min-width: 0;
}

.selection-card__eyebrow {
  margin: 0 0 5px;
  color: var(--reafrio-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.selection-card__header h1 {
  margin: 0 0 8px;
  color: var(--reafrio-blue-950);
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
}

.selection-card__header p:last-child {
  margin: 0;
  color: var(--reafrio-muted);
}

.selection-card__header > .btn {
  flex: 0 0 auto;
  margin-top: 4px;
  white-space: nowrap;
}

.selection-card__content {
  padding: 28px 32px 32px;
}

.selection-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

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

.selection-field {
  min-width: 0;
  position: relative;
}

.selection-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--reafrio-blue-950);
  font-size: 13px;
  font-weight: 700;
}

.selection-field > .selectpicker,
.selection-field > .bootstrap-select {
  width: 100% !important;
}

.selection-field .bootstrap-select {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  position: relative;
}

.selection-field .bootstrap-select.open,
.selection-field .bootstrap-select.show {
  z-index: 30;
}

.selection-field .bootstrap-select > .dropdown-toggle {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--reafrio-line);
  border-radius: 12px;
  background: #fff;
  color: var(--reafrio-blue-950);
  box-shadow: none;
}

.selection-field .bootstrap-select > .dropdown-toggle:focus,
.selection-field .bootstrap-select.open > .dropdown-toggle,
.selection-field .bootstrap-select.show > .dropdown-toggle {
  border-color: var(--reafrio-cyan);
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 181, 226, 0.15);
}

.selection-field .bootstrap-select.open > .dropdown-menu,
.selection-field .bootstrap-select.show > .dropdown-menu {
  display: block;
}

.selection-field .bootstrap-select > .dropdown-menu {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: 12px;
  box-shadow: var(--reafrio-shadow);
}

.selection-field .bootstrap-select .dropdown-menu.inner {
  display: block;
  width: 100%;
  max-width: none;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.selection-field .bootstrap-select .bs-searchbox {
  padding: 8px;
}

.selection-field .bootstrap-select .bs-searchbox input {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--reafrio-line);
  border-radius: 10px;
  color: var(--reafrio-blue-950);
  box-shadow: none;
}

.selection-field .bootstrap-select .bs-searchbox input:focus {
  border-color: var(--reafrio-cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 181, 226, 0.12);
}

.selection-field .bootstrap-select .dropdown-menu.inner li {
  list-style: none;
}

.selection-field .bootstrap-select .dropdown-menu.inner li a {
  display: block;
  padding: 10px 14px;
  color: var(--reafrio-blue-950);
  cursor: pointer;
  text-decoration: none;
  white-space: normal;
}

.selection-field .bootstrap-select .dropdown-menu.inner li a:hover,
.selection-field .bootstrap-select .dropdown-menu.inner li.active a,
.selection-field .bootstrap-select .dropdown-menu.inner li.selected a {
  background: rgba(62, 64, 149, 0.08);
  color: var(--reafrio-blue-700);
}

.selection-field .bootstrap-select .filter-option {
  display: block;
  max-width: calc(100% - 20px);
  min-width: 0;
  overflow: hidden;
  padding-right: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selection-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--reafrio-line);
}

.selection-card__actions .btn {
  min-width: 170px;
}

.btn-success,
.btn-info {
  border-color: var(--reafrio-blue-700);
  background: linear-gradient(135deg, var(--reafrio-blue-700), var(--reafrio-blue-600));
  color: #fff;
  box-shadow: 0 8px 18px rgba(62, 64, 149, 0.2);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  border-color: var(--reafrio-blue-900);
  background: linear-gradient(135deg, var(--reafrio-blue-900), var(--reafrio-blue-700));
  color: #fff;
  box-shadow: 0 11px 24px rgba(62, 64, 149, 0.26);
}

.btn-secondary {
  border-color: var(--reafrio-line);
  background: #fff;
  color: var(--reafrio-text);
}

/* Profile and period forms */
.new-container-date {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.new-container-date label {
  margin-bottom: 6px;
  color: var(--reafrio-ink);
  font-size: 13px;
  font-weight: 650;
}

body.profile-page {
  min-height: 100vh;
  background: var(--reafrio-canvas);
}

.profile-main {
  min-height: calc(100vh - 78px);
  padding: clamp(24px, 4vw, 48px) 20px;
}

.profile-card {
  width: min(100%, 880px);
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.profile-card__header {
  padding: 28px 30px 24px;
  border-bottom: 1px solid var(--reafrio-line);
  background: linear-gradient(145deg, #fff 0%, #f7fbff 100%);
}

.profile-card__eyebrow {
  margin: 0 0 5px;
  color: var(--reafrio-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-card__header h1 {
  margin: 0 0 8px;
  color: var(--reafrio-blue-950);
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
}

.profile-card__header p:last-child {
  margin: 0;
  color: var(--reafrio-muted);
}

.profile-form {
  margin: 0;
  padding: 28px 30px 30px;
}

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

.profile-field {
  min-width: 0;
}

.profile-field--full {
  grid-column: 1 / -1;
}

.profile-field label {
  display: block;
  margin: 0 0 7px;
  color: var(--reafrio-blue-950);
  font-size: 13px;
  font-weight: 700;
}

.profile-field .form-control {
  width: 100%;
  min-height: 48px;
}

.profile-field .form-control:disabled {
  background: #f2f5f8;
  color: #6d7890;
  cursor: not-allowed;
  opacity: 1;
}

.profile-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--reafrio-line);
}

.profile-form__actions .btn {
  min-width: 180px;
}

.confirmation-card {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius);
  background: #fff;
}

.confirmation-card .billing-title {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--reafrio-line);
  font-size: 18px;
}

.order_details_table {
  width: 100%;
  margin-top: 22px;
}

.order-document-page {
  min-height: 100vh;
  background: var(--reafrio-canvas);
}

.order-document-main {
  flex: 1 0 auto;
  padding: clamp(24px, 4vw, 44px) 0 48px;
  background: var(--reafrio-canvas);
}

.order-document-shell {
  max-width: 1180px;
}

.order-document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
  padding: 22px 24px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: linear-gradient(145deg, #fff, #f6fafd);
  box-shadow: var(--reafrio-shadow-sm);
}

.order-document-header img {
  width: min(100%, 210px);
  height: auto;
}

.order-document-header > div {
  text-align: right;
}

.order-document-header p {
  margin: 0 0 3px;
  color: var(--reafrio-blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-document-header h1 {
  max-width: 600px;
  margin: 0;
  color: var(--reafrio-blue-950);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}

.cart-document-main .order-document-header {
  min-height: 112px;
  padding: 18px 24px;
}

.cart-document-main .order-document-header img {
  width: min(100%, 190px);
}

.cart-document-main .order-document-header h1 {
  max-width: 640px;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.order-overview-grid {
  margin-right: -8px;
  margin-left: -8px;
}

.order-overview-column {
  padding: 8px;
}

.order-document-main .confirmation-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--reafrio-radius-lg);
  box-shadow: var(--reafrio-shadow-sm);
}

.order-document-main .confirmation-card .billing-title {
  margin: 0;
  padding: 17px 20px;
  border-bottom: 1px solid var(--reafrio-line);
  background: linear-gradient(145deg, #fff, #f7fafc);
  color: var(--reafrio-blue-950);
  font-size: 17px;
}

.order-document-main .confirmation-card table {
  margin: 0;
}

.order-document-main .confirmation-card th,
.order-document-main .confirmation-card td {
  padding: 10px 20px;
  border-bottom: 1px solid #edf2f6;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.order-document-main .confirmation-card tr:last-child th,
.order-document-main .confirmation-card tr:last-child td {
  border-bottom: 0;
}

.order-document-main .confirmation-card th,
.order-document-main .confirmation-card td:first-child {
  width: 37%;
  color: var(--reafrio-muted);
  font-weight: 700;
}

.order-document-main .confirmation-card td:last-child {
  color: var(--reafrio-ink);
  font-weight: 650;
}

.order-document-main .order_details_table {
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius-lg);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.order-document-main .order_details_table > h2 {
  margin: 0;
  padding: 19px 22px 16px;
  border-bottom: 1px solid var(--reafrio-line);
  color: var(--reafrio-blue-950);
  font-size: 19px;
}

.order-document-main .table-responsive {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.order-document-main .table {
  margin: 0;
}

.order-document-main .table th {
  padding: 12px 16px;
  background: #f5f8fb;
  color: var(--reafrio-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-document-main .table td {
  padding: 13px 16px;
  font-size: 12px;
  vertical-align: middle;
}

.order-document-main .table h4 {
  margin: 0;
  color: var(--reafrio-blue-800);
  font-size: 14px;
}

.order-document-main .table p,
.order-document-main .table h5 {
  margin: 0;
  color: var(--reafrio-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.order-document-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: min(100% - 30px, 1180px);
  margin: 20px auto 0;
}

.order-document-actions .btn {
  min-width: 170px;
  min-height: 46px;
}

.order-success-message {
  margin-right: auto;
  padding: 11px 14px;
  border-radius: 10px;
  background: #eaf8f2;
}

/* Standalone customer registration */
body.client-registration {
  min-height: 100vh;
  padding: 30px 0 48px;
  background:
    radial-gradient(circle at 14% 12%, rgba(53, 185, 232, 0.18), transparent 30%),
    linear-gradient(145deg, #eef7fc, #f4f7fb);
}

body.client-registration #bg {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
}

body.client-registration #kingbox {
  width: 100%;
  max-width: none;
  flex: 0 0 100%;
  margin: 0;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--reafrio-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(18, 45, 93, 0.14);
}

body.client-registration #kingbox > form {
  margin: 0;
}

body.client-registration #kingbox h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 4vw, 34px);
}

body.client-registration .registration-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--reafrio-line);
}

body.client-registration .registration-header p {
  margin: 0 0 4px;
  color: var(--reafrio-blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.client-registration .registration-header h3 {
  margin: 0 0 6px;
  color: var(--reafrio-blue-950);
}

body.client-registration .registration-header span {
  color: var(--reafrio-muted);
  font-size: 13px;
}

body.client-registration .box1,
body.client-registration .box2,
body.client-registration .box3 {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius);
  background: #f9fbfd;
}

body.client-registration .box1 h5,
body.client-registration .box2 h5,
body.client-registration .box3 h5 {
  margin: 0 0 17px;
  color: var(--reafrio-blue-950);
  font-size: 16px;
}

body.client-registration .form-group.row {
  row-gap: 16px;
  margin-bottom: 16px;
}

body.client-registration .form-group.row:last-child {
  margin-bottom: 0;
}

body.client-registration input,
body.client-registration select,
body.client-registration textarea {
  min-height: 48px;
  border-color: var(--reafrio-line);
  border-radius: 10px;
  background: #fff;
}

body.client-registration label {
  margin: 0 0 6px;
  color: var(--reafrio-ink);
  font-size: 13px;
  font-weight: 650;
}

body.client-registration .registration-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--reafrio-line);
}

body.client-registration .registration-actions .btn {
  min-width: 150px;
  min-height: 46px;
}

/* Footer */
.new-eng-footer {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(202, 216, 232, 0.78);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(18, 45, 93, 0.06);
  backdrop-filter: blur(14px);
}

.site-footer {
  width: 100%;
  flex: 0 0 auto;
  margin-top: auto;
  background: transparent;
}

.new-container-footer {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.eng-entity-footer {
  margin-right: auto;
  color: var(--reafrio-muted);
  font-size: 13px;
}

.eng-icons-footer {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  border: 1px solid var(--reafrio-line);
  border-radius: 10px;
  background: #fff;
}

.eng-icons-footer:hover {
  border-color: #c8c9f2;
  background: var(--reafrio-cyan-soft);
}

.eng-icons-footer img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.8;
}

/* Administration area (AdminBSB) */
body.theme-light-blue {
  display: block;
  background: var(--reafrio-canvas);
  color: var(--reafrio-text);
}

body.theme-light-blue > .navbar,
body.theme-light-blue .navbar:not(.header_area .navbar) {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  width: 100%;
  min-height: 68px;
  height: 68px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--reafrio-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 22px rgba(18, 45, 93, 0.08);
}

body.theme-light-blue .admin-topbar .container-fluid {
  width: 100%;
  padding-right: 22px;
  padding-left: 22px;
}

body.theme-light-blue .admin-topbar .navbar-header {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 0;
  padding: 0;
}

body.theme-light-blue .admin-topbar .navbar-toggle,
body.theme-light-blue .admin-topbar .bars {
  display: none;
}

body.theme-light-blue .navbar-brand {
  display: flex;
  min-width: 0;
  height: auto;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: var(--reafrio-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  white-space: nowrap;
}

body.theme-light-blue .navbar-brand img {
  width: auto;
  height: 42px;
}

body.theme-light-blue .navbar-brand span {
  overflow: hidden;
  padding-left: 13px;
  border-left: 1px solid var(--reafrio-line);
  text-overflow: ellipsis;
}

body.theme-light-blue .sidebar {
  position: fixed;
  top: 68px;
  left: 0;
  z-index: 1000 !important;
  width: 300px;
  height: calc(100vh - 68px);
  border: 0;
  border-right: 1px solid var(--reafrio-line);
  background: #fff;
  box-shadow: 8px 0 24px rgba(18, 45, 93, 0.045);
}

body.theme-light-blue .sidebar .menu {
  height: calc(100vh - 136px);
  padding-top: 4px;
}

body.theme-light-blue .sidebar .menu .list {
  padding: 12px 10px;
}

body.theme-light-blue .sidebar .menu .list li {
  margin-bottom: 3px;
}

body.theme-light-blue .sidebar .menu .list a {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 10px;
  color: #435069;
}

body.theme-light-blue .sidebar .menu .list a .material-icons {
  width: 24px;
  flex: 0 0 24px;
  margin: 0 !important;
  text-align: center;
}

body.theme-light-blue .sidebar .menu .list a span {
  margin: 0 !important;
}

body.theme-light-blue .sidebar .menu .list a:hover,
body.theme-light-blue .sidebar .menu .list li.active > a {
  background: var(--reafrio-cyan-soft);
  color: var(--reafrio-blue-800);
}

body.theme-light-blue .sidebar .menu .list .material-icons {
  color: var(--reafrio-blue-700);
}

body.theme-light-blue .sidebar .menu .list span,
body.theme-light-blue .sidebar .menu .list font {
  color: inherit !important;
}

body.theme-light-blue .sidebar .legal {
  border-top: 1px solid var(--reafrio-line);
  color: var(--reafrio-muted);
}

body.theme-light-blue section.content {
  width: auto;
  min-height: calc(100vh - 68px);
  margin: 68px 24px 32px 324px;
  padding-top: 24px;
}

body.theme-light-blue.admin-home-page section.content {
  display: grid;
  max-width: none;
  gap: 18px;
  align-items: start;
}

.admin-page-header {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

.admin-page-header p {
  margin: 0 0 4px;
  color: var(--reafrio-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-page-header h1 {
  margin: 0;
  color: var(--reafrio-blue-950);
  font-size: 26px;
  line-height: 1.2;
}

body.theme-light-blue .card,
body.theme-light-blue .info-box,
body.theme-light-blue .info-box-2,
body.theme-light-blue .info-box-3,
body.theme-light-blue .info-box-4 {
  overflow: hidden;
  border: 1px solid var(--reafrio-line);
  border-radius: var(--reafrio-radius);
  background: #fff;
  box-shadow: var(--reafrio-shadow-sm);
}

body.theme-light-blue .card .header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--reafrio-line);
  background: #fff;
}

body.theme-light-blue .card .body {
  padding: 20px;
}

body.theme-light-blue .btn-primary,
body.theme-light-blue .btn-info,
body.theme-light-blue .btn-success,
body.theme-light-blue .bg-light-blue {
  border-color: var(--reafrio-blue-700) !important;
  background: var(--reafrio-blue-700) !important;
  color: #fff;
}

body.theme-light-blue .btn-primary:hover,
body.theme-light-blue .btn-primary:focus,
body.theme-light-blue .btn-primary:active,
body.theme-light-blue .btn-info:hover,
body.theme-light-blue .btn-info:focus,
body.theme-light-blue .btn-info:active,
body.theme-light-blue .btn-success:hover,
body.theme-light-blue .btn-success:focus,
body.theme-light-blue .btn-success:active {
  border-color: var(--reafrio-blue-900) !important;
  background: var(--reafrio-blue-900) !important;
  color: #fff;
}

body.theme-light-blue .form-control {
  border: 1px solid var(--reafrio-line);
  border-radius: 10px;
  padding: 9px 12px;
}

body.theme-light-blue .form-line {
  border: 0;
}

body.theme-light-blue .dataTables_wrapper .dataTables_filter input,
body.theme-light-blue .dataTables_wrapper .dataTables_length select {
  min-height: 40px;
}

body.theme-light-blue.admin-search-page table {
  font-size: 13px;
}

.admin-home-content {
  max-width: none;
}

.admin-home-brand {
  display: grid;
  min-height: calc(100vh - 240px);
  place-items: center;
}

.admin-home-brand img {
  width: min(100%, 420px);
}

/* Responsiveness */
@media (max-width: 1199px) {
  .orders-grid {
    grid-template-columns: 82px 100px minmax(160px, 1.15fr) minmax(145px, 0.9fr) 125px 108px;
    gap: 10px;
  }

  .header_area .navbar-brand {
    margin-right: 0;
  }

  .header_area .navbar .container {
    gap: 10px;
  }

  .header_area .navbar-brand img {
    height: 46px;
  }

  .header_area .navbar-expand-lg {
    flex-wrap: wrap;
  }

  .header_area .navbar-expand-lg .navbar-toggler {
    display: block;
  }

  .header_area .navbar-expand-lg .navbar-collapse {
    display: none !important;
    flex-basis: 100%;
  }

  .header_area .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }

  .header_area .navbar-expand-lg .navbar-collapse.collapsing {
    display: block !important;
  }

  .header_area .navbar-expand-lg .navbar-nav {
    flex-direction: column;
  }

  .header_area .navbar-collapse {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--reafrio-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--reafrio-shadow);
  }

  .header_area .navbar .nav .nav-item {
    width: 100%;
    margin: 0;
  }

  .header_area .navbar .nav .nav-item .nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
  }

  .header_area .navbar .nav .nav-item.submenu ul {
    position: static;
    min-width: 0;
    margin: 5px 0 8px;
    border: 1px solid #e7eef6;
    border-radius: 13px;
    background: #f6f9fc;
    box-shadow: none;
    transform: none;
  }

  .header_area .nav-shop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(44px, max-content));
    justify-content: start;
    gap: 9px;
    width: 100%;
    margin: 10px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--reafrio-line);
  }

  .header_area .nav-shop .button-header {
    min-width: 108px;
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary-card {
    position: static;
  }

  .cart-summary-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-summary-field:nth-child(5),
  .cart-summary-field:nth-child(6) {
    grid-column: 1 / -1;
  }

  .new-layout-col-responsive {
    width: 33.3333%;
  }
}

@media (max-width: 991px) {
  .director-orders-filter {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .director-orders-filter__form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  }

  .director-order-row .order-cell--representative {
    white-space: normal;
  }

  .internal-order-row .order-cell--representative {
    white-space: normal;
  }

  .order-actions-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .orders-panel {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .orders-grid--header {
    display: none;
  }

  .order-row {
    overflow: hidden;
    border: 1px solid var(--reafrio-line);
    border-radius: var(--reafrio-radius);
    background: #fff;
    box-shadow: var(--reafrio-shadow-sm);
  }

  .order-row + .order-row {
    border-top: 1px solid var(--reafrio-line);
  }

  .order-row .orders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 8px 16px;
  }

  .order-cell {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f6;
  }

  .order-cell:nth-child(odd) {
    padding-right: 16px;
  }

  .order-cell:nth-child(even) {
    padding-left: 16px;
    border-left: 1px solid #edf2f6;
  }

  .order-cell::before {
    display: block;
    flex: 0 0 auto;
    color: var(--reafrio-muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }

  .order-cell--client {
    white-space: normal;
  }

  .order-cell--action {
    justify-content: flex-end;
    border-bottom: 0;
  }

  .orders-cell--value,
  .order-cell--value,
  .orders-cell--action,
  .order-cell--action {
    text-align: left;
  }

  .auth-layout {
    width: min(100%, 480px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-brand-panel {
    display: none;
  }

  .auth-form-header__logo {
    display: block;
  }

  .header_area .navbar {
    min-height: 66px;
  }

  .header_area .navbar-brand img {
    height: 42px;
  }

  .header_area .navbar .nav-shop {
    padding-bottom: 0;
  }

  .new-layout-col-responsive {
    width: 50%;
  }

  .product-detail-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 24px;
  }

  .product-detail-media {
    min-height: 340px;
  }

  .product-detail-media img {
    height: 310px;
    max-height: 310px;
  }

  body.theme-light-blue section.content {
    min-height: calc(100vh - 68px);
    margin: 68px 12px 24px;
    padding-top: 16px;
  }

  body.theme-light-blue .admin-topbar .navbar-header {
    padding: 0;
  }

  body.theme-light-blue .admin-topbar .bars {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    margin: 0 4px 0 0;
    border: 1px solid var(--reafrio-line);
    border-radius: 10px;
    color: var(--reafrio-blue-800);
  }

  body.theme-light-blue .admin-topbar .bars::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    content: "\E5D2";
    font-family: "Material Icons";
    font-size: 24px;
  }

  body.theme-light-blue .admin-topbar .navbar-brand {
    min-width: 0;
    margin: 0;
  }

  body.theme-light-blue .admin-topbar .navbar-brand img {
    height: 36px;
  }

  body.theme-light-blue .admin-topbar .navbar-brand span {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.theme-light-blue .sidebar {
    z-index: 1001 !important;
    top: 68px;
    height: calc(100vh - 68px);
    margin-left: 0;
    transform: translateX(-105%);
  }

  body.theme-light-blue.overlay-open .sidebar,
  body.theme-light-blue .sidebar.open {
    transform: translateX(0);
  }

  .admin-page-header {
    min-height: 66px;
    padding: 16px 18px;
  }

  .admin-page-header h1 {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .director-orders-header {
    align-items: stretch;
    flex-direction: column;
  }

  .director-orders-summary {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .director-orders-filter {
    padding: 18px;
  }

  .director-orders-filter__form {
    grid-template-columns: minmax(0, 1fr);
  }

  .director-orders-filter__button {
    width: 100%;
  }

  .order-document-main {
    padding: 18px 0 34px;
  }

  .order-document-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 19px;
  }

  .order-document-header img {
    width: min(100%, 180px);
  }

  .order-document-header > div {
    text-align: left;
  }

  .cart-document-main .order-document-header {
    min-height: auto;
  }

  .cart-document-main .order-document-header h1 {
    max-width: none;
    font-size: clamp(18px, 5vw, 23px);
  }

  .order-document-main .confirmation-card th,
  .order-document-main .confirmation-card td {
    padding: 9px 14px;
  }

  .order-document-main .confirmation-card th,
  .order-document-main .confirmation-card td:first-child {
    width: 40%;
  }

  .order-document-main .order_details_table > h2 {
    padding: 17px 16px 14px;
  }

  .order-document-main .table {
    min-width: 690px;
  }

  .order-document-actions {
    align-items: stretch;
    flex-direction: column;
    width: calc(100% - 30px);
  }

  .order-document-actions .btn {
    width: 100%;
  }

  .order-success-message {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-margin.new-layout-section,
  .new-layout-section,
  .new-layout-cart {
    padding: 22px 0 34px;
  }

  .cart-main {
    padding: 22px 0 34px;
  }

  .cart-page-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }

  .cart-items-panel__header,
  .cart-summary-card__header {
    padding: 19px 20px 16px;
  }

  .cart-items-list {
    gap: 10px;
    padding: 12px;
  }

  .cart-item__form {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    padding: 15px 52px 15px 15px;
  }

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

  .cart-item__remove {
    position: absolute;
    top: 15px;
    right: 12px;
  }

  .cart-summary-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary-field:nth-child(5),
  .cart-summary-field:nth-child(6) {
    grid-column: auto;
  }

  .new-layout-filter-bar {
    padding: 13px;
  }

  .new-layout-filter-bar .flex-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .new-layout-select-filter-bar,
  .new-layout-filter-bar form {
    width: 100%;
    max-width: none;
  }

  .new-layout-card-product .card-product__img {
    height: 180px;
  }

  .new-layout-card-product .card-img {
    height: 180px;
    max-height: 180px;
  }

  .new-layout-container-cart > .row {
    padding: 15px;
    border-radius: var(--reafrio-radius);
  }

  .tittle-container-cart,
  .eng-title-cart {
    display: none;
  }

  .eng-full-line-cart > form,
  .eng-cols-line-cart {
    align-items: stretch;
    flex-direction: column;
  }

  .eng-product-info > a {
    gap: 12px;
  }

  .eng-full-line-cart > form {
    position: relative;
    gap: 12px;
    padding: 15px 54px 15px 15px;
  }

  .eng-full-line-cart:not(.line-request-responsive) > form > .cart-allign-itens-middle:last-child {
    position: absolute;
    top: 14px;
    right: 10px;
    width: 40px !important;
    min-width: 40px;
    min-height: 40px;
  }

  .eng-cols-line-cart,
  .eng-product-info,
  .col-left-cart,
  .col-right-cart,
  .col-left-request,
  .col-right-request {
    width: 100% !important;
  }

  .col-left-request,
  .col-right-request {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .line-request-responsive .cart-allign-itens-middle,
  .requests-first-column,
  .requests-second-column,
  .requests-third-column,
  .requests-fourth-column,
  .requests-fifth-column {
    width: calc(50% - 4px) !important;
    min-height: auto;
    padding: 7px;
  }

  .line-request-responsive .eng-cols-line-cart {
    display: block;
  }

  .line-request-responsive > form {
    padding: 15px;
  }

  .line-request-responsive .col-left-request,
  .line-request-responsive .col-right-request {
    display: grid;
    width: 100% !important;
    grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.4fr);
    gap: 0;
  }

  .line-request-responsive .col-left-request > .requests-first-column {
    grid-column: 1 / -1;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 9px;
    background: #f5f8fb;
  }

  .line-request-responsive .tittle-responsive-request {
    display: flex;
    width: auto !important;
    min-height: 38px;
    align-items: center;
    margin: 0 !important;
    padding: 7px 8px;
    color: var(--reafrio-muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }

  .line-request-responsive .requests-second-column,
  .line-request-responsive .requests-third-column,
  .line-request-responsive .requests-fourth-column,
  .line-request-responsive .requests-fifth-column {
    width: auto !important;
    min-height: 38px;
    justify-content: flex-start;
    padding: 7px 8px;
    text-align: left;
  }

  .line-request-responsive > form > .cart-allign-itens-middle:last-child {
    width: 100% !important;
    min-height: 44px;
    justify-content: flex-end;
  }

  .tittle-responsive-request {
    display: block;
    color: var(--reafrio-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .new-container-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 18px 0 20px;
  }

  .eng-entity-footer {
    width: 100%;
    margin: 0 0 4px;
    text-align: center;
  }

  .new-layout-table,
  .table-responsive {
    -webkit-overflow-scrolling: touch;
  }

  .profile-main {
    min-height: auto;
    padding: 18px 12px 28px;
  }

  .profile-card__header {
    padding: 22px 20px 18px;
  }

  .profile-form {
    padding: 20px;
  }

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

  .profile-field--full {
    grid-column: auto;
  }

  .profile-form__actions {
    margin-top: 22px;
    padding-top: 18px;
  }

  .profile-form__actions .btn {
    width: 100%;
  }

  .selection-shell {
    min-height: auto;
    place-items: start center;
    padding: 16px 10px;
  }

  .selection-card {
    width: 100%;
    max-width: none;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(18, 45, 93, 0.12);
  }

  .selection-card__header {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px 18px;
    border-radius: 18px 18px 0 0;
  }

  .selection-card__header h1 {
    font-size: 24px;
  }

  .selection-card__header p:last-child {
    font-size: 14px;
  }

  .selection-card__header > .btn {
    width: 100%;
    min-height: 42px;
    margin-top: 0;
  }

  .selection-card__content {
    padding: 18px 16px 20px;
  }

  .selection-field,
  .selection-field > .selectpicker,
  .selection-field > .bootstrap-select,
  .selection-field .bootstrap-select,
  .selection-field .bootstrap-select.btn-group,
  .selection-field .bootstrap-select > .dropdown-toggle {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .selection-field .bootstrap-select > .dropdown-toggle {
    display: block;
    min-height: 52px;
    height: auto;
    padding: 10px 34px 10px 12px;
    overflow: hidden;
    text-align: left;
    white-space: normal;
  }

  .selection-field .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 12px;
  }

  .selection-field .bootstrap-select.btn-group .dropdown-toggle .filter-option,
  .selection-field .bootstrap-select .filter-option {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding-right: 0;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .selection-field .bootstrap-select.open,
  .selection-field .bootstrap-select.show {
    z-index: 1;
  }

  .selection-field .bootstrap-select.open > .dropdown-menu,
  .selection-field .bootstrap-select.show > .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    max-height: min(54vh, 360px);
    margin-top: 8px;
    transform: none !important;
  }

  .selection-field .bootstrap-select .dropdown-menu.inner {
    max-height: calc(min(54vh, 360px) - 58px) !important;
    -webkit-overflow-scrolling: touch;
  }

  .selection-field .bootstrap-select .dropdown-menu.inner li a {
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .selection-fields--two {
    grid-template-columns: minmax(0, 1fr);
  }

  .selection-card__actions {
    margin-top: 18px;
    padding-top: 18px;
  }

  .selection-card__actions .btn {
    width: 100%;
  }

  body.client-registration .box1,
  body.client-registration .box2,
  body.client-registration .box3 {
    padding: 15px;
  }

  body.client-registration .registration-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  body.client-registration .registration-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .header_area .navbar {
    min-height: 62px;
    padding: 7px 0;
  }

  .header_area .navbar .container {
    width: min(100% - 20px, 1180px);
  }

  .header_area .navbar-brand img {
    height: 38px;
    max-width: 185px;
  }

  .navbar-toggler {
    width: 42px;
    min-height: 40px;
  }

  .header_area .navbar-collapse {
    max-height: calc(100vh - 76px);
    padding: 10px;
    border-radius: 15px;
  }

  .header_area .navbar .nav .nav-item .nav-link {
    min-height: 46px;
    padding: 11px 12px;
    white-space: normal;
  }

  .header_area .nav-shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header_area .nav-shop li:last-child {
    grid-column: 1 / -1;
  }

  .nav-icon-link,
  .header_area .nav-shop .button-header {
    width: 100%;
  }

  .header_area .nav-shop .button-header {
    min-width: 0;
  }

  .director-order-row .director-order-number {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .date-query-card__header {
    align-items: flex-start;
    padding: 19px 17px 16px;
  }

  .date-query-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    padding: 18px 17px;
  }

  .date-query-actions {
    grid-column: auto;
  }

  .date-query-actions .button {
    width: 100%;
    min-width: 0;
  }

  .orders-main {
    padding: 22px 0 34px;
  }

  .orders-page-header h1 {
    font-size: 30px;
  }

  .order-row .orders-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 6px 14px;
  }

  .order-cell,
  .order-cell:nth-child(odd),
  .order-cell:nth-child(even) {
    padding: 10px 0;
    border-left: 0;
  }

  .order-cell--action {
    justify-content: stretch;
    border-bottom: 0;
  }

  .order-view-button {
    width: 100%;
  }

  .new-layout-col-responsive {
    width: 100%;
  }

  .cart-page-header h1 {
    font-size: 30px;
  }

  .cart-item__image {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .cart-item__image img {
    width: 62px;
    height: 62px;
  }

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

  .cart-item__total {
    display: flex;
    min-height: auto;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
  }

  .cart-item__total span {
    margin: 0;
  }

  .cart-summary-totals {
    margin-inline: 16px;
  }

  .cart-summary-fields {
    padding-inline: 16px;
  }

  .cart-summary-card__button {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .card-product.new-layout-card-product {
    min-height: 0;
  }

  .new-layout-card-product .card-product__img {
    height: 150px;
  }

  .new-layout-card-product .card-img {
    height: 150px;
    max-height: 150px;
    padding: 8px;
  }

  .new-layout-card-body {
    min-height: 112px;
    padding-top: 13px;
  }

  .auth-shell {
    padding: 14px;
  }

  .auth-layout {
    border-radius: 21px;
  }

  .auth-form-panel {
    padding: 30px 22px 26px;
  }

  .auth-form-header {
    margin-bottom: 24px;
  }

  .product-detail-main {
    padding: 18px 0 32px;
  }

  .product-detail-card {
    padding: 15px;
    border-radius: var(--reafrio-radius);
  }

  .product-detail-media {
    min-height: 250px;
  }

  .product-detail-media img {
    height: 230px;
    max-height: 230px;
    padding: 14px;
  }

  .product-detail-content h1 {
    font-size: 24px;
  }

  .product-detail-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-detail-field,
  .product-detail-quantity {
    width: 100%;
    flex-basis: auto;
  }

  .product-detail-actions .button-product-datail {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .eng-links-pagination {
    gap: 4px;
    padding: 5px;
  }

  .link-pagination {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .points-pagination {
    width: 22px;
    height: 38px;
  }
}

@media print {
  body {
    background: #fff;
  }

  .header_area,
  .hidden-on-print,
  .eng-pagination,
  .new-layout-button,
  .button-header {
    display: none !important;
  }

  .new-layout-container-cart > .row,
  .eng-full-line-cart,
  .card,
  .table-responsive {
    border-color: #bbb;
    box-shadow: none;
  }
}
