﻿body {
  font-family: var(--font-family) !important;
  font-weight: 400;
  color: #a1a1aa;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --font-family: "Inter";
}
::selection {
  background: #ff5500;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  letter-spacing: -0.04em;
  font-family: var(--font-family);
}
a {
  color: #000000;
  text-decoration: none;
}

.alert.alert-dismissible a {
  color: white !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover,
a:focus {
  /* color: #ff5500; */
  text-decoration: none;
}
label {
  font-weight: 400;
}
.form-control,
select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
input[type="search"].form-control {
  border: 1px solid #2d2d30;
  box-shadow: none;
  border-radius: 0;
}

.form-control:focus {
  border-color: #ff5500;
  box-shadow: none;
}

.btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 12px;
}
.btn-primary {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  text-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-default {
  background: #1c1c1e;
  border-color: #2d2d30;
  color: #fff;
  text-shadow: none;
}
.btn-default:hover {
  background: #ff5500;
  border-color: #ff5500;
  color: #000;
}
.btn-inverse {
  background: #1c1c1e;
  border-color: #2d2d30;
  text-shadow: none;
}
.container {
  max-width: 1440px;
  width: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.breadcrumb {
  background: transparent;
  border: none;
  padding: 8px 0;
  margin: 24px 0;
}
.breadcrumb > li {
  text-shadow: none;
  color: #a1a1aa;
}
.breadcrumb > li + li:before {
  content: "/";
  color: #2d2d30;
  padding: 0 8px;
}
.breadcrumb > li:after {
  display: none;
}
.breadcrumb a {
  color: black;
  transition: all 0.3s ease;
}
.breadcrumb a:hover {
  color: #ff5500;
}
.alert {
  position: relative;
  display: block;
  border-radius: 0;
  border: 1px solid #2d2d30;
  border-left: 3px solid #ff5500;
  background: #1c1c1e;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  padding: 14px 42px 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.alert i.fa {
  margin-right: 8px;
}
.alert-success {
  border-left-color: #22c55e;
}
.alert-success i.fa {
  color: #22c55e;
}
.alert-danger {
  border-left-color: #ef4444;
}
.alert-danger i.fa {
  color: #ef4444;
}
.alert .close,
.alert.alert-dismissible .close {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  float: none;
  margin: 0;
  padding: 0;
  transform: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  opacity: 0.55;
  text-shadow: none;
}
.alert .close:hover,
.alert.alert-dismissible .close:hover {
  opacity: 1;
  color: #fff;
}

/* Float general success/error notifications (add to cart, wishlist, reviews, etc.) as toast popups */
.alert.alert-dismissible {
  position: fixed;
  top: 100px;
  right: 20px;
  left: auto;
  width: max-content;
  max-width: calc(100% - 40px);
  white-space: nowrap;
  z-index: 9999;
  margin-bottom: 0;
  animation:
    cm-toast-in 0.3s ease,
    cm-toast-out 0.3s ease 4.2s forwards;
}
@keyframes cm-toast-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cm-toast-out {
  to {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
  }
}

/* Keep checkout step validation messages inline, not floating */
#checkout-checkout .alert.alert-dismissible {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: auto;
  max-width: none;
  white-space: normal;
  margin-bottom: 15px;
  animation: cm-toast-in 0.3s ease;
}

#checkout-checkout,
#checkout-checkout #content,
#checkout-checkout .panel-body,
#checkout-checkout .panel-body p,
#checkout-checkout .panel-body label,
#checkout-checkout .panel-body .radio label,
#checkout-checkout .panel-body .checkbox label,
#checkout-checkout .panel-body .control-label,
#checkout-checkout .panel-body a,
#checkout-checkout .panel-heading,
#checkout-checkout .panel-title,
#checkout-checkout h1,
#checkout-checkout h2,
#checkout-checkout h3,
#checkout-checkout h4,
#checkout-checkout .help-block {
  color: #000;
}

div.required .control-label::before {
  content: "* ";
  color: #f00;
  font-weight: bold;
}

#checkout-checkout .text-danger {
  color: #f00;
  margin-top: 5px;
}

#checkout-checkout .has-error .form-control,
#checkout-checkout .has-error .form-control:focus {
  border-color: #f00;
}

#checkout-checkout .table,
#checkout-checkout .table-bordered {
  width: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #d4d4d8;
  border-collapse: collapse;
}

#checkout-checkout .table > thead > tr > th,
#checkout-checkout .table > thead > tr > td,
#checkout-checkout .table > tbody > tr > th,
#checkout-checkout .table > tbody > tr > td,
#checkout-checkout .table > tfoot > tr > th,
#checkout-checkout .table > tfoot > tr > td,
#checkout-checkout .table-bordered > thead > tr > th,
#checkout-checkout .table-bordered > thead > tr > td,
#checkout-checkout .table-bordered > tbody > tr > th,
#checkout-checkout .table-bordered > tbody > tr > td,
#checkout-checkout .table-bordered > tfoot > tr > th,
#checkout-checkout .table-bordered > tfoot > tr > td {
  border: 1px solid #d4d4d8;
  color: #000;
  vertical-align: middle;
}

#checkout-checkout .table > thead > tr > th,
#checkout-checkout .table > thead > tr > td {
  background: #f4f4f5;
  font-weight: 700;
  border-bottom-width: 1px;
}

#checkout-checkout .table > tfoot > tr > td {
  background: #fff;
}

#checkout-checkout .table-hover > tbody > tr:hover > td {
  background: #fafafa;
}

#checkout-cart .cm-cart-items {
  border: 0;
  overflow-x: auto;
}

#checkout-cart .cm-cart-table,
#checkout-cart .cm-cart-totals,
#checkout-cart .table,
#checkout-cart .table-bordered {
  width: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #d4d4d8;
  border-collapse: collapse;
}

#checkout-cart .table > thead > tr > th,
#checkout-cart .table > thead > tr > td,
#checkout-cart .table > tbody > tr > th,
#checkout-cart .table > tbody > tr > td,
#checkout-cart .table > tfoot > tr > th,
#checkout-cart .table > tfoot > tr > td,
#checkout-cart .table-bordered > thead > tr > th,
#checkout-cart .table-bordered > thead > tr > td,
#checkout-cart .table-bordered > tbody > tr > th,
#checkout-cart .table-bordered > tbody > tr > td,
#checkout-cart .table-bordered > tfoot > tr > th,
#checkout-cart .table-bordered > tfoot > tr > td {
  border: 1px solid #d4d4d8;
  color: #000;
  vertical-align: middle;
}

#checkout-cart .cm-cart-table > thead > tr > td {
  background: #f4f4f5;
  font-weight: 700;
  border-bottom-width: 1px;
}

#checkout-cart .cm-cart-totals > tbody > tr > td {
  background: #fff;
}

#checkout-cart .cm-cart-totals > tbody > tr:last-child > td {
  font-weight: 700;
}

#checkout-checkout input.form-control,
#checkout-checkout textarea.form-control {
  color: #000;
}

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

#checkout-checkout input.form-control::-webkit-input-placeholder,
#checkout-checkout textarea.form-control::-webkit-input-placeholder {
  color: #a1a1aa;
}

#checkout-checkout input.form-control::-moz-placeholder,
#checkout-checkout textarea.form-control::-moz-placeholder {
  color: #a1a1aa;
  opacity: 1;
}

#checkout-checkout input.form-control:-ms-input-placeholder,
#checkout-checkout textarea.form-control:-ms-input-placeholder {
  color: #a1a1aa;
}

#checkout-checkout h1 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

#checkout-checkout .panel {
  background: #fff;
  border: 1px solid #d4d4d8;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 12px;
}

#checkout-checkout .panel-heading {
  background: #f4f4f5;
  border-bottom: 1px solid #d4d4d8;
  padding: 14px 18px;
}

#checkout-checkout .panel-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0;
}

#checkout-checkout .panel-title a {
  color: #000;
  display: block;
}

#checkout-checkout .panel-body {
  padding: 18px;
  font-size: 15px;
  line-height: 1.55;
}

#checkout-checkout .panel-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

#checkout-checkout .panel-body p,
#checkout-checkout .panel-body label,
#checkout-checkout .panel-body .radio label,
#checkout-checkout .panel-body .checkbox label,
#checkout-checkout .panel-body .control-label,
#checkout-checkout .panel-body .help-block {
  font-size: 14px;
  line-height: 1.5;
}

#checkout-checkout .panel-body .form-control {
  font-size: 15px;
  min-height: 42px;
}

#checkout-checkout .panel-body .btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
}

#checkout-checkout .cm-confirm-table > thead > tr > td,
#checkout-checkout .cm-confirm-table > tbody > tr > td,
#checkout-checkout .cm-confirm-table > tfoot > tr > td {
  font-size: 14px;
  padding: 12px 10px;
}

#checkout-checkout .cm-confirm-name a {
  font-weight: 700;
}

#checkout-checkout .cm-confirm-name small {
  color: #71717a;
  font-size: 12px;
}

@media (max-width: 767px) {
  .alert.alert-dismissible {
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
    white-space: normal;
  }

  #checkout-checkout.container,
  #checkout-cart.container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  #checkout-checkout > .row,
  #checkout-cart > .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  #checkout-checkout > .row > [class*="col-"],
  #checkout-cart > .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  #checkout-checkout h1,
  #checkout-cart h1 {
    font-size: 26px;
    line-height: 1.15;
    margin: 8px 0 20px;
    padding: 0;
  }

  #checkout-checkout .breadcrumb,
  #checkout-cart .breadcrumb {
    font-size: 12px;
    margin: 8px 0 12px;
    padding: 0;
  }

  #checkout-checkout .panel-heading {
    padding: 14px 16px;
  }

  #checkout-checkout .panel-title {
    font-size: 13px;
    letter-spacing: 0;
  }

  #checkout-checkout .panel-body {
    padding: 16px;
    font-size: 14px;
  }

  #checkout-checkout .panel-body h2 {
    font-size: 17px;
  }

  #checkout-checkout .panel-body p,
  #checkout-checkout .panel-body label,
  #checkout-checkout .panel-body .radio label,
  #checkout-checkout .panel-body .checkbox label,
  #checkout-checkout .panel-body .control-label,
  #checkout-checkout .panel-body .help-block,
  #checkout-checkout .panel-body legend {
    font-size: 13px;
  }

  #checkout-checkout .panel-body .form-control {
    font-size: 16px;
    min-height: 44px;
  }

  #checkout-checkout .panel-body textarea.form-control {
    font-size: 15px;
  }

  #checkout-checkout .panel-body .btn {
    width: 100%;
    font-size: 12px;
    padding: 12px 16px;
  }

  #checkout-checkout .panel-body .buttons .pull-right,
  #checkout-checkout .panel-body .buttons .pull-left {
    float: none !important;
    width: 100%;
  }

  #checkout-checkout .panel-body .buttons .pull-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #checkout-checkout .panel-body fieldset {
    margin-bottom: 20px;
  }

  #checkout-checkout .panel-body legend {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom-color: #d4d4d8;
  }

  #checkout-checkout .cm-confirm-order .table-responsive {
    border: 0;
    margin: 0;
    overflow: visible;
  }

  #checkout-checkout .cm-confirm-table {
    border: 0;
    background: transparent;
  }

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

  #checkout-checkout .cm-confirm-table > tbody,
  #checkout-checkout .cm-confirm-table > tfoot {
    display: block;
    width: 100%;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product {
    display: block;
    width: 100%;
    margin: 0 0 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #d4d4d8;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ececef;
    padding: 10px 0;
    text-align: right !important;
    font-size: 13px;
    line-height: 1.4;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td:first-child {
    padding-top: 0;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td::before {
    content: attr(data-label);
    flex: 0 0 44%;
    max-width: 44%;
    color: #71717a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td.cm-confirm-name {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    text-align: left !important;
    padding-bottom: 10px;
    margin-bottom: 2px;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td.cm-confirm-name::before {
    max-width: none;
    flex: none;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td.cm-confirm-name a {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  #checkout-checkout .cm-confirm-table > tbody > tr.cm-confirm-product > td.cm-confirm-line-total {
    font-weight: 700;
  }

  #checkout-checkout .cm-confirm-table > tfoot {
    margin-top: 4px;
    padding: 4px 0 0;
    border-top: 1px solid #d4d4d8;
  }

  #checkout-checkout .cm-confirm-table > tfoot > tr.cm-confirm-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
    border: 0;
    background: transparent;
  }

  #checkout-checkout .cm-confirm-table > tfoot > tr.cm-confirm-total > td {
    display: block;
    width: auto;
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
  }

  #checkout-checkout .cm-confirm-table > tfoot > tr.cm-confirm-total > td.cm-confirm-total-label {
    text-align: left !important;
  }

  #checkout-checkout .cm-confirm-table > tfoot > tr.cm-confirm-total > td.cm-confirm-total-value {
    text-align: right !important;
    font-weight: 700;
    font-size: 14px;
  }

  #checkout-checkout .cm-confirm-table > tfoot > tr.cm-confirm-total:last-child > td.cm-confirm-total-label,
  #checkout-checkout .cm-confirm-table > tfoot > tr.cm-confirm-total:last-child > td.cm-confirm-total-value {
    font-size: 16px;
  }

  #checkout-cart h1,
  #checkout-cart h2,
  #checkout-cart p,
  #checkout-cart .table,
  #checkout-cart .table td,
  #checkout-cart .table th,
  #checkout-cart .panel-title,
  #checkout-cart .panel-body {
    color: #000;
  }

  #checkout-cart h2 {
    font-size: 18px;
    margin: 24px 0 10px;
  }

  #checkout-cart #content > p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  #checkout-cart .cm-cart-items {
    border: 0;
    margin: 0 0 8px;
    overflow: visible;
  }

  #checkout-cart .cm-cart-table {
    border: 0;
    background: transparent;
    margin-bottom: 0;
  }

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

  #checkout-cart .cm-cart-table > tbody {
    display: block;
    width: 100%;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product {
    display: block;
    width: 100%;
    margin: 0 0 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #d4d4d8;
    color: #000;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ececef;
    padding: 12px 0;
    text-align: right !important;
    color: #000;
    font-size: 14px;
    line-height: 1.45;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td:first-child {
    padding-top: 0;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    max-width: 42%;
    color: #71717a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-image {
    justify-content: flex-start;
    gap: 16px;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-image::before {
    flex: 0 0 auto;
    max-width: none;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-image .img-thumbnail {
    max-width: 88px;
    margin: 0;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-name {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    text-align: left !important;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-name::before {
    flex: none;
    max-width: none;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-name a {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-name small {
    color: #71717a;
    font-size: 12px;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-qty {
    align-items: center;
  }

  #checkout-cart .cm-cart-qty-group {
    max-width: 168px !important;
    width: 168px;
    margin-left: auto;
  }

  #checkout-cart .cm-cart-qty-group .form-control {
    font-size: 16px;
    height: 40px;
    text-align: center;
  }

  #checkout-cart .cm-cart-qty-group .btn {
    height: 40px;
    padding: 0 12px;
  }

  #checkout-cart .cm-cart-table > tbody > tr.cm-cart-product > td.cm-cart-total {
    font-weight: 700;
    font-size: 15px;
  }

  #checkout-cart .panel-group {
    margin-bottom: 20px;
  }

  #checkout-cart .panel {
    background: #fff;
    border: 1px solid #d4d4d8;
    margin-bottom: 10px;
  }

  #checkout-cart .panel-heading {
    padding: 14px 16px;
  }

  #checkout-cart .panel-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  #checkout-cart .panel-body {
    padding: 16px;
  }

  #checkout-cart .cm-cart-totals-row {
    margin-left: 0;
    margin-right: 0;
  }

  #checkout-cart .cm-cart-totals-row > [class*="col-"] {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
  }

  #checkout-cart .cm-cart-totals {
    margin: 8px 0 20px;
    background: #fff;
    border: 1px solid #d4d4d8;
  }

  #checkout-cart .cm-cart-totals > tbody > tr > td {
    padding: 12px 16px;
    font-size: 14px;
    color: #000;
    border-color: #d4d4d8;
  }

  #checkout-cart .cm-cart-totals > tbody > tr:last-child > td {
    font-size: 16px;
    font-weight: 700;
  }

  #checkout-cart .cm-cart-actions {
    margin: 0 0 24px;
  }

  #checkout-cart .cm-cart-actions .pull-left,
  #checkout-cart .cm-cart-actions .pull-right {
    float: none !important;
    width: 100%;
    margin: 0 0 12px;
  }

  #checkout-cart .cm-cart-actions .btn {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 14px 16px;
  }
}
.list-group a {
  background: #121214;
  border: 1px solid #2d2d30;
  color: #a1a1aa;
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  background: #1c1c1e;
  border-color: #ff5500;
  color: #fff;
  text-shadow: none;
}
.panel,
.well,
.thumbnail,
.table,
.table-bordered,
.table-striped > tbody > tr:nth-of-type(odd) {
  /* background: #121214; */
  border-color: #2d2d30;
  color: #a1a1aa;
}

.well h2 {
  color: #fff;
}

.table > thead > tr > th,
.table > tbody > tr > td {
  border-color: #2d2d30;
}
.nav-tabs {
  border-bottom: 1px solid #2d2d30;
}
.nav-tabs > li > a {
  color: #a1a1aa;
  border-radius: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background: #121214;
  border-color: #2d2d30 #2d2d30 transparent;
  color: #fff;
}
.dropdown-menu {
  background: #121214;
  border: 1px solid #2d2d30;
}
.dropdown-menu > li > a {
  color: #fff;
}
.dropdown-menu li > a:hover,
.dropdown-menu > li > a:hover {
  background: #ff5500;
  color: #000;
  background-image: none;
}
#content {
  min-height: 400px;
  padding-top: 8px;
  padding-bottom: 64px;
  color: black;
}

.cm-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  /* padding: 16px; */
  pointer-events: none;
}

.cm-nav-bar {
  pointer-events: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: black;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 24px;
  border: 1px solid #2d2d30;
  flex-wrap: nowrap;
}
.cm-logo {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.cm-logo img {
  max-height: 68px;
}
.cm-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 8px;
}
.cm-nav-actions #cart {
  width: auto !important;
}
.cm-nav-actions #cart > .btn {
  width: auto !important;
}
.cm-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  padding: 4px 8px;
  flex-shrink: 0;
}
#cm-nav-links {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  height: auto !important;
  visibility: visible !important;
  overflow: visible !important;
  padding: 0;
  border: 0;
  margin: 0;
}
#cm-nav-links > .nav.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  float: none;
}
#cm-nav-links > .nav.navbar-nav > li {
  float: none;
  display: inline-block;
}
#cm-nav-links > .nav.navbar-nav > li > a {
  color: #a1a1aa;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: transparent;
  line-height: 1.2;
}
#cm-nav-links > .nav.navbar-nav > li > a:hover,
#cm-nav-links > .nav.navbar-nav > li > a:focus {
  color: #fff;
  background: transparent;
}
#cm-nav-links > .nav.navbar-nav > li.dropdown {
  position: relative;
}
#cm-nav-links > .nav.navbar-nav > li > a.cm-nav-shop,
#cm-nav-links > .nav.navbar-nav > li.open > a.cm-nav-shop {
  display: inline-block;
  background: #fff !important;
  color: #000 !important;
  padding: 6px 14px !important;
  border-radius: 999px;
  line-height: 1.2;
  transition: padding 0.3s;
}
#cm-nav-links > .nav.navbar-nav > li > a.cm-nav-shop:hover,
#cm-nav-links > .nav.navbar-nav > li > a.cm-nav-shop:focus,
#cm-nav-links > .nav.navbar-nav > li.open > a.cm-nav-shop {
  color: #000 !important;
  background: #fff !important;
  padding: 8px 16px !important;
  text-decoration: none;
}
#cm-nav-links > a,
#cm-nav-links .cm-nav-dropdown > a {
  color: #a1a1aa;
  position: relative;
  transition: all 0.3s ease;
}
#cm-nav-links > a:hover,
#cm-nav-links > a.is-active,
#cm-nav-links .cm-nav-dropdown > a:hover,
#cm-nav-links .cm-nav-dropdown > a.is-active {
  color: #fff;
}
.cm-nav-dropdown {
  position: relative;
  display: inline-block;
}
.cm-nav-dropdown-menu {
  width: 100%;
  max-width: fit-content;
  margin-top: 8px;
  padding: 8px 0;
  background: #121214;
  border: 1px solid #2d2d30;
  border-radius: 0;
}
.cm-nav-dropdown-menu .list-unstyled {
  margin: 0;
  padding: 0;
}
.cm-nav-dropdown-menu .list-unstyled > li > a,
.cm-nav-dropdown-menu > .see-all {
  display: block;
  color: #a1a1aa;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.cm-nav-dropdown-menu .list-unstyled > li > a:hover,
.cm-nav-dropdown-menu > .see-all:hover {
  background: #1a1a1c;
  color: #fff;
  text-decoration: none;
}
.cm-nav-dropdown-menu > .see-all {
  border-top: 1px solid #2d2d30;
  margin-top: 4px;
}
.cm-nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cm-nav-tools .pull-left {
  float: none !important;
}
.cm-nav-tools .btn-link,
.cm-nav-tools .btn-link:hover {
  color: #a1a1aa;
  text-shadow: none;
  padding: 0;
}
.cm-lang {
  margin: 0;
  display: inline-block;
}
.cm-lang-toggle {
  background: transparent;
  border: 1px solid #2d2d30;
  color: #a1a1aa;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1.2;
  transition: all 0.3s ease;
}
.cm-lang-toggle:hover,
.cm-lang-toggle:focus,
.open > .cm-lang-toggle {
  color: #fff;
  border-color: #52525b;
  background: transparent;
  outline: 0;
}
.cm-lang-toggle .fa {
  margin-left: 4px;
  font-size: 10px;
}
.cm-lang-menu {
  min-width: 140px;
  margin-top: 8px;
  padding: 8px 0;
  background: #121214;
  border: 1px solid #2d2d30;
  border-radius: 0;
}
.cm-lang-menu > li > button {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  color: #a1a1aa;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 0.16em;
}
.cm-lang-menu > li > button:hover,
.cm-lang-menu > li.active > button {
  background: #1a1a1c;
  color: #fff;
}
.cm-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a1a1aa;
}
.cm-live-dot {
  width: 8px;
  height: 8px;
  background: #ff5500;
  border-radius: 50%;
  animation: cm-pulse 1.4s ease-in-out infinite;
}
.cm-clock {
  font-family: var(--font-family);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes cm-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
#search {
  margin: 0;
  width: 160px;
}
#search .form-control,
#search .input-lg {
  height: 32px;
  padding: 4px 10px;
  font-size: 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #2d2d30;
  border-radius: 0;
  color: #fff;
  box-shadow: none;
}
#search .btn-lg,
#search .btn {
  height: 32px;
  padding: 4px 10px;
  background: transparent;
  border: 0;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
}
#cart {
  margin: 0;
  width: auto;
  position: relative;
}
#cart > .btn {
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  color: #a1a1aa;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#cart > .btn .fa-shopping-cart {
  font-size: 16px;
}
#cart > .btn:hover,
#cart.open > .btn {
  background: transparent;
  border: 0;
  color: #fff;
}
#cart .dropdown-menu,
#cart .cm-cart-menu {
  background: #121214;
  border: 1px solid #2d2d30;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  min-width: 412px;
  max-width: 90vw;
  right: 0 !important;
  left: auto !important;
  padding: 12px;
  margin-top: 12px;
  z-index: 1000;
}
#cart .cm-cart-menu > li {
  list-style: none;
}
#cart .cm-cart-menu .table {
  margin: 0;
  background: transparent;
  color: #a1a1aa;
  font-size: 12px;
}
#cart .cm-cart-menu .table > thead > tr > th,
#cart .cm-cart-menu .table > tbody > tr > th,
#cart .cm-cart-menu .table > tfoot > tr > th,
#cart .cm-cart-menu .table > thead > tr > td,
#cart .cm-cart-menu .table > tbody > tr > td,
#cart .cm-cart-menu .table > tfoot > tr > td {
  border-color: #2d2d30;
  padding: 8px 6px;
  vertical-align: middle;
  background: transparent;
}

#cart .cm-cart-menu .table > tbody > tr > td {
  max-width: 140px;
}

#cart .cm-cart-menu .table-striped > tbody > tr:nth-of-type(odd) {
  background: #1a1a1c;
}
#cart .cm-cart-menu .table-bordered {
  border-color: #2d2d30;
}
#cart .cm-cart-menu a {
  color: #fff;
}
#cart .cm-cart-menu a:hover {
  color: #ff5500;
}
#cart .cm-cart-menu .img-thumbnail {
  background: #1a1a1c;
  border-color: #2d2d30;
  padding: 2px;
}
#cart .cm-cart-menu .text-center {
  color: #a1a1aa;
  margin: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
#cart .cm-cart-menu p.text-right {
  margin: 12px 0 4px;
}
#cart .cm-cart-menu p.text-right a {
  display: inline-block;
  margin-left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
#cart .cm-cart-menu .btn-danger {
  background: transparent;
  border-color: #2d2d30;
  color: #a1a1aa;
}
#cart .cm-cart-menu .btn-danger:hover {
  background: #ff5500;
  border-color: #ff5500;
  color: #000;
}
html {
  scroll-padding-top: 110px;
}
body {
  padding-top: 70px;
}

.cm-main {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.slideshow.swiper-viewport {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #000;
  width: 100%;
  overflow: hidden;
}
.slideshow .swiper-container,
.slideshow .swiper-wrapper,
.slideshow .swiper-slide {
  height: auto !important;
  width: 100%;
}
.slideshow .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.slideshow .swiper-pager,
.slideshow .swiper-pagination {
  display: none;
}
.punch-out {
  color: transparent;
  -webkit-text-stroke: 1px rgb(95, 95, 95);
}
.cm-marquee {
  background: black;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.cm-marquee-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: -webkit-max-content;
  width: max-content;
}
.cm-marquee-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  align-items: center;
}
.cm-marquee-track span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  padding: 0 20px;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cm-section {
  padding: 40px 24px;
}
.cm-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
}
.cm-section h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
  line-height: 1;
}
.cm-underline {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #262629;
}

.cm-underline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.cm-underline:hover {
  color: black;
}

.cm-underline:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.cm-grid {
  display: grid;
  gap: 16px;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cm-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  padding: 0;
}

.cm-card-image {
  display: block;
  border: 1px solid black;
  overflow: hidden;
  width: 100%;
}

.cm-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition:
    filter 0.5s ease,
    transform 0.5s ease;
}

.cm-card:hover .cm-card-image img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.cm-card-body {
  padding: 16px 0 0;
}

.cm-card-body h3 {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0;
}

.cm-card-body h3 a {
  color: #000000;
}

.cm-price {
  color: #262629;
  margin: 0 0 12px;
  font-size: 16px;
}
.cm-price .price-old {
  text-decoration: line-through;
  opacity: 0.5;
  margin-left: 8px;
}
.cm-price .price-new {
  color: #ff5500;
}
.cm-card-body button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000000;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0 0 4px;
  transition: all 0.3s ease;
}
.cm-card-body button:hover {
  color: #ff5500;
  border-color: #ff5500;
}

.cm-voices-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 96px;
}
.cm-voices-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}
.cm-voices-links a {
  border-bottom: 1px solid #000000;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
.cm-voices-links a span {
  transition: transform 0.3s ease;
}
.cm-voices-links a:hover span {
  transform: translateX(8px);
}

.cm-footer {
  background: #121214;
  color: #a1a1aa;
  padding: 96px 24px;
  border-top: 1px solid #2d2d30;
  margin-top: 0;
}
.cm-footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 48px;
}
.cm-footer-brand h2 {
  font-size: clamp(28px, 3vw, 36px);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.cm-footer-brand h2 a {
  color: #fff;
}
.cm-footer-brand .cm-logo {
  display: inline-block;
  margin: 0 0 10px;
}
.cm-footer-brand .cm-logo img {
  max-height: 80px;
  width: auto;
}
.cm-footer-brand p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.cm-footer-col h4 {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #a1a1aa;
  margin: 0 0 16px;
  letter-spacing: 0.08em;
}
.cm-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cm-footer-col li {
  margin-bottom: 8px;
}
.cm-footer-col .dropdown-menu {
  display: block;
  position: static;
  float: none;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.cm-footer-col .dropdown-menu .dropdown-inner {
  display: block;
}
.cm-footer-col a {
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 16px;
}
.cm-footer-col a:hover {
  color: #ff5500;
}
.cm-footer-bottom {
  max-width: 1440px;
  margin: 96px auto 0;
  padding-top: 32px;
  border-top: 1px solid #2d2d30;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.cm-subscribe {
  display: flex;
  width: 100%;
  max-width: 360px;
}
.cm-subscribe input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0 8px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
.cm-subscribe input:focus {
  border-bottom-color: #ff5500;
}
.cm-subscribe button {
  margin-left: 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.cm-subscribe button:hover {
  color: #ff5500;
}

.product-thumb {
  border: 0;
  background: transparent;
  margin-bottom: 24px;
  overflow: hidden;
}
.product-thumb .image {
}
.product-thumb .image img {
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}
.product-thumb:hover .image img {
  filter: grayscale(0);
  opacity: 1;
}
.product-thumb .caption {
  padding: 16px 0 0;
  min-height: 0;
}
.product-thumb h4 {
  font-family: var(--font-family);
  font-size: 16px;
}
.product-thumb h4 a {
  color: #000000;
}
.product-thumb .caption p:not(.price) {
  display: none;
}
.product-thumb .price {
  display: block;
  color: #262629;
  font-size: 14px;
  margin: 0 0 12px;
}
.product-thumb .price-new {
  color: #ff5500;
}
.product-thumb .button-group {
  background: transparent;
  border: 0;
}
.product-list .product-thumb .button-group {
  border: 0;
}
.product-thumb .button-group button {
  background: transparent;
  color: #fff;
  width: auto;
  float: none;
  padding: 0 16px 0 0;
  line-height: 1.4;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.product-thumb .button-group button + button {
  width: auto;
  border: 0;
}
.product-thumb .button-group button:hover {
  background: transparent;
  color: #ff5500;
}
.product-grid .product-thumb .caption {
  min-height: 0;
}

#product-category h2,
#product-search h2,
#product-special h2,
#product-manufacturer h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  color: #000;
}
.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0;
  margin: 0;
  border-radius: 0;
  list-style: none;
}
.pagination > li {
  display: block;
  float: none;
}
.pagination > li > a,
.pagination > li > span {
  float: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin-left: -1px;
  background: #121214;
  border: 1px solid #2d2d30;
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}
.pagination > .active > span,
.pagination > .active > a,
.pagination > li > a:hover,
.pagination > li > a:focus {
  z-index: 2;
  background: #ff5500;
  border-color: #ff5500;
  color: #000;
}

@media (max-width: 1000px) {
  body {
    padding-top: 65px;
  }
  .cm-nav-bar {
    flex-wrap: wrap;
    padding: 8px 16px;
    gap: 0;
  }

  #cm-nav-links > .nav.navbar-nav > li > a.cm-nav-shop:hover {
    padding: 12px 14px !important;
  }
  .cm-logo img {
    max-height: 48px;
  }
  .cm-nav-actions {
    margin-left: auto;
    order: 2;
  }
  .cm-nav-toggle {
    display: block;
  }
  #cart > .btn {
    padding: 6px 8px;
    color: #fff;
  }
  #cart > .btn .fa-shopping-cart {
    font-size: 18px;
  }
  #cart .dropdown-menu,
  #cart .cm-cart-menu {
    min-width: min(412px, calc(100vw - 32px));
    position: fixed;
    top: 64px;
    right: 16px;
    left: auto !important;
    margin-top: 0;
  }
  #cm-nav-links.collapse {
    display: none !important;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 0 8px;
    border-top: 1px solid #2d2d30;
    margin-top: 8px;
  }
  #cm-nav-links.collapse.in {
    display: flex !important;
    text-align: center;
  }
  #cm-nav-links > .nav.navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  #cm-nav-links > .nav.navbar-nav > li {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  #cm-nav-links > .nav.navbar-nav > li > a {
    display: block;
    padding: 12px 0;
  }
  #cm-nav-links > .nav.navbar-nav > li > a.cm-nav-shop,
  #cm-nav-links > .nav.navbar-nav > li.open > a.cm-nav-shop {
    display: block;
    border-radius: 0;
    padding: 12px 14px !important;
    text-align: center;
  }
  #cm-nav-links > a,
  #cm-nav-links .cm-nav-dropdown > a {
    display: block;
    padding: 12px 0;
  }
  #cm-nav-links > .nav.navbar-nav > li.dropdown .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: #1a1a1c;
    text-align: center;
  }
  .cm-nav-tools {
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid #2d2d30;
    margin-top: 4px;
    justify-content: center;
  }

  .cm-lang-menu {
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cm-section {
    padding: 64px 24px;
  }
  .cm-section h2 {
    font-size: 26px;
  }
  .cm-voices-head {
    grid-template-columns: 1fr;
  }
  .cm-footer-grid {
    grid-template-columns: 1fr;
  }
  .cm-footer-bottom {
    flex-direction: column;
  }
  .cm-event-date {
    text-align: left;
  }
  #search {
    width: 100%;
  }
}

#product-product {
  color: #262629;
  padding-bottom: 64px;
}

#product-product .breadcrumb {
  margin: 24px 0 32px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

#product-product .breadcrumb a {
  color: #71717a;
}

#product-product .breadcrumb a:hover {
  color: #000;
}

#product-product #content > .row {
  margin-bottom: 48px;
}

#product-product .thumbnails {
  display: flex;
  gap: 12px;
  margin: 0 0 32px;
}

#product-product .thumb-main {
  position: relative;
  /* flex: 1; */
  min-width: 0;
}

#product-product .thumb-main {
  margin: auto;
}

#product-product .thumb-main a.thumbnail {
  display: block;
  border: 1px solid #e4e4e7;
  border-radius: 0;
  background: #f4f4f5;
  overflow: hidden;
}
#product-product .thumb-main img {
  width: 100%;
  object-fit: cover;
  display: block;
}

#product-product .thumb-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  pointer-events: none;
}
#product-product .thumb-rail {
  order: -1;
  flex: 0 0 88px;
  width: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#product-product .thumb-rail a.thumbnail {
  display: block;
  border: 1px solid #e4e4e7;
  border-radius: 0;
  background: #f4f4f5;
  overflow: hidden;
  height: 110px;
}
#product-product .thumb-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#product-product .thumbnail:hover,
#product-product .thumb-rail a.thumbnail.active {
  border-color: #000;
}
#information-information .cm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 48px;
}
#information-information .cm-gallery-item {
  position: relative;
  display: block;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
#information-information .cm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
#information-information .cm-gallery-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  pointer-events: none;
}
#information-information .cm-gallery-item:hover {
  border-color: #000;
}
#information-information .cm-gallery-item:hover img {
  transform: scale(1.04);
}
#information-information .cm-gallery-item:hover .cm-gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}
#product-product .nav-tabs {
  border-bottom: 1px solid #e4e4e7;
  margin-bottom: 24px;
}
#product-product .nav-tabs > li > a {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #71717a;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 0;
  margin-right: 24px;
}
#product-product .nav-tabs > li > a:hover {
  background: transparent;
  border: 0;
  color: #000;
}
#product-product .nav-tabs > li.active > a,
#product-product .nav-tabs > li.active > a:hover,
#product-product .nav-tabs > li.active > a:focus {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #000;
  color: #000;
}
#product-product .tab-content {
  color: #3f3f46;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
#product-product .table,
#product-product .table-bordered {
  background: transparent;
  border-color: #e4e4e7;
  color: #3f3f46;
}
#product-product .table > thead > tr > th,
#product-product .table > tbody > tr > td {
  border-color: #e4e4e7;
}
#product-product .btn-group {
  margin-bottom: 16px;
}
#product-product .btn-group .btn-default {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e4e4e7;
  background: #fff;
  color: #71717a;
  line-height: 34px;
}
#product-product .btn-group .btn-default:hover {
  border-color: #000;
  background: #fff;
  color: #000;
}
#product-product h1 {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  color: #000;
}
#product-product
  #content
  > .row
  > [class*="col-"]
  > .list-unstyled:first-of-type {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #71717a;
}
#product-product
  #content
  > .row
  > [class*="col-"]
  > .list-unstyled:first-of-type
  a {
  color: #000;
}
#product-product
  #content
  > .row
  > [class*="col-"]
  > .list-unstyled:first-of-type
  li
  + li {
  margin-top: 6px;
}
#product-product
  #content
  > .row
  > [class*="col-"]
  > .list-unstyled
  + .price-section {
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e4e4e7;
}
#product-product .price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 4px;
}
#product-product .price-current {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #000;
}
#product-product .price-current-sale {
  color: #ff5500;
}
#product-product .price-old {
  font-size: 17px;
  color: #a1a1aa;
  text-decoration: line-through;
}
#product-product .price-points {
  font-size: 12px;
  color: #71717a;
}
#product-product .price-discounts {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e4e4e7;
  font-size: 12px;
  color: #71717a;
}
#product-product #product h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  color: #000;
}
#product-product #product .form-control,
#product-product #product select.form-control,
#product-product #product textarea.form-control,
#product-product #product input[type="text"].form-control {
  background: #fff;
  border: 1px solid #e4e4e7;
  color: #000;
}
#product-product #product .form-control:focus {
  border-color: #ff5500;
}
#product-product #product .control-label {
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
#product-product #product .form-group {
  margin-bottom: 16px;
}
#product-product #product .form-group:has(#button-cart) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
#product-product #product .form-group:has(#button-cart) .control-label {
  flex: 0 0 100%;
  margin: 0 0 4px;
}
#product-product #product .form-group:has(#button-cart) br {
  display: none;
}
#product-product .quantity-stepper {
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 148px;
  width: 148px;
  height: 52px;
  border: 1px solid #000;
  background: #fff;
  overflow: hidden;
}
#product-product .quantity-stepper .quantity-btn {
  flex: 0 0 44px;
  width: 44px;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
#product-product .quantity-stepper .quantity-btn:hover {
  background: #000;
  color: #fff;
}
#product-product .quantity-stepper .quantity-btn:active {
  background: #ff5500;
  color: #fff;
}
#product-product .quantity-stepper .quantity-btn:disabled,
#product-product .quantity-stepper .quantity-btn:disabled:hover {
  background: #fff;
  color: #d4d4d8;
  cursor: not-allowed;
}
#product-product #input-quantity {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  background: #fff;
  border: 0 !important;
  border-left: 1px solid #000 !important;
  border-right: 1px solid #000 !important;
  border-radius: 0;
  box-shadow: none !important;
  -moz-appearance: textfield;
}
#product-product #input-quantity:focus {
  border-color: #000 !important;
  outline: none;
  box-shadow: none !important;
}
#product-product #input-quantity::-webkit-outer-spin-button,
#product-product #input-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#product-product #button-cart {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  margin: 0;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
#product-product #button-cart:hover,
#product-product #button-cart:focus {
  background: #ff5500;
  border-color: #ff5500;
  color: #fff;
}
#product-product #product .radio,
#product-product #product .checkbox {
  display: inline-block;
  margin: 0 8px 8px 0;
}
#product-product #product .radio label,
#product-product #product .checkbox label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid #e4e4e7;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
}
#product-product #product .radio input,
#product-product #product .checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
#product-product #product .radio label:hover,
#product-product #product .checkbox label:hover {
  border-color: #000;
}
#product-product #product .radio:has(input:checked) label,
#product-product #product .checkbox:has(input:checked) label {
  background: #000;
  border-color: #000;
  color: #fff;
}
#product-product #product .radio img.img-thumbnail,
#product-product #product .checkbox img.img-thumbnail {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  padding: 0;
  margin: 0;
}
#product-product .trust-row {
  display: flex;
  margin-top: 20px;
}
#product-product .trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 16px;
}
#product-product .trust-item:first-child {
  padding-left: 0;
}
#product-product .trust-item + .trust-item {
  border-left: 1px solid #e4e4e7;
}
#product-product .trust-item i.fa {
  font-size: 16px;
  color: #000;
}
#product-product .trust-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #71717a;
  line-height: 1.4;
}
#product-product .product-thumb .button-group button {
  color: #000;
}
#product-product .rating {
  margin-top: 24px;
}
#product-product .rating a {
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#product-product .rating a:hover {
  color: #000;
}
#product-product #content > p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717a;
  margin-top: 24px;
}
#product-product #content > p a {
  color: #000;
}
#product-product #content > h3 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 48px 0 24px;
  color: #000;
}
@media (max-width: 767px) {
  #product-product {
    padding-bottom: 88px;
  }
  #product-product h1 {
    font-size: 22px;
  }

  .slideshow .swiper-slide img {
    min-height: 12rem;
    object-fit: cover;
  }

  #product-category .product-layout {
    margin-bottom: 24px;
  }

  .col-sm-8 {
    width: 100%;
  }

  .cm-section {
    padding: 28px 24px;
  }

  #product-product .thumbnails {
    flex-direction: column;
  }
  #product-product .thumb-rail {
    order: 2;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  #product-product .thumb-rail a.thumbnail {
    flex: 0 0 64px;
    height: 64px;
  }
  #information-information .cm-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  #information-information .cm-gallery-zoom {
    opacity: 1;
    transform: none;
  }

  #product-product #product .form-group:has(#button-cart) {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    margin: 0;
    padding: 12px 16px;
    gap: 8px;
    background: #fff;
    border-top: 1px solid #000;
  }
  #product-product #product .form-group:has(#button-cart) .control-label {
    display: none;
  }
  #product-product .quantity-stepper {
    flex: 0 0 120px;
    width: 120px;
    height: 48px;
  }
  #product-product .quantity-stepper .quantity-btn {
    flex: 0 0 36px;
    width: 36px;
    font-size: 18px;
  }
  #product-product #button-cart {
    height: 48px;
    padding: 0 16px;
  }
}

#information-contact.cm-contact {
  color: #262629;
  padding-bottom: 96px;
}
#information-contact .cm-breadcrumb {
  margin: 24px 0 40px;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: transparent;
  border: 0;
}
#information-contact .cm-breadcrumb > li {
  display: inline;
  text-shadow: none;
  color: #71717a;
}
#information-contact .cm-breadcrumb > li + li:before {
  content: "/";
  padding: 0 8px;
  color: #a1a1aa;
}
#information-contact .cm-breadcrumb > li:after {
  display: none;
}
#information-contact .cm-breadcrumb a {
  color: #71717a;
}
#information-contact .cm-breadcrumb a:hover {
  color: #000;
}
.cm-contact-hero {
  margin-bottom: 56px;
  animation: cm-contact-in 0.7s ease both;
}
.cm-contact-kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ff5500;
}
.cm-contact-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0;
  color: #000;
  max-width: 14ch;
}
.cm-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.cm-contact-layout .cm-footer-col a{
	color: black;
}

.cm-contact-layout .cm-footer-col a:hover{
	color: #ff5500;
}

.cm-contact-aside {
  animation: cm-contact-in 0.7s ease 0.1s both;
}
.cm-contact-card {
  border: 1px solid #000;
  background: #e7e7e7;
  padding: 28px;
}
.cm-contact-store-image {
  margin: 0 0 24px;
  border: 1px solid #000;
  overflow: hidden;
  background: #fff;
}
.cm-contact-store-image img {
  display: block;
  width: 100%;
  height: auto;
}
.cm-contact-block + .cm-contact-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.cm-contact-label {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #71717a;
}
.cm-contact-label-spaced {
  margin-top: 20px;
}
.cm-contact-card address,
.cm-contact-value {
  margin: 0;
  font-style: normal;
  font-size: 15px;
  line-height: 1.65;
  color: #000;
}
a.cm-contact-value {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  font-size: 16px;
}
a.cm-contact-value:hover {
  border-bottom-color: #ff5500;
  color: #ff5500;
}
.cm-contact-map {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}
.cm-contact-map:hover {
  color: #ff5500;
  border-bottom-color: #ff5500;
}
.cm-contact-stores {
  margin-top: 32px;
}
.cm-contact-stores h2,
.cm-contact-form-head h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  color: #000;
}
.cm-contact-store {
  border: 1px solid #000;
  background: #fff;
  margin-bottom: 10px;
}
.cm-contact-store summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000;
  position: relative;
  padding-right: 40px;
}
.cm-contact-store summary::-webkit-details-marker {
  display: none;
}
.cm-contact-store summary:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
}
.cm-contact-store[open] summary:after {
  content: "–";
}
.cm-contact-store-body {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cm-contact-store-body .cm-contact-block {
  padding-top: 20px;
}
.cm-contact-form-wrap {
  animation: cm-contact-in 0.7s ease 0.2s both;
}
.cm-contact-form {
  border: 1px solid #000;
  background: #fff;
  padding: 36px 32px;
  position: relative;
}
.cm-contact-form:before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.cm-contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e4e7;
}
.cm-contact-field {
  margin-bottom: 22px;
}
.cm-contact-field label {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #71717a;
}
.cm-contact-field .form-control,
.cm-contact-form .form-control,
.cm-contact-form textarea.form-control,
.cm-contact-form input[type="text"].form-control {
  background: #f7f7f7;
  border: 0;
  border-bottom: 1px solid #d4d4d8;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  padding: 14px 12px;
  height: auto;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.cm-contact-field textarea.form-control {
  min-height: 160px;
  resize: vertical;
}
.cm-contact-field .form-control:focus,
.cm-contact-form .form-control:focus {
  background: #fff;
  border-bottom-color: #ff5500;
  box-shadow: none;
  outline: 0;
}
.cm-contact-field.is-error .form-control {
  border-bottom-color: #dc2626;
}
.cm-contact-field .text-danger {
  margin-top: 8px;
  font-size: 12px;
}
.cm-contact-actions {
  margin-top: 28px;
}
.cm-contact-actions .btn-primary {
  width: 100%;
  padding: 16px 24px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.cm-contact-actions .btn-primary:hover {
  transform: translateY(-1px);
}
.cm-contact-form .form-group {
  margin-bottom: 22px;
}
.cm-contact-form .control-label {
  display: block;
  float: none;
  width: auto;
  text-align: left;
  margin: 0 0 8px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #71717a;
}
.cm-contact-form .form-group [class*="col-"] {
  width: 100%;
  float: none;
  padding: 0;
}
@keyframes cm-contact-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .cm-footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .cm-grid {
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .cm-contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cm-contact-hero h1 {
    max-width: none;
  }

  .cm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  #information-contact.cm-contact {
    padding-bottom: 64px;
  }

  .cm-footer-grid {
    grid-template-columns: 1fr;
  }
  .cm-contact-form {
    padding: 28px 20px;
  }
  .cm-contact-card {
    padding: 22px;
  }

  .cm-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .cm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

#product-category {
  color: #262629;
  padding-bottom: 64px;
}
#product-category .breadcrumb {
  margin: 24px 0 32px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
#product-category .breadcrumb a {
  color: #71717a;
}
#product-category .breadcrumb a:hover {
  color: #000;
}
#product-category #column-left .list-group {
  margin-bottom: 32px;
}
#product-category #column-left .list-group a,
#product-category #column-left .list-group-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e4e4e7;
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 0;
  margin: 0;
  border-radius: 0;
  text-shadow: none;
  transition: all 0.3s ease;
}
#product-category #column-left .list-group a:hover,
#product-category #column-left .list-group a.active,
#product-category #column-left .list-group a.active:hover {
  background: transparent;
  border-color: #e4e4e7;
  border-bottom-color: #000;
  color: #000;
  text-shadow: none;
}
#product-category #content > .row:first-of-type {
  margin-bottom: 8px;
}
#product-category #content > hr {
  border-top-color: #e4e4e7;
  margin: 24px 0 32px;
}
#product-category #content > h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  color: #71717a;
}
#product-category #content > .row ul:not(.pagination) {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
#product-category #content > .row ul:not(.pagination) li {
  margin-bottom: 8px;
}
#product-category #content > .row ul:not(.pagination) a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  border-bottom: 1px solid transparent;
}
#product-category #content > .row ul:not(.pagination) a:hover {
  border-bottom-color: #ff5500;
  color: #ff5500;
}
#product-category .img-thumbnail {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 0;
  padding: 0;
}
#product-category #compare-total,
#product-category .btn-link {
  color: #71717a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: none;
  padding: 0;
  transition: all 0.3s ease;
}
#product-category #compare-total:hover,
#product-category .btn-link:hover {
  color: #000;
}
#product-category .btn-group .btn-default {
  background: #fff;
  border: 1px solid #e4e4e7;
  color: #71717a;
  box-shadow: none;
  text-shadow: none;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 34px;
}
#product-category .btn-group .btn-default:hover,
#product-category .btn-group .btn-default.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

#product-category .input-group-addon {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e4e4e7;
  border-radius: 0;
  color: #71717a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-left: 0;
  text-shadow: none;
}
#product-category .form-control,
#product-category select.form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e4e4e7;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  height: 36px;
  font-size: 13px;
}
#product-category .form-control:focus {
  border-bottom-color: #ff5500;
  box-shadow: none;
}
#product-category .input-group-sm > .form-control,
#product-category .input-group-sm > .input-group-addon {
  height: 36px;
}
#product-category .product-layout {
  margin-bottom: 24px;
  height: 45rem;
}
#product-category .product-thumb {
  border: 1px solid #000;
  background: #e7e7e7;
  padding: 16px 16px 20px;
  margin-bottom: 0;
  height: 100%;
  align-content: center;
}
#product-category .product-thumb .image {
  border: 1px solid #000;
  overflow: hidden;
  background: #fff;
  margin: 0 0 16px;
}
#product-category .product-thumb .image img {
  width: 100%;
  display: block;
  filter: unset;
  /* filter: grayscale(1); */
  transition:
    filter 0.5s ease,
    transform 0.5s ease;
}
#product-category .product-thumb:hover .image img {
  /* filter: grayscale(0); */
  transform: scale(1.04);
}
#product-category .product-thumb .caption {
  padding: 0;
}
#product-category .product-thumb h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0;
  line-height: 1.3;
}
#product-category .product-thumb h4 a {
  color: #000;
  transition: all 0.3s ease;
}
#product-category .product-thumb h4 a:hover {
  color: #ff5500;
}
#product-category .product-thumb .price {
  display: block;
  color: #262629;
  font-size: 14px;
  margin: 0 0 12px;
}
#product-category .product-thumb .price-tax {
  display: none;
}
#product-category .product-thumb .button-group {
  border: 0;
  background: transparent;
  overflow: visible;
}
#product-category .product-thumb .button-group button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  color: #000;
  width: auto;
  float: none;
  padding: 0 0 3px;
  margin-right: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease;
}
#product-category .product-thumb .button-group button + button {
  width: auto;
  border: 0;
  border-bottom: 1px solid transparent;
  color: #71717a;
  padding: 0;
  margin-right: 12px;
}
#product-category .product-thumb .button-group button:hover {
  background: transparent;
  color: #ff5500;
  border-bottom-color: #ff5500;
}
#product-category .product-list .product-thumb {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
#product-category .product-list .product-thumb .image {
  flex: 0 0 220px;
  max-width: 220px;
  margin: 0;
}
#product-category .product-list .product-thumb > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#product-category #content > .row:has(.pagination) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid #e4e4e7;
}
#product-category #content > .row:has(.pagination)::before,
#product-category #content > .row:has(.pagination)::after {
  display: none;
}
#product-category #content > .row:has(.pagination) > [class*="col-"] {
  float: none;
  width: auto;
  padding: 0;
}
#product-category .pagination > li > a,
#product-category .pagination > li > span {
  background: #fff;
  border-color: #000;
  color: #000;
}
#product-category .pagination > .active > span,
#product-category .pagination > .active > a,
#product-category .pagination > li > a:hover,
#product-category .pagination > li > a:focus {
  background: #ff5500;
  border-color: #ff5500;
  color: #000;
}
#product-category #content > .row:has(.pagination) .text-right {
  color: #71717a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #product-category h2 {
    font-size: 24px;
  }
  #product-category .product-list .product-thumb {
    flex-direction: column;
  }
  #product-category .product-list .product-thumb .image {
    flex: none;
    max-width: none;
  }
  #product-category #content > .row:has(.pagination) {
    flex-direction: column;
    align-items: flex-start;
  }
}
