/*
 * Logaz Auto — modern visual layer for the Redbox OpenCart theme.
 * Loaded after the legacy theme styles so existing extensions keep working.
 */

:root {
  --gbo-blue: #1f5fae;
  --gbo-blue-dark: #123f78;
  --gbo-blue-deep: #0b2748;
  --gbo-blue-soft: #eaf3ff;
  --gbo-green: #70b62c;
  --gbo-green-dark: #55951d;
  --gbo-green-soft: #eef8e5;
  --gbo-ink: #142033;
  --gbo-text: #445063;
  --gbo-muted: #778195;
  --gbo-border: #dfe6ef;
  --gbo-border-strong: #cbd5e2;
  --gbo-surface: #ffffff;
  --gbo-bg: #f4f7fb;
  --gbo-bg-deep: #eaf0f7;
  --gbo-danger: #d94141;
  --gbo-warning: #ec9d24;
  --gbo-success: #31945a;
  --gbo-radius-sm: 8px;
  --gbo-radius: 14px;
  --gbo-radius-lg: 22px;
  --gbo-shadow-sm: 0 6px 20px rgba(18, 43, 75, 0.07);
  --gbo-shadow: 0 16px 40px rgba(18, 43, 75, 0.11);
  --gbo-shadow-lg: 0 28px 70px rgba(8, 30, 56, 0.16);
  --gbo-transition: 180ms ease;
  --gbo-container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--gbo-text);
  background: var(--gbo-bg);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.gbo-menu-open {
  overflow: hidden;
}


body.gbo-menu-open .gbo-site-header {
  z-index: 20000;
}

body > .container,
body > div > .container,
.container {
  width: 100%;
  max-width: var(--gbo-container);
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

a {
  color: var(--gbo-blue);
  text-decoration: none;
  transition: color var(--gbo-transition), background-color var(--gbo-transition), border-color var(--gbo-transition), opacity var(--gbo-transition), transform var(--gbo-transition), box-shadow var(--gbo-transition);
}

a:hover,
a:focus {
  color: var(--gbo-green-dark);
  text-decoration: none;
}

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

button,
[role="button"] {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 95, 174, 0.24);
  outline-offset: 2px;
}

::selection {
  color: #fff;
  background: var(--gbo-blue);
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.box-heading {
  color: var(--gbo-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h1,
.page-title {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.4vw, 46px);
}

h2 {
  margin: 34px 0 18px;
  font-size: clamp(24px, 2.5vw, 34px);
}

h3 {
  margin: 26px 0 14px;
  font-size: 22px;
}

h4 {
  font-size: 17px;
}

p {
  margin: 0 0 18px;
}

ul,
ol {
  padding-left: 22px;
}

hr {
  border: 0;
  border-top: 1px solid var(--gbo-border);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.gbo-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  color: #fff;
  background: var(--gbo-blue-deep);
  border-radius: var(--gbo-radius-sm);
  transform: translateY(-160%);
}

.gbo-skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

/* Bootstrap components, refreshed */
.btn,
button.btn,
input.btn {
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: none;
  transition: transform var(--gbo-transition), box-shadow var(--gbo-transition), background-color var(--gbo-transition), border-color var(--gbo-transition), color var(--gbo-transition);
}

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

.btn-primary,
.button_oc,
.buttons .btn-primary,
#button-cart,
#button-filter,
.simplecheckout-button-right .button,
.simpleregister-button-right .button {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gbo-blue), #2a76c9) !important;
  border-color: var(--gbo-blue) !important;
  box-shadow: 0 8px 22px rgba(31, 95, 174, 0.22) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.button_oc:hover,
#button-cart:hover,
#button-filter:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gbo-blue-dark), var(--gbo-blue)) !important;
  border-color: var(--gbo-blue-dark) !important;
  box-shadow: 0 11px 28px rgba(31, 95, 174, 0.3) !important;
}

.btn-default {
  color: var(--gbo-ink);
  background: #fff;
  border-color: var(--gbo-border-strong);
}

.btn-default:hover,
.btn-default:focus {
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
  border-color: rgba(31, 95, 174, 0.35);
}

.btn-danger {
  color: #fff;
  background: var(--gbo-danger);
  border-color: var(--gbo-danger);
}

.btn-link {
  color: var(--gbo-blue);
  font-weight: 700;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  color: var(--gbo-ink);
  background: #fff;
  border: 1px solid var(--gbo-border-strong);
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  transition: border-color var(--gbo-transition), box-shadow var(--gbo-transition), background-color var(--gbo-transition);
}

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

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--gbo-blue);
  box-shadow: 0 0 0 4px rgba(31, 95, 174, 0.1);
  outline: none;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: #98a2b2;
  opacity: 1;
}

label,
.control-label {
  margin-bottom: 7px;
  color: var(--gbo-ink);
  font-size: 13px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

.form-group.required .control-label::before,
.form-group.required label::before {
  color: var(--gbo-danger);
}

.checkbox label,
.radio label {
  color: var(--gbo-text);
  font-weight: 500;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--gbo-blue);
}

.input-group-addon,
.input-group-btn .btn {
  border-color: var(--gbo-border-strong);
}

.table-responsive {
  margin-bottom: 24px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.table {
  margin-bottom: 0;
  color: var(--gbo-text);
  background: #fff;
}

.table > thead > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 14px 16px;
  vertical-align: middle;
  border-color: var(--gbo-border);
}

.table > thead > tr > th {
  color: var(--gbo-ink);
  background: var(--gbo-bg);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.alert {
  position: relative;
  padding: 15px 46px 15px 18px;
  border: 1px solid transparent;
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
}

.alert-success {
  color: #1f6b3e;
  background: #ebf8f0;
  border-color: #bde6cd;
}

.alert-danger {
  color: #8d2e2e;
  background: #fff0f0;
  border-color: #f0c6c6;
}

.alert-warning {
  color: #80571a;
  background: #fff7e8;
  border-color: #efd7a8;
}

.alert-info {
  color: var(--gbo-blue-dark);
  background: var(--gbo-blue-soft);
  border-color: #c8ddf6;
}

.panel,
.well,
.list-group,
.modal-content {
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
}

.panel-heading,
.modal-header {
  color: var(--gbo-ink);
  background: var(--gbo-bg);
  border-color: var(--gbo-border);
  border-radius: var(--gbo-radius) var(--gbo-radius) 0 0;
}

.panel-title {
  color: var(--gbo-ink);
  font-weight: 800;
}

.modal-content {
  overflow: hidden;
  border: 0;
  box-shadow: var(--gbo-shadow-lg);
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 22px 24px;
}

/* Header */
.gbo-header-sentinel {
  height: 0;
}


/* Bootstrap 3 adds clearfix pseudo-elements to every .container. They must not become flex/grid items. */
.gbo-notice__inner::before,
.gbo-notice__inner::after,
.gbo-topbar__inner::before,
.gbo-topbar__inner::after,
.gbo-header-main__inner::before,
.gbo-header-main__inner::after {
  display: none;
  content: none;
}

.gbo-notice {
  position: relative;
  z-index: 1002;
  color: #fff;
  background: var(--gbo-blue-deep);
  font-size: 13px;
  font-weight: 600;
}

.gbo-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 9px;
  text-align: center;
}

.gbo-notice i {
  color: #9fc4ed;
}

.gbo-site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--gbo-border);
}

.gbo-site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(11, 39, 72, 0.1);
}

.gbo-topbar {
  color: #607087;
  background: #f7f9fc;
  border-bottom: 1px solid #edf1f5;
  font-size: 12px;
}

.gbo-topbar__inner {
  display: flex;
  align-items: center;
  min-height: 36px;
  gap: 28px;
}

.gbo-topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.gbo-topbar__item i {
  color: var(--gbo-blue);
}

.gbo-topbar__item--right {
  margin-left: auto;
  gap: 18px;
}

.gbo-topbar a {
  color: inherit;
}

.gbo-topbar a:hover {
  color: var(--gbo-blue);
}

.gbo-topbar .dropdown-menu {
  min-width: 160px;
  padding: 8px;
  border: 1px solid var(--gbo-border);
  border-radius: 10px;
  box-shadow: var(--gbo-shadow);
}

.gbo-header-main__inner {
  display: grid;
  grid-template-columns: minmax(190px, 245px) minmax(300px, 1fr) minmax(210px, auto) auto;
  align-items: center;
  min-height: 104px;
  gap: 28px;
}

.gbo-brand {
  min-width: 0;
}

.gbo-brand__link {
  display: inline-flex;
  align-items: center;
}

.gbo-brand__image {
  display: block;
  width: auto;
  max-width: 215px;
  max-height: 56px;
  object-fit: contain;
}

.gbo-brand__text,
.gbo-footer-logo > span {
  color: var(--gbo-blue);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.gbo-brand__text span,
.gbo-footer-logo > span span {
  color: var(--gbo-green);
}

.gbo-brand__caption {
  display: block;
  max-width: 230px;
  margin-top: 8px;
  color: var(--gbo-muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.gbo-header-search {
  min-width: 0;
}

.gbo-search {
  display: flex;
  width: 100%;
  padding: 4px;
  background: var(--gbo-bg);
  border: 1px solid var(--gbo-border);
  border-radius: 13px;
  transition: border-color var(--gbo-transition), box-shadow var(--gbo-transition), background-color var(--gbo-transition);
}

.gbo-search:focus-within {
  background: #fff;
  border-color: rgba(31, 95, 174, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 95, 174, 0.08);
}

.gbo-search .form-control {
  min-width: 0;
  height: 46px;
  min-height: 46px;
  padding: 0 14px;
  background: transparent;
  border: 0;
  border-radius: 9px;
  box-shadow: none;
}

.gbo-search .input-group-btn {
  width: auto;
}

.gbo-search .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  padding: 0 18px;
  gap: 8px;
  color: #fff;
  background: var(--gbo-blue);
  border: 0;
  border-radius: 9px;
}

.gbo-search .btn:hover,
.gbo-search .btn:focus {
  color: #fff;
  background: var(--gbo-blue-dark);
  transform: none;
}

/* Legacy Redbox ID selectors are intentionally overridden here. */
#search.gbo-search {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: auto;
  display: flex;
  width: 100%;
  min-width: 0;
  padding: 4px;
  margin: 0;
}

#search.gbo-search .form-control,
#search.gbo-search .input-lg {
  float: none;
  width: 100%;
  height: 46px;
  min-height: 46px;
  padding: 0 14px;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 9px;
  box-shadow: none;
}

#search.gbo-search .input-group-btn {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: flex;
  width: auto;
  line-height: normal;
}

#search.gbo-search .btn,
#search.gbo-search .btn-lg {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 46px;
  min-height: 46px;
  padding: 0 18px;
  margin: 0;
  color: #fff;
  background: var(--gbo-blue);
  border: 0;
  border-radius: 9px;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
}

#search.gbo-search .btn:hover,
#search.gbo-search .btn:focus {
  color: #fff;
  background: var(--gbo-blue-dark);
}

.gbo-header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.gbo-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gbo-ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.gbo-phone:hover {
  color: var(--gbo-blue);
}

.gbo-phone--primary {
  gap: 10px;
}

.gbo-phone--primary span:last-child {
  display: flex;
  flex-direction: column;
}

.gbo-phone--primary small {
  color: var(--gbo-muted);
  font-size: 10px;
  font-weight: 600;
}

.gbo-phone--primary strong {
  color: var(--gbo-ink);
  font-size: 16px;
  font-weight: 800;
}

.gbo-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--gbo-green);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(112, 182, 44, 0.23);
}

.gbo-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.gbo-account {
  position: relative;
}

.gbo-header-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 62px;
  padding: 6px;
  color: var(--gbo-ink);
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.gbo-header-action i {
  margin-bottom: 5px;
  color: var(--gbo-blue);
  font-size: 22px;
}

.gbo-header-action:hover,
.gbo-header-action[aria-expanded="true"] {
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
}

.gbo-account__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1005;
  width: 230px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow);
  transform: translateY(8px);
  transition: opacity var(--gbo-transition), visibility var(--gbo-transition), transform var(--gbo-transition);
}

.gbo-account__menu::before {
  position: absolute;
  top: -7px;
  right: 24px;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  border-top: 1px solid var(--gbo-border);
  border-left: 1px solid var(--gbo-border);
  transform: rotate(45deg);
}

.gbo-account__menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.gbo-account__menu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--gbo-ink);
  border-radius: 8px;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.gbo-account__menu a:hover {
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
}

.gbo-account__menu a i {
  width: 18px;
  color: var(--gbo-blue);
  text-align: center;
}

.gbo-header-cart {
  min-width: 90px;
}

.gbo-cart {
  position: relative;
}

.gbo-cart__toggle {
  display: flex;
  align-items: center;
  width: auto;
  min-width: 82px;
  height: 62px;
  min-height: 62px;
  padding: 6px 10px;
  color: var(--gbo-ink);
  background: transparent;
  border: 0;
  border-radius: 11px;
  gap: 8px;
  text-align: left;
}

.gbo-cart.open .gbo-cart__toggle,
.gbo-cart__toggle:hover,
.gbo-cart__toggle:focus {
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
  box-shadow: none;
  transform: none;
}

.gbo-cart__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--gbo-blue);
  font-size: 21px;
}

.gbo-cart__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.gbo-cart__content small {
  color: var(--gbo-muted);
  font-size: 10px;
  font-weight: 600;
}

.gbo-cart__content strong {
  display: block;
  max-width: 104px;
  overflow: hidden;
  color: var(--gbo-ink);
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gbo-cart__arrow {
  color: var(--gbo-muted);
  font-size: 11px;
}

.gbo-cart__menu {
  right: 0;
  left: auto;
  width: min(440px, calc(100vw - 30px));
  min-width: 360px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-lg);
}

.gbo-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  color: var(--gbo-ink);
  background: var(--gbo-bg);
  border-bottom: 1px solid var(--gbo-border);
}

.gbo-cart__head span {
  color: var(--gbo-muted);
  font-size: 12px;
}

.gbo-cart__products {
  max-height: 330px;
  overflow-y: auto;
}

.gbo-cart__products .table td {
  padding: 12px 8px;
  border-top: 1px solid var(--gbo-border);
}

.gbo-cart__products .table tr:first-child td {
  border-top: 0;
}

.gbo-cart__thumb {
  width: 66px;
}

.gbo-cart__thumb img {
  width: 52px;
  height: 52px;
  padding: 3px;
  object-fit: contain;
  border-color: var(--gbo-border);
  border-radius: 8px;
}

.gbo-cart__name a {
  display: block;
  color: var(--gbo-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.gbo-cart__name small {
  display: block;
  color: var(--gbo-muted);
  font-size: 10px;
}

.gbo-cart__quantity,
.gbo-cart__price {
  color: var(--gbo-ink);
  font-size: 12px;
  white-space: nowrap;
}

.gbo-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 7px;
}

.gbo-icon-button--danger {
  color: var(--gbo-danger);
}

.gbo-icon-button--danger:hover {
  background: #fff0f0;
}

.gbo-cart__totals {
  padding: 12px 20px;
  background: var(--gbo-bg);
  border-top: 1px solid var(--gbo-border);
}

.gbo-cart__totals > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 12px;
}

.gbo-cart__totals strong {
  color: var(--gbo-ink);
}

.gbo-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 20px 20px;
  gap: 10px;
}

.gbo-cart__empty {
  padding: 34px 24px;
  color: var(--gbo-muted);
  text-align: center;
}

.gbo-cart__empty i {
  display: block;
  margin-bottom: 12px;
  color: #b2bdca;
  font-size: 36px;
}

.gbo-cart__empty strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gbo-ink);
}

.gbo-cart__empty p {
  margin: 0;
  font-size: 12px;
}


#cart.gbo-cart {
  position: relative;
  float: none;
  width: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
}

#cart.gbo-cart > .gbo-cart__toggle,
#cart.gbo-cart > .btn.gbo-cart__toggle {
  position: static;
  display: flex;
  align-items: center;
  width: auto;
  min-width: 82px;
  height: 62px;
  min-height: 62px;
  padding: 6px 10px;
  margin: 0;
  color: var(--gbo-ink);
  background: transparent;
  border: 0;
  border-radius: 11px;
  gap: 8px;
  line-height: 1.2;
  text-align: left;
  text-shadow: none;
  box-shadow: none;
}

#cart.gbo-cart.open > .gbo-cart__toggle,
#cart.gbo-cart > .gbo-cart__toggle:hover,
#cart.gbo-cart > .gbo-cart__toggle:focus {
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
}

#cart.gbo-cart .gbo-cart__menu,
#cart.gbo-cart .dropdown-menu.gbo-cart__menu {
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  width: min(440px, calc(100vw - 30px));
  min-width: 360px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: var(--gbo-text);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-lg);
}

/* Navigation and mega menu */
.gbo-navigation-wrap {
  color: #fff;
  background: var(--gbo-blue-deep);
}

.gbo-nav {
  position: relative;
}

.gbo-nav__mobile-toggle,
.gbo-nav__mobile-head,
.gbo-nav__mobile-search,
.gbo-nav__mobile-contacts,
.gbo-nav__backdrop {
  display: none;
}

.gbo-nav__list {
  display: flex;
  align-items: stretch;
  min-height: 54px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gbo-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.gbo-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.gbo-nav__link:hover,
.gbo-nav__link:focus,
.gbo-nav__item.is-submenu-open > .gbo-nav__link {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.gbo-nav__item--catalog {
  margin-right: 8px;
  background: var(--gbo-blue);
}

.gbo-nav__item--catalog:hover,
.gbo-nav__item--catalog.is-submenu-open {
  background: #2874c8;
}

.gbo-nav__link--catalog {
  padding-right: 8px;
  padding-left: 18px;
  font-size: 13px;
}

.gbo-nav__item--accent {
  margin-right: auto;
}

.gbo-nav__item--accent .gbo-nav__link {
  color: #fff;
  background: var(--gbo-green);
}

.gbo-nav__item--accent .gbo-nav__link:hover {
  background: var(--gbo-green-dark);
}

.gbo-nav__submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-height: 54px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gbo-nav__submenu-toggle i {
  transition: transform var(--gbo-transition);
}

.gbo-nav__item.is-submenu-open .gbo-nav__submenu-toggle i {
  transform: rotate(180deg);
}

.gbo-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1004;
  width: min(1120px, calc(100vw - 48px));
  max-height: min(72vh, 680px);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  color: var(--gbo-text);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: 0 0 var(--gbo-radius-lg) var(--gbo-radius-lg);
  box-shadow: var(--gbo-shadow-lg);
  transform: translateY(10px);
  transition: opacity var(--gbo-transition), visibility var(--gbo-transition), transform var(--gbo-transition);
}

.gbo-nav__item--catalog:hover .gbo-mega-menu,
.gbo-nav__item--catalog:focus-within .gbo-mega-menu,
.gbo-nav__item--catalog.is-submenu-open .gbo-mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.gbo-mega-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gbo-bg);
  border-bottom: 1px solid var(--gbo-border);
  gap: 24px;
}

.gbo-mega-menu__head > div {
  display: flex;
  flex-direction: column;
}

.gbo-mega-menu__head span {
  color: var(--gbo-ink);
  font-size: 16px;
  font-weight: 800;
}

.gbo-mega-menu__head small {
  color: var(--gbo-muted);
  font-size: 11px;
}

.gbo-mega-menu__head > a {
  color: var(--gbo-blue);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.gbo-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 22px 24px 28px;
  gap: 26px 24px;
}

.gbo-mega-menu__group {
  min-width: 0;
}

.gbo-mega-menu__title {
  display: block;
  padding-bottom: 9px;
  color: var(--gbo-ink);
  border-bottom: 2px solid var(--gbo-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.gbo-mega-menu__group > ul,
.gbo-mega-menu__group ul {
  padding: 0;
  margin: 9px 0 0;
  list-style: none;
}

.gbo-mega-menu__group li + li {
  margin-top: 5px;
}

.gbo-mega-menu__group li a {
  display: inline-block;
  color: var(--gbo-text);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.gbo-mega-menu__group li a:hover {
  color: var(--gbo-blue);
}

.gbo-mega-menu__level-three {
  display: none;
}

/* Main page shell */
#common-home,
.categorypage,
.productpage,
#product-search,
#product-special,
#product-manufacturer,
#information-information,
#information-contact,
#information-sitemap,
#account-account,
#account-login,
#account-register,
#checkout-cart,
#checkout-checkout,
.simple-content,
.blog_page,
.blog_category_page {
  padding-top: 30px;
  padding-bottom: 58px;
}

#common-home {
  padding-top: 24px;
}

#common-home > .container,
.categorypage > .container,
.productpage > .container,
body > div[id] > .container {
  position: relative;
}

#common-home .content-top,
#common-home .content-bottom {
  margin: 0;
}

#common-home .content-top::before,
#common-home .content-top::after,
#common-home .content-bottom::before,
#common-home .content-bottom::after {
  display: table;
  content: "";
}

#common-home .content-top::after,
#common-home .content-bottom::after {
  clear: both;
}

#common-home #content1,
#common-home #content {
  min-width: 0;
}

#common-home .content-bottom > #content {
  padding-right: 15px;
  padding-left: 15px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 24px;
  color: var(--gbo-muted);
  background: transparent;
  border: 0;
  gap: 6px;
  font-size: 12px;
}

.breadcrumb > li,
.breadcrumb .breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb > li + li::before,
.breadcrumb .breadcrumbs__item + .breadcrumbs__item::before {
  padding: 0 2px 0 0;
  color: #aeb7c4;
  content: "\f105";
  font-family: FontAwesome;
}

.breadcrumb a,
.breadcrumb .breadcrumbs__link {
  color: var(--gbo-muted);
}

.breadcrumb a:hover,
.breadcrumb .breadcrumbs__link:hover {
  color: var(--gbo-blue);
}

#content {
  min-height: 1px;
}

#content > h1,
#content > h2.page-title,
#content > .page-title {
  position: relative;
  padding-bottom: 16px;
}

#content > h1::after,
#content > h2.page-title::after,
#content > .page-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gbo-blue), var(--gbo-green));
  border-radius: 10px;
}

#content > p,
#content > div:not(.row):not(.category_filter):not(.product-layout-wrap):not(.pagination-wrapper):not(.box) {
  max-width: 100%;
}

/* Sidebar */
#column-left,
#column-right {
  position: relative;
}

#column-left .box,
#column-right .box,
.category_module,
.sidebarFilter,
.account,
.information {
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
}

.box .box-heading,
.title-wrapper .box-heading,
.category_module .box-heading,
.sidebarFilter .box-heading,
#column-left .box-heading,
#column-right .box-heading {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 15px 18px;
  margin: 0;
  color: var(--gbo-ink);
  background: var(--gbo-bg);
  border-bottom: 1px solid var(--gbo-border);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.box .box-content,
.category_module .box-content,
.sidebarFilter .filterbox {
  padding: 12px 16px;
}

.box-category,
.treeview-list,
#column-left .box ul,
#column-right .box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box-category > li,
.treeview-list > li {
  border-bottom: 1px solid var(--gbo-border);
}

.box-category > li:last-child,
.treeview-list > li:last-child {
  border-bottom: 0;
}

.box-category a,
.treeview-list a,
#column-left .box-content > ul > li > a,
#column-right .box-content > ul > li > a {
  display: block;
  padding: 10px 4px;
  color: var(--gbo-text);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.box-category a:hover,
.box-category a.active,
.treeview-list a:hover,
.treeview-list a.active {
  color: var(--gbo-blue);
}

.box-category ul,
.treeview-list ul {
  padding: 0 0 8px 14px;
}

.box-category ul li,
.treeview-list ul li {
  border: 0;
}

.sidebarFilter .list-group {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.sidebarFilter .list-group-items + .list-group-items {
  border-top: 1px solid var(--gbo-border);
}

.sidebarFilter .list-group-item {
  padding: 10px 0;
  background: transparent;
  border: 0;
}

.sidebarFilter a.list-group-item {
  color: var(--gbo-ink);
  font-size: 13px;
  font-weight: 800;
}

.sidebarFilter .checkbox {
  margin: 7px 0;
}

.sidebarFilter .checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
}

.sidebarFilter .panel-footer {
  padding: 14px 0 4px;
  background: transparent;
  border: 0;
}

.sidebarFilter #button-filter {
  width: 100%;
}

/* Product sections and carousels */
.box.featured,
.box.latest,
.box.bestseller,
.box.special,
.box.category_tab,
.home-products {
  margin: 30px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.box.featured > .box-heading,
.box.latest > .box-heading,
.box.bestseller > .box-heading,
.box.special > .box-heading,
.box.category_tab > .box-heading,
.home-products > .box-heading {
  min-height: auto;
  padding: 0 0 16px;
  color: var(--gbo-ink);
  background: transparent;
  border: 0;
  font-size: clamp(23px, 2.5vw, 32px);
}

.box.featured > .box-heading::after,
.box.latest > .box-heading::after,
.box.bestseller > .box-heading::after,
.box.special > .box-heading::after,
.home-products > .box-heading::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 58px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gbo-blue), var(--gbo-green));
  border-radius: 10px;
}

.box.featured > .box-content,
.box.latest > .box-content,
.box.bestseller > .box-content,
.box.special > .box-content,
.home-products > .box-content {
  padding: 0;
}

.box-product,
.productbox-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.box-product .product-items,
.box-product .slider-item,
.product-carousel .slider-item {
  padding: 8px;
}

.product-layout-wrap {
  margin-top: 18px;
}

.product-layout-wrap > .row,
#content .product-layout-wrap > .row {
  display: flex;
  flex-wrap: wrap;
}

.product-layout {
  margin-bottom: 20px;
}

.product-layout.product-grid,
.product-layout.product-list {
  transition: width var(--gbo-transition);
}

.product-block,
.product-thumb {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
  transition: border-color var(--gbo-transition), box-shadow var(--gbo-transition), transform var(--gbo-transition);
}

.product-block:hover,
.product-thumb:hover {
  border-color: rgba(31, 95, 174, 0.28);
  box-shadow: var(--gbo-shadow);
  transform: translateY(-4px);
}

.product-block-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.product-block .image,
.product-thumb .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 215px;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  border-bottom: 1px solid var(--gbo-border);
}

.product-block .image > a,
.product-thumb .image > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-block .image img,
.product-thumb .image img {
  width: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 300ms ease, opacity 300ms ease;
}

.product-block:hover .image img.reg-image,
.product-thumb:hover .image img.reg-image,
.product-block:hover .image > a > img:not(.hover-image),
.product-thumb:hover .image > a > img:not(.hover-image) {
  transform: scale(1.035);
}

.product-block .hover-image,
.product-thumb .hover-image {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px) !important;
  height: calc(100% - 40px);
  opacity: 0;
  object-fit: contain;
}

.product-block:hover .hover-image,
.product-thumb:hover .hover-image {
  opacity: 1;
}

.product-block:hover .reg-image,
.product-thumb:hover .reg-image {
  opacity: 0;
}

.saleback {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.saleicon,
.sale {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: #fff;
  background: var(--gbo-danger);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.percentsaving {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  margin-left: 7px;
  color: #fff;
  background: var(--gbo-danger);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

.product-block .caption,
.product-thumb .caption,
.product-details .caption {
  display: flex;
  min-height: 0;
  padding: 17px 18px 18px;
  flex: 1 1 auto;
  flex-direction: column;
}

.product-block .caption h4,
.product-thumb .caption h4,
.product-details .caption h4 {
  min-height: 44px;
  margin: 0 0 11px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.product-block .caption h4 a,
.product-thumb .caption h4 a,
.product-details .caption h4 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gbo-ink);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-block .caption h4 a:hover,
.product-thumb .caption h4 a:hover {
  color: var(--gbo-blue);
}

.product-block .desc,
.product-thumb .desc,
.product-details .desc {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--gbo-muted);
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-block .price,
.product-thumb .price,
.product-details .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  min-height: 31px;
  margin: auto 0 0;
  color: var(--gbo-ink);
  gap: 4px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.price-new,
.special-price {
  color: var(--gbo-danger) !important;
  font-weight: 800;
}

.price-old {
  color: var(--gbo-muted) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: line-through;
}

.price-tax {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: var(--gbo-muted) !important;
  font-size: 9px !important;
  font-weight: 500;
}

.rating {
  display: flex;
  align-items: center;
  height: 22px;
  margin: 9px 0 0;
}

.rating .fa-stack {
  width: 14px;
  height: 14px;
  color: #f5b637;
  font-size: 7px;
  line-height: 14px;
}

.rating .off,
.rating .fa-star-o {
  color: #d9dee6;
}

.product-block .image .button-group,
.product-thumb .image .button-group {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  gap: 6px;
  transform: translateY(8px);
  transition: opacity var(--gbo-transition), visibility var(--gbo-transition), transform var(--gbo-transition);
}

.product-block:hover .image .button-group,
.product-thumb:hover .image .button-group,
.product-block:focus-within .image .button-group,
.product-thumb:focus-within .image .button-group {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.product-block .button-group button,
.product-thumb .button-group button,
.product-block .button-group .quickview a,
.product-thumb .button-group .quickview a,
.product-details .button-group button,
.product-details .button-group .quickview a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  overflow: hidden;
  color: var(--gbo-blue);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(18, 43, 75, 0.12);
  font-size: 0;
  text-indent: 0;
}

.product-block .button-group button:hover,
.product-thumb .button-group button:hover,
.product-block .button-group .quickview a:hover,
.product-thumb .button-group .quickview a:hover,
.product-details .button-group button:hover,
.product-details .button-group .quickview a:hover {
  color: #fff;
  background: var(--gbo-blue);
  border-color: var(--gbo-blue);
}

.product-block .button-group .addtocart,
.product-thumb .button-group .addtocart,
.product-details .button-group .addtocart {
  width: auto;
  min-width: 96px;
  padding: 0 14px;
  color: #fff;
  background: var(--gbo-green);
  border-color: var(--gbo-green);
  font-size: 11px;
  font-weight: 800;
}

.product-block .button-group .addtocart:hover,
.product-thumb .button-group .addtocart:hover,
.product-details .button-group .addtocart:hover {
  background: var(--gbo-green-dark);
  border-color: var(--gbo-green-dark);
}

.product-block .button-group .wishlist::before,
.product-thumb .button-group .wishlist::before {
  content: "\f004";
  font-family: FontAwesome;
  font-size: 14px;
}

.product-block .button-group .compare::before,
.product-thumb .button-group .compare::before {
  content: "\f0ec";
  font-family: FontAwesome;
  font-size: 14px;
}

.product-block .button-group .quickview a::before,
.product-thumb .button-group .quickview a::before {
  content: "\f06e";
  font-family: FontAwesome;
  font-size: 14px;
}

.customNavigation {
  position: absolute;
  top: -56px;
  right: 0;
  display: flex;
  gap: 8px;
}

.customNavigation .prev,
.customNavigation .next,
.owl-buttons > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gbo-ink);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: 10px;
  box-shadow: var(--gbo-shadow-sm);
  cursor: pointer;
}

.customNavigation .prev:hover,
.customNavigation .next:hover,
.owl-buttons > div:hover {
  color: #fff;
  background: var(--gbo-blue);
  border-color: var(--gbo-blue);
}

/* Category toolbar and list view */
.category_filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 72px;
  padding: 12px 14px;
  margin: 0 0 22px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
  gap: 12px;
}

.category_filter::before,
.category_filter::after {
  display: none;
}

.category_filter [class*="col-"] {
  width: auto;
  padding: 0;
  float: none;
}

.category_filter .btn-list-grid {
  margin-right: 4px;
}

.category_filter .btn-group {
  display: flex;
  gap: 6px;
}

.category_filter .grid,
.category_filter .list {
  width: 42px;
  min-height: 42px;
  padding: 0;
}

.category_filter .grid.active,
.category_filter .list.active,
.category_filter .grid:hover,
.category_filter .list:hover {
  color: #fff;
  background: var(--gbo-blue);
  border-color: var(--gbo-blue);
}

.compare-total {
  margin-right: auto;
}

.compare-total a {
  color: var(--gbo-muted);
  font-size: 12px;
  font-weight: 700;
}

.pagination-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 12px;
}

.sort-by-wrapper,
.show-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category_filter label {
  margin: 0;
  color: var(--gbo-muted);
  font-size: 11px;
  white-space: nowrap;
}

.category_filter select.form-control {
  width: auto;
  min-width: 165px;
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.show-wrapper select.form-control {
  min-width: 76px;
}

.product-layout.product-list {
  width: 100%;
}

.product-layout.product-list .product-block-inner {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
}

.product-layout.product-list .image {
  min-height: 230px;
  border-right: 1px solid var(--gbo-border);
  border-bottom: 0;
}

.product-layout.product-list .product-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-layout.product-list .caption {
  padding: 22px 24px;
}

.product-layout.product-list .caption h4 {
  min-height: auto;
  font-size: 18px;
}

.product-layout.product-list .caption h4 a {
  -webkit-line-clamp: 3;
}

.product-layout.product-list .desc {
  display: block;
  max-width: 800px;
  font-size: 12px;
}

.product-layout.product-list .image .button-group {
  display: none;
}

.product-layout.product-list .list-buttoncart {
  display: flex;
  align-items: center;
  padding: 0 24px 22px;
  gap: 10px;
}

.productQuantityinput,
.quantity_table,
#input-quantity {
  width: 70px !important;
  min-height: 42px;
  text-align: center;
}

.addtocartlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: var(--gbo-green);
  border: 0;
  border-radius: 9px;
}

.addtocartlist::before {
  content: "\f07a";
  font-family: FontAwesome;
  font-size: 16px;
}

.addtocartlist:hover {
  background: var(--gbo-green-dark);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 0;
  margin-top: 20px;
  border-top: 1px solid var(--gbo-border);
  gap: 14px;
}

.pagination-wrapper [class*="col-"] {
  width: auto;
  padding: 0;
  float: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.pagination > li > a,
.pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  color: var(--gbo-ink);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: 9px !important;
  font-size: 12px;
  font-weight: 700;
}

.pagination > .active > span,
.pagination > .active > a,
.pagination > li > a:hover {
  color: #fff;
  background: var(--gbo-blue);
  border-color: var(--gbo-blue);
}

.page-result {
  color: var(--gbo-muted);
  font-size: 12px;
}

/* Product detail */
.productpage .row,
#product-product .row {
  margin-right: -12px;
  margin-left: -12px;
}

.productpage .row > [class*="col-"],
#product-product .row > [class*="col-"] {
  padding-right: 12px;
  padding-left: 12px;
}

.product-left,
.product-right,
.product-info,
.product-box {
  min-width: 0;
}

.productpage .product-left,
.productpage .product-right,
#product-product .product-left,
#product-product .product-right {
  margin-bottom: 28px;
}

.productpage .product-left,
#product-product .product-left {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius-lg);
  box-shadow: var(--gbo-shadow-sm);
}

.productpage .product-right,
#product-product .product-right {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius-lg);
  box-shadow: var(--gbo-shadow-sm);
}

.productpage .product-right h1,
#product-product .product-right h1 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.productpage .thumbnails,
#product-product .thumbnails {
  padding: 0;
  margin: 0;
  list-style: none;
}

.productpage .thumbnails .image-additional,
#product-product .thumbnails .image-additional {
  padding: 4px;
}

.productpage .thumbnail,
#product-product .thumbnail {
  padding: 8px;
  border-color: var(--gbo-border);
  border-radius: var(--gbo-radius);
}

.productpage .thumbnail:hover,
#product-product .thumbnail:hover {
  border-color: var(--gbo-blue);
}

.productpage .list-unstyled,
#product-product .list-unstyled {
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

.productpage .list-unstyled li,
#product-product .list-unstyled li {
  padding: 5px 0;
  color: var(--gbo-text);
  font-size: 12px;
}

.productpage .list-unstyled .desc,
#product-product .list-unstyled .desc {
  color: var(--gbo-muted);
  font-weight: 600;
}

.productpage ul.price,
#product-product ul.price {
  padding: 18px 0;
  margin: 18px 0;
  border-top: 1px solid var(--gbo-border);
  border-bottom: 1px solid var(--gbo-border);
}

.productpage ul.price h3,
.productpage ul.price h2,
#product-product ul.price h3,
#product-product ul.price h2 {
  margin: 0;
  font-size: 28px;
}

.product-option {
  margin-top: 22px;
  font-size: 18px;
}

#product .option {
  padding: 14px;
  background: var(--gbo-bg);
  border: 1px solid var(--gbo-border);
  border-radius: 11px;
}

#product .radio label,
#product .checkbox label {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: 9px;
  gap: 9px;
}

#product .radio label:hover,
#product .checkbox label:hover {
  border-color: var(--gbo-blue);
}

#product .cart,
.productpage .cart {
  padding-top: 10px;
}

#product .cart .input-group,
.productpage .cart .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 430px;
  gap: 10px;
}

#button-cart {
  min-height: 50px;
  flex: 1 1 auto;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
}

.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 6px;
  margin: 30px 0 0;
  background: var(--gbo-bg);
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius) var(--gbo-radius) 0 0;
  gap: 4px;
}

.nav-tabs > li {
  margin: 0;
  float: none;
}

.nav-tabs > li > a {
  padding: 11px 16px;
  margin: 0;
  color: var(--gbo-text);
  background: transparent;
  border: 0 !important;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:hover {
  color: var(--gbo-blue);
  background: #fff;
  box-shadow: var(--gbo-shadow-sm);
}

.tab-content {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-top: 0;
  border-radius: 0 0 var(--gbo-radius) var(--gbo-radius);
}

.tab-content ul,
.tab-content ol,
#content .description ul,
#content .description ol {
  padding-left: 20px;
}

.tab-content li,
#content .description li {
  margin-bottom: 7px;
}

/* Cart, checkout and account */
#checkout-cart #content,
#checkout-checkout #content,
.simple-content,
#account-login #content,
#account-register #content,
#account-account #content {
  min-width: 0;
}

#checkout-cart .table-responsive,
.simplecheckout-block,
.simpleregister-block-content,
#account-login .well,
#account-register .form-horizontal,
#account-account .list-group,
.checkout-content,
.checkout-heading + .checkout-content {
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
}

#checkout-cart .table img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
}

#checkout-cart .input-group {
  display: flex;
  min-width: 130px;
}

#checkout-cart .input-group .form-control {
  min-width: 62px;
  border-radius: 9px 0 0 9px;
}

#checkout-cart .input-group-btn {
  display: flex;
  width: auto;
}

#checkout-cart .input-group-btn .btn {
  min-height: 46px;
  padding: 0 13px;
  border-radius: 0;
}

#checkout-cart .input-group-btn .btn:last-child {
  border-radius: 0 9px 9px 0;
}

.checkout-heading,
.simplecheckout-block-heading,
.simpleregister-block-heading {
  min-height: 56px;
  padding: 16px 20px;
  color: var(--gbo-ink);
  background: var(--gbo-bg);
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius) var(--gbo-radius) 0 0;
  font-size: 15px;
  font-weight: 800;
}

.simplecheckout-block {
  margin-bottom: 18px;
  overflow: hidden;
}

.simplecheckout-block-heading {
  border: 0;
  border-bottom: 1px solid var(--gbo-border);
  border-radius: 0;
}

.simplecheckout-block-content,
.simpleregister-block-content,
.checkout-content {
  padding: 20px;
}

.simplecheckout-cart {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}

.simplecheckout-cart td,
.simplecheckout-cart th {
  padding: 11px;
  border-color: var(--gbo-border);
}

.simplecheckout-cart th {
  color: var(--gbo-ink);
  background: var(--gbo-bg);
  font-size: 11px;
  font-weight: 800;
}

.simplecheckout-cart-total {
  padding: 6px 0;
}

.simplecheckout-button-block,
.simpleregister-button-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 0 0;
  gap: 10px;
}

.accordion-toggle {
  color: var(--gbo-ink);
  font-weight: 750;
}

/* Information pages and blog */
#information-information #content,
#information-contact #content,
#information-sitemap #content,
.blog_page #content,
.blog_category_page #content,
#information-reviews #content {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius-lg);
  box-shadow: var(--gbo-shadow-sm);
}

#information-information #content > :last-child,
#information-contact #content > :last-child {
  margin-bottom: 0;
}

#information-information #content img,
.blog_page #content img,
.blog_category_page #content img {
  border-radius: var(--gbo-radius);
}

#information-contact .panel-body {
  padding: 20px;
}

#information-contact .fa {
  color: var(--gbo-blue);
}

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

.blog_grid_holder .blog_item {
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
}

.blog_item .image,
.blog_item .post_hover {
  overflow: hidden;
}

.blog_item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog_item:hover img {
  transform: scale(1.04);
}

.blog_item .summary,
.blog_item .blog_title,
.blog_item .blog_stats {
  padding-right: 18px;
  padding-left: 18px;
}

.blog_item .blog_title {
  margin: 16px 0 8px;
  font-size: 17px;
}

.blog_item .blog_title a {
  color: var(--gbo-ink);
}

.blog_item .summary {
  color: var(--gbo-muted);
  font-size: 12px;
}

.blog_item .blog_stats {
  padding-bottom: 16px;
  color: var(--gbo-muted);
  font-size: 10px;
}

/* Slideshow, banners and carousel */
.slideshow,
.banner,
.owl-carousel {
  overflow: hidden;
  border-radius: var(--gbo-radius-lg);
}

.slideshow img,
.banner img {
  width: 100%;
}

.owl-pagination {
  padding-top: 14px;
}

.owl-page span {
  width: 8px;
  height: 8px;
  background: #bdc7d4;
  border-radius: 50%;
}

.owl-page.active span {
  width: 24px;
  background: var(--gbo-blue);
  border-radius: 10px;
}

/* Footer */
.gbo-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  background: var(--gbo-blue-deep);
}

.gbo-footer-benefits {
  position: relative;
  z-index: 2;
  padding: 0 0 34px;
  color: var(--gbo-text);
  background: var(--gbo-bg);
}

.gbo-footer-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius-lg);
  box-shadow: var(--gbo-shadow);
}

.gbo-benefit {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 116px;
  padding: 20px 22px;
  color: var(--gbo-text);
  gap: 13px;
}

.gbo-benefit + .gbo-benefit {
  border-left: 1px solid var(--gbo-border);
}

.gbo-benefit:hover {
  color: var(--gbo-text);
  background: var(--gbo-blue-soft);
}

.gbo-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
  border-radius: 13px;
  font-size: 20px;
}

.gbo-benefit:hover .gbo-benefit__icon {
  color: #fff;
  background: var(--gbo-blue);
}

.gbo-benefit > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.gbo-benefit strong {
  overflow: hidden;
  color: var(--gbo-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.gbo-benefit small {
  margin-top: 4px;
  color: var(--gbo-muted);
  font-size: 9px;
  line-height: 1.4;
}

.gbo-benefit > .fa-angle-right {
  color: #b5bfca;
}

.gbo-footer-main {
  position: relative;
  overflow: hidden;
  padding: 62px 0 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 95, 174, 0.24), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(112, 182, 44, 0.12), transparent 26%),
    var(--gbo-blue-deep);
}

.gbo-footer-main::before {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.gbo-footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr 1.15fr;
  gap: 34px;
}

.gbo-footer-brand p {
  max-width: 280px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.gbo-footer-logo {
  display: inline-flex;
  color: #fff;
}

.gbo-footer-logo > span {
  color: #8eb8e6;
}

.gbo-footer-address {
  display: flex;
  align-items: flex-start;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.68);
  gap: 10px;
  font-size: 11px;
}

.gbo-footer-address i {
  margin-top: 3px;
  color: var(--gbo-green);
}

.gbo-footer-socials {
  display: flex;
  margin-top: 18px;
  gap: 8px;
}

.gbo-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.gbo-footer-socials a:hover {
  color: #fff;
  background: var(--gbo-blue);
  border-color: var(--gbo-blue);
  transform: translateY(-2px);
}

.gbo-footer-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0 0 17px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: default;
}

.gbo-footer-group__title i {
  display: none;
}

.gbo-footer-group ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gbo-footer-group li + li {
  margin-top: 9px;
}

.gbo-footer-group a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 550;
}

.gbo-footer-group a:hover {
  color: #fff;
  padding-left: 3px;
}

.gbo-footer-contacts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.gbo-footer-contacts__caption {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.gbo-footer-phone {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.gbo-footer-phone:hover {
  color: var(--gbo-green);
}

.gbo-footer-phone--secondary {
  margin-top: 3px;
  font-size: 14px;
}

.gbo-footer-schedule {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.gbo-footer-callback {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  margin-top: 16px;
  color: #fff;
  background: var(--gbo-green);
  border-radius: 9px;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
}

.gbo-footer-callback:hover {
  color: #fff;
  background: var(--gbo-green-dark);
  transform: translateY(-1px);
}

.gbo-footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 20px;
  font-size: 10px;
}

.gbo-metrika {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Floating contact dock */
.gbo-contact-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9990;
}

.gbo-contact-dock__toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background: var(--gbo-green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(63, 117, 20, 0.35);
  font-size: 22px;
  cursor: pointer;
  animation: gbo-contact-pulse 2.8s ease-in-out infinite;
}

.gbo-contact-dock__toggle::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(112, 182, 44, 0.42);
  border-radius: 50%;
}

.gbo-contact-dock__toggle .fa-times {
  display: none;
}

.gbo-contact-dock.is-open .gbo-contact-dock__toggle {
  background: var(--gbo-blue-deep);
  animation: none;
}

.gbo-contact-dock.is-open .gbo-contact-dock__toggle .fa-comments {
  display: none;
}

.gbo-contact-dock.is-open .gbo-contact-dock__toggle .fa-times {
  display: inline-block;
}

.gbo-contact-dock__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 290px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-lg);
  transform: translateY(12px) scale(0.97);
  transform-origin: right bottom;
  transition: opacity var(--gbo-transition), visibility var(--gbo-transition), transform var(--gbo-transition);
}

.gbo-contact-dock.is-open .gbo-contact-dock__panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gbo-contact-dock__title {
  display: block;
  padding: 6px 8px 11px;
  color: var(--gbo-ink);
  border-bottom: 1px solid var(--gbo-border);
  font-size: 13px;
  font-weight: 800;
}

.gbo-contact-dock__panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 7px 8px;
  color: var(--gbo-ink);
  border-radius: 9px;
  gap: 11px;
}

.gbo-contact-dock__panel a:hover {
  color: var(--gbo-blue);
  background: var(--gbo-blue-soft);
}

.gbo-contact-dock__panel a > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: #fff;
  background: var(--gbo-blue);
  border-radius: 10px;
}

.gbo-contact-dock__panel a:nth-of-type(2) > i {
  background: #25d366;
}

.gbo-contact-dock__panel a:nth-of-type(3) > i {
  background: #229ed9;
}

.gbo-contact-dock__panel a > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.gbo-contact-dock__panel strong {
  font-size: 12px;
  font-weight: 800;
}

.gbo-contact-dock__panel small {
  color: var(--gbo-muted);
  font-size: 9px;
}

.gbo-mobile-bar {
  display: none;
}

@keyframes gbo-contact-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

/* Notifications from OpenCart */
.alert.position-fixed,
#notification .alert,
.bootstrap-growl {
  z-index: 10020 !important;
  max-width: min(420px, calc(100vw - 28px));
  border-radius: var(--gbo-radius) !important;
  box-shadow: var(--gbo-shadow-lg) !important;
}

/* Desktop refinements */
@media (min-width: 1280px) {
  .gbo-nav__link {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 1199px) {
  :root {
    --gbo-container: 1140px;
  }

  .gbo-header-main__inner {
    grid-template-columns: 190px minmax(260px, 1fr) 190px auto;
    gap: 18px;
  }

  .gbo-brand__image {
    max-width: 185px;
  }

  .gbo-brand__caption {
    display: none;
  }

  .gbo-phone__icon {
    display: none;
  }

  .gbo-nav__link {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
  }

  .gbo-nav__link--catalog {
    padding-left: 14px;
  }

  .gbo-mega-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gbo-footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
  }

  .gbo-footer-contacts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 12px 24px;
  }

  .gbo-footer-contacts__caption,
  .gbo-footer-schedule,
  .gbo-footer-callback {
    margin: 0;
  }
}

/* Tablet/mobile navigation */
@media (max-width: 991px) {
  body {
    padding-bottom: 0;
  }

  .container,
  body > .container,
  body > div > .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .gbo-topbar {
    display: none;
  }

  .gbo-header-main__inner {
    grid-template-columns: minmax(155px, 1fr) auto auto;
    min-height: 78px;
    gap: 8px;
  }

  .gbo-brand__image {
    max-width: 170px;
    max-height: 48px;
  }

  .gbo-header-search {
    grid-row: 2;
    grid-column: 1 / -1;
    padding-bottom: 14px;
  }

  .gbo-header-contacts {
    display: none;
  }

  .gbo-header-actions {
    grid-column: 2 / 4;
  }

  .gbo-header-action {
    width: 54px;
    height: 52px;
  }

  .gbo-header-action span {
    display: none;
  }

  .gbo-cart__toggle {
    min-width: 54px;
    height: 52px;
    min-height: 52px;
    padding: 5px 8px;
  }

  .gbo-cart__content,
  .gbo-cart__arrow {
    display: none;
  }

  .gbo-navigation-wrap {
    min-height: 50px;
  }

  .gbo-navigation-wrap > .container {
    padding: 0;
  }

  .gbo-nav__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    color: #fff;
    background: var(--gbo-blue-deep);
    border: 0;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
  }

  .gbo-nav__burger {
    display: inline-flex;
    width: 20px;
    flex-direction: column;
    gap: 4px;
  }

  .gbo-nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .gbo-nav__panel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10020;
    display: flex;
    width: min(390px, calc(100vw - 44px));
    overflow-y: auto;
    visibility: hidden;
    flex-direction: column;
    opacity: 0;
    color: var(--gbo-text);
    background: #fff;
    box-shadow: 20px 0 60px rgba(7, 29, 53, 0.22);
    transform: translateX(-105%);
    transition: transform 240ms ease, visibility 240ms ease, opacity 240ms ease;
    -webkit-overflow-scrolling: touch;
  }

  .gbo-nav.is-open .gbo-nav__panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .gbo-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(8, 26, 47, 0.58);
    border: 0;
    transition: opacity 240ms ease, visibility 240ms ease;
  }

  .gbo-nav.is-open .gbo-nav__backdrop {
    visibility: visible;
    opacity: 1;
  }

  .gbo-nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 18px;
    color: #fff;
    background: var(--gbo-blue-deep);
  }

  .gbo-nav__mobile-head strong {
    font-size: 16px;
    font-weight: 800;
  }

  .gbo-nav__mobile-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: 9px;
  }

  .gbo-nav__mobile-search {
    display: none;
  }

  .gbo-nav__list {
    display: block;
    min-height: 0;
    padding: 12px;
    flex: 1 0 auto;
  }

  .gbo-nav__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid var(--gbo-border);
  }

  .gbo-nav__item--catalog,
  .gbo-nav__item--accent {
    margin: 0;
  }

  .gbo-nav__link,
  .gbo-nav__link--catalog,
  .gbo-nav__item--accent .gbo-nav__link {
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 9px;
    color: var(--gbo-ink);
    background: transparent;
    font-size: 13px;
  }

  .gbo-nav__item--accent .gbo-nav__link {
    color: var(--gbo-green-dark);
  }

  .gbo-nav__link:hover,
  .gbo-nav__link:focus,
  .gbo-nav__item--accent .gbo-nav__link:hover {
    color: var(--gbo-blue);
    background: var(--gbo-blue-soft);
  }

  .gbo-nav__submenu-toggle {
    width: 48px;
    min-height: 52px;
    color: var(--gbo-blue);
  }

  .gbo-mega-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    width: auto;
    max-height: none;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .gbo-nav__item--catalog:hover .gbo-mega-menu,
  .gbo-nav__item--catalog:focus-within .gbo-mega-menu {
    display: none;
  }

  .gbo-nav__item--catalog.is-submenu-open .gbo-mega-menu {
    display: block;
  }

  .gbo-mega-menu__head {
    display: none;
  }

  .gbo-mega-menu__grid {
    display: block;
    padding: 4px 0 12px 16px;
  }

  .gbo-mega-menu__group {
    padding: 10px 8px;
    border-top: 1px solid var(--gbo-border);
  }

  .gbo-mega-menu__title {
    padding: 0;
    border: 0;
    font-size: 12px;
  }

  .gbo-mega-menu__group > ul {
    margin-top: 7px;
  }

  .gbo-mega-menu__group li a {
    font-size: 11px;
  }

  .gbo-nav__mobile-contacts {
    display: grid;
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
    background: var(--gbo-bg);
    border-top: 1px solid var(--gbo-border);
    gap: 8px;
  }

  .gbo-nav__mobile-contacts a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: var(--gbo-ink);
    background: #fff;
    border: 1px solid var(--gbo-border);
    border-radius: 10px;
    gap: 10px;
    font-size: 12px;
    font-weight: 750;
  }

  .gbo-nav__mobile-contacts a:last-child {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
  }

  .gbo-mega-menu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gbo-footer-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gbo-benefit:nth-child(3) {
    border-left: 0;
  }

  .gbo-benefit:nth-child(n + 3) {
    border-top: 1px solid var(--gbo-border);
  }

  .gbo-footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .gbo-footer-brand {
    grid-row: span 2;
  }

  .gbo-footer-contacts {
    grid-column: 2 / -1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 20px;
  }

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

  .product-block .image .button-group,
  .product-thumb .image .button-group {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .product-block:hover,
  .product-thumb:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 14px;
  }

  .container,
  body > .container,
  body > div > .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .gbo-notice__inner {
    min-height: 42px;
    justify-content: flex-start;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: left;
  }

  .gbo-header-main__inner {
    grid-template-columns: minmax(130px, 1fr) auto;
    min-height: 68px;
  }

  .gbo-brand__image {
    max-width: 150px;
    max-height: 42px;
  }

  .gbo-brand__text {
    font-size: 22px;
  }

  .gbo-header-actions {
    grid-column: 2;
  }

  .gbo-account {
    display: none;
  }

  .gbo-header-cart {
    min-width: 50px;
  }

  .gbo-cart__menu {
    position: fixed;
    top: 50%;
    right: 14px;
    left: 14px;
    width: auto;
    min-width: 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-50%);
  }

  .gbo-search {
    padding: 3px;
  }

  .gbo-search .form-control {
    height: 42px;
    min-height: 42px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .gbo-search .btn {
    width: 44px;
    height: 42px;
    min-height: 42px;
    padding: 0;
  }


  #search.gbo-search .form-control,
  #search.gbo-search .input-lg {
    height: 42px;
    min-height: 42px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  #search.gbo-search .btn,
  #search.gbo-search .btn-lg {
    width: 44px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 13px;
  }

  #cart.gbo-cart > .gbo-cart__toggle,
  #cart.gbo-cart > .btn.gbo-cart__toggle {
    min-width: 50px;
    height: 52px;
    min-height: 52px;
    padding: 5px 8px;
  }

  #cart.gbo-cart .gbo-cart__menu,
  #cart.gbo-cart .dropdown-menu.gbo-cart__menu {
    position: fixed;
    top: 50%;
    right: 14px;
    left: 14px;
    width: auto;
    min-width: 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-50%);
  }

  .gbo-search__label {
    display: none;
  }

  #common-home,
  .categorypage,
  .productpage,
  #product-search,
  #product-special,
  #product-manufacturer,
  #information-information,
  #information-contact,
  #information-sitemap,
  #account-account,
  #account-login,
  #account-register,
  #checkout-cart,
  #checkout-checkout,
  .simple-content,
  .blog_page,
  .blog_category_page {
    padding-top: 20px;
    padding-bottom: 38px;
  }

  h1,
  .page-title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .breadcrumb {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .category_filter {
    align-items: stretch;
    padding: 10px;
  }

  .category_filter .btn-list-grid,
  .compare-total {
    display: none;
  }

  .pagination-right {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    margin: 0;
  }

  .sort-by-wrapper,
  .show-wrapper {
    display: block;
  }

  .sort-by-wrapper .sort-by,
  .show-wrapper .show {
    display: none;
  }

  .category_filter select.form-control {
    width: 100%;
    min-width: 0;
  }

  .show-wrapper select.form-control {
    width: 78px;
  }

  .product-layout-wrap > .row,
  #content .product-layout-wrap > .row {
    margin-right: -6px;
    margin-left: -6px;
  }

  .product-layout {
    padding-right: 6px;
    padding-left: 6px;
    margin-bottom: 12px;
  }

  .product-layout.product-grid {
    width: 50%;
    float: none;
  }

  .product-block,
  .product-thumb {
    border-radius: 12px;
  }

  .product-block .image,
  .product-thumb .image {
    min-height: 155px;
    padding: 12px;
  }

  .product-block .image img,
  .product-thumb .image img {
    max-height: 150px;
  }

  .product-block .caption,
  .product-thumb .caption,
  .product-details .caption {
    padding: 12px;
  }

  .product-block .caption h4,
  .product-thumb .caption h4,
  .product-details .caption h4 {
    min-height: 52px;
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .product-block .price,
  .product-thumb .price,
  .product-details .price {
    font-size: 15px;
  }

  .price-tax,
  .product-block .desc,
  .product-thumb .desc,
  .rating {
    display: none;
  }

  .product-block .image .button-group,
  .product-thumb .image .button-group {
    right: 7px;
    bottom: 7px;
    left: 7px;
    justify-content: flex-end;
  }

  .product-block .button-group .wishlist,
  .product-thumb .button-group .wishlist,
  .product-block .button-group .compare,
  .product-thumb .button-group .compare,
  .product-block .button-group .quickview,
  .product-thumb .button-group .quickview {
    display: none;
  }

  .product-block .button-group .addtocart,
  .product-thumb .button-group .addtocart {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    font-size: 0;
    border-radius: 10px;
  }

  .product-block .button-group .addtocart::before,
  .product-thumb .button-group .addtocart::before {
    content: "\f07a";
    font-family: FontAwesome;
    font-size: 14px;
  }

  .saleback {
    top: 8px;
    left: 8px;
  }

  .saleicon,
  .sale {
    min-height: 23px;
    padding: 3px 6px;
    font-size: 8px;
  }

  .product-layout.product-list .product-block-inner {
    grid-template-columns: 112px 1fr;
  }

  .product-layout.product-list .image {
    min-height: 155px;
    padding: 10px;
  }

  .product-layout.product-list .caption {
    padding: 13px;
  }

  .product-layout.product-list .caption h4 {
    min-height: 0;
    font-size: 13px;
  }

  .product-layout.product-list .desc {
    display: none;
  }

  .product-layout.product-list .list-buttoncart {
    grid-column: 1 / -1;
    padding: 0 12px 12px;
  }

  .pagination-wrapper {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-result {
    text-align: left !important;
  }

  .productpage .product-left,
  .productpage .product-right,
  #product-product .product-left,
  #product-product .product-right,
  #information-information #content,
  #information-contact #content,
  #information-sitemap #content,
  .blog_page #content,
  .blog_category_page #content,
  #information-reviews #content {
    padding: 16px;
    border-radius: var(--gbo-radius);
  }

  .productpage .product-right h1,
  #product-product .product-right h1 {
    font-size: 23px;
  }

  .nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .nav-tabs > li > a {
    white-space: nowrap;
  }

  .tab-content {
    padding: 17px;
  }

  #checkout-cart .table-responsive {
    border-radius: 11px;
  }

  #checkout-cart .table > thead {
    display: none;
  }

  .simplecheckout-block-content,
  .simpleregister-block-content,
  .checkout-content {
    padding: 15px;
  }

  .blog_grid_holder {
    grid-template-columns: 1fr;
  }

  .gbo-footer-benefits {
    padding-bottom: 24px;
  }

  .gbo-footer-benefits__grid {
    grid-template-columns: 1fr;
    border-radius: var(--gbo-radius);
  }

  .gbo-benefit {
    min-height: 88px;
    padding: 14px;
    border-left: 0 !important;
  }

  .gbo-benefit + .gbo-benefit {
    border-top: 1px solid var(--gbo-border);
  }

  .gbo-benefit__icon {
    width: 42px;
    height: 42px;
  }

  .gbo-footer-main {
    padding: 38px 0 18px;
  }

  .gbo-footer-grid {
    display: block;
  }

  .gbo-footer-brand {
    padding-bottom: 24px;
  }

  .gbo-footer-brand p {
    max-width: none;
  }

  .gbo-footer-group {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .gbo-footer-group__title {
    min-height: 54px;
    margin: 0;
    cursor: pointer;
  }

  .gbo-footer-group__title i {
    display: inline-block;
    transition: transform var(--gbo-transition);
  }

  .gbo-footer-group.is-open .gbo-footer-group__title i {
    transform: rotate(180deg);
  }

  .gbo-footer-group__content {
    display: none;
    padding: 0 0 20px;
  }

  .gbo-footer-group.is-open .gbo-footer-group__content {
    display: block;
  }

  .gbo-footer-contacts {
    display: flex;
    padding: 24px 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .gbo-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
    gap: 5px;
  }

  .gbo-contact-dock {
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .gbo-contact-dock__toggle {
    width: 52px;
    height: 52px;
    font-size: 19px;
  }

  .gbo-contact-dock__panel {
    bottom: 64px;
    width: min(286px, calc(100vw - 28px));
  }

  .gbo-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9985;
    display: grid;
    min-height: calc(60px + env(safe-area-inset-bottom));
    padding: 4px 6px env(safe-area-inset-bottom);
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--gbo-border);
    box-shadow: 0 -8px 28px rgba(11, 39, 72, 0.12);
    backdrop-filter: blur(14px);
  }

  .gbo-mobile-bar a,
  .gbo-mobile-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 4px;
    color: var(--gbo-text);
    background: transparent;
    border: 0;
    border-radius: 9px;
    flex-direction: column;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
  }

  .gbo-mobile-bar i {
    color: var(--gbo-blue);
    font-size: 18px;
  }

  .gbo-mobile-bar a:nth-child(3) i {
    color: #25a85a;
  }

  .gbo-mobile-bar a:hover,
  .gbo-mobile-bar button:hover {
    color: var(--gbo-blue);
    background: var(--gbo-blue-soft);
  }
}

@media (max-width: 479px) {
  .gbo-brand__image {
    max-width: 132px;
  }

  .gbo-header-action,
  .gbo-cart__toggle {
    width: 46px;
    min-width: 46px;
  }

  .gbo-nav__panel {
    width: calc(100vw - 28px);
  }

  .product-layout.product-grid {
    width: 50%;
  }

  .product-block .image,
  .product-thumb .image {
    min-height: 138px;
  }

  .product-block .caption,
  .product-thumb .caption {
    padding: 10px;
  }

  .product-block .caption h4,
  .product-thumb .caption h4 {
    min-height: 49px;
    font-size: 10.5px;
  }

  .product-block .price,
  .product-thumb .price {
    font-size: 14px;
  }

  .category_filter {
    border-radius: 11px;
  }

  .gbo-footer-phone {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Clean category template additions */
.category_thumb {
  display: flex;
  align-items: flex-start;
  padding: 22px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
  gap: 24px;
}

.category_thumb__image {
  width: min(220px, 35%);
  flex: 0 0 auto;
  border-radius: var(--gbo-radius-sm);
}

.category_description {
  min-width: 0;
  color: var(--gbo-text);
}

.category_description > :last-child {
  margin-bottom: 0;
}

.category-refine {
  margin-bottom: 28px;
}

.category_list__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--gbo-bg);
  border-radius: 12px;
}

.category_list__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category_filter .pagination-right,
.category_filter .sort-by-wrapper,
.category_filter .show-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category_filter .pagination-right {
  margin-left: auto;
  flex-wrap: wrap;
  gap: 12px;
}

.category_filter .control-label {
  margin: 0;
  color: var(--gbo-muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.category_filter .sort-by-wrapper .form-control {
  min-width: 210px;
}

.category_filter .show-wrapper .form-control {
  min-width: 82px;
}

.product-details .caption h3 {
  min-height: 44px;
  margin: 0 0 11px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.product-details .caption h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gbo-ink);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gbo-empty-state {
  padding: 50px 24px;
  color: var(--gbo-muted);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
  text-align: center;
}

.gbo-empty-state > i {
  display: block;
  margin-bottom: 14px;
  color: var(--gbo-blue);
  font-size: 36px;
}

@media (max-width: 767px) {
  .category_thumb {
    padding: 16px;
    flex-direction: column;
  }

  .category_thumb__image {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
  }

  .category_filter .pagination-right,
  .category_filter .sort-by-wrapper,
  .category_filter .show-wrapper {
    width: 100%;
  }

  .category_filter .sort-by-wrapper .form-control,
  .category_filter .show-wrapper .form-control {
    width: 100%;
    min-width: 0;
  }

  .category_filter .control-label {
    min-width: 74px;
  }
}

.gbo-topbar__modules,
.gbo-topbar__modules > * {
  display: flex;
  align-items: center;
}

.gbo-topbar__modules ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 12px;
}

#content .category_list {
  padding: 0;
  margin: 0;
}

#content .category_list ul {
  display: grid;
  width: 100%;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

#content .category_list li {
  float: none;
  max-width: none;
  padding: 0;
  margin: 0;
  overflow: visible;
}

#content .category_list li a {
  display: flex;
  height: 100%;
  min-height: 112px;
  padding: 14px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--gbo-ink);
  background: #fff;
  border: 1px solid var(--gbo-border);
  border-radius: var(--gbo-radius);
  box-shadow: var(--gbo-shadow-sm);
  font-size: 12px;
  font-weight: 750;
}

#content .category_list li a:hover,
#content .category_list li a:focus {
  color: var(--gbo-blue);
  background: #fff;
  border-color: rgba(31, 95, 174, 0.35);
  box-shadow: var(--gbo-shadow);
  transform: translateY(-2px);
}

.refine-search {
  margin: 0 0 16px;
  font-size: 22px;
}

@media (max-width: 991px) {
  #content .category_list ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .changed-order-positions #content {
    display: block;
  }

  #content .category_list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  #content .category_list li a {
    min-height: 104px;
    padding: 12px;
  }
}

/* Unified product quantity and add-to-cart controls */
.gbo-product-buy,
.featured-buttoncart.gbo-product-buy,
.latest-buttoncart.gbo-product-buy,
.list-buttoncart.gbo-product-buy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
}

.gbo-product-buy .button-group {
  display: flex;
  margin: 0;
}

.gbo-product-buy .productQuantityinput {
  flex: 0 0 72px;
  width: 72px;
  min-height: 42px;
  margin: 0;
  border: 1px solid var(--gbo-border);
  border-radius: 10px;
  background: #fff;
  color: var(--gbo-ink);
  text-align: center;
  font-weight: 700;
}

.gbo-product-buy .productQuantityinput:focus {
  border-color: var(--gbo-blue);
  box-shadow: 0 0 0 3px rgba(31, 95, 174, 0.12);
  outline: 0;
}

