/* ===== Base Colors ===== */
.text-black {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

/* ===== Typography ===== */
.font-inter {
  font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

.font-dmsans {
  font-family: "DM Sans", sans-serif !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-45 {
  font-size: 45px !important;
}

/* ===== Text Utilities ===== */
.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-center {
  text-align: center !important;
}

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

.text-right {
  text-align: right !important;
}

/* ===== Borders ===== */
.border {
  border: 1px solid #ccc !important;
}

.border-black {
  border: 1px solid #000 !important;
}

.border-white {
  border: 1px solid #fff !important;
}

.border-0 {
  border-width: 0 !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

/* ===== Border Radius ===== */
.rounded-0 {
  border-radius: 0 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-sm {
  border-radius: 0.125rem !important;
}

.rounded-md {
  border-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 1rem !important;
}

.rounded-xl {
  border-radius: 2rem !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* ===== Spacing ===== */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

/* ===== Width Utilities ===== */
.max-w-10 {
  max-width: 10% !important;
}

.max-w-20 {
  max-width: 20% !important;
}

.max-w-30 {
  max-width: 30% !important;
}

.max-w-40 {
  max-width: 40% !important;
}

.max-w-50 {
  max-width: 50% !important;
}

.max-w-60 {
  max-width: 60% !important;
}

.max-w-70 {
  max-width: 70% !important;
}

.max-w-75 {
  max-width: 75% !important;
}

.max-w-80 {
  max-width: 80% !important;
}

.max-w-85 {
  max-width: 85% !important;
}

.max-w-90 {
  max-width: 90% !important;
}

.max-w-95 {
  max-width: 95% !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/* ===== Transitions ===== */
.transition {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transition-color {
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

/* ===== Form Elements ===== */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select,
textarea,
button,
a.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border-color: #ced4da;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
select:focus,
textarea:focus,
button:focus,
a.btn:focus,
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="number"]:focus-visible,
input[type="password"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="url"]:focus-visible,
input[type="search"]:focus-visible,
input[type="date"]:focus-visible,
input[type="time"]:focus-visible,
input[type="datetime-local"]:focus-visible,
input[type="month"]:focus-visible,
input[type="week"]:focus-visible,
input[type="file"]:focus-visible,
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a.btn:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
  border-color: #000;
}

/* ===== Header & Navigation ===== */
header {
  background-color: transparent;
}

.nav-link,
.navbar-brand,
.nav-icons i {
  color: #000 !important;
}

.nav-icons i {
  padding-top: 3px;
  font-size: 18px;
  cursor: pointer;
}

.navbar-nav .nav-link {
  padding: 8px 15px;
}

/* ===== Offcanvas ===== */
.offcanvas-body ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.offcanvas-body li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.offcanvas-body a {
  color: #000;
  text-decoration: none;
  display: block;
}

/* ===== Layout ===== */
.container {
  width: 1440px;
  max-width: 95% !important;
}

/* ===== Logo ===== */
#siteHeader img.img-fluid.transition {
  width: 250px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ===== Banner Slider ===== */
#bannerSlider {
  height: 650px;
}

#bannerSlider img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 650px;
}

/* ===== Category Cards ===== */
.categoryCard .CategoryGrid .CategoryGrid-card {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.categoryCard .CategoryGrid .CategoryGrid-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.categoryCard .CategoryGrid .CategoryGrid-card:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.categoryCard .CategoryGrid .CategoryGrid-card a {
  font-family: 'LouizeDisplay300', sans-serif;
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 0;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  z-index: 2100000;
}

.categoryCard .CategoryGrid .CategoryGrid-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.42);
  left: 0;
  bottom: -100%;
  z-index: 19999 !important;
  -webkit-transition: bottom 0.5s ease;
  -moz-transition: bottom 0.5s ease;
  -o-transition: bottom 0.5s ease;
  transition: bottom 0.5s ease;
}

.categoryCard .CategoryGrid .CategoryGrid-card:hover::before {
  bottom: 0;
}

/* ===== Section Header ===== */
.sectionHeader {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000;
  text-align: center;
}

.sectionHeader a {
  text-decoration: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sectionHeader i.iconArrow {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: #ffffff;
}

.sectionHeader h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

/* ===== Pagination ===== */
.active>.page-link,
a.page-link.text-white.bg-dark.border-1.rounded-0 {
  border: 1px solid #000 !important;
  border-color: #000 !important;
}

/* ===== Product Sidebar Filters ===== */
#productSidebar .filter-content input.form-check-input[type=checkbox] {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #000;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  margin-right: 0.5rem;
  vertical-align: middle;
  position: relative;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#productSidebar .filter-content input.form-check-input[type=checkbox]:checked {
  background-color: #000;
  border-color: #000;
}

#productSidebar .filter-content input.form-check-input[type=checkbox]:checked+label {
  color: #000 !important;
  font-weight: 700 !important;
}

/* ===== Shop Tools Select ===== */
.shop-tools select.form-select {
  border: 1px solid;
  border-radius: 0;
}

.shop-tools select.form-select option {
  background-color: black;
  color: white;
}

.shop-tools select.form-select option:hover,
.shop-tools select.form-select option:focus,
.shop-tools select.form-select option:checked {
  background-color: #333;
  color: white;
}

.shop-tools select.form-select:focus {
  border-color: black;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
  #bannerSlider {
    height: 450px;
  }

  #bannerSlider img {
    height: 450px;
  }
}

@media (max-width: 575.98px) {
  #bannerSlider {
    height: 300px;
  }

  #bannerSlider img {
    height: 300px;
  }

  .sectionHeader {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sectionHeader a {
    flex-direction: column;
  }

  .sectionHeader i.iconArrow {
    margin-bottom: 0.5rem;
  }
}

#productImg {
  position: sticky;
  top: 20px;
}

.single-product {
  position: relative;
}

.single-product #lightgallery img#mainProductImage {
  width: 100% !important;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border-radius: 0 !important;
}

#productImg .thumbnail-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

#productImg .thumbnail-slider img:hover {
  opacity: 0.8;
}

#productImg {
  position: sticky;
  top: 20px;
}

.single-product .thumbnail-slider img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.single-product .thumbnail-slider img:hover {
  opacity: 0.8;
}

#productImg ul.splide__list li.splide__slide {
  width: calc(50% - 7.5px) !important;
  height: 330px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 0 !important;
}

#productImg .thumbnail-slider img {
  width: 100%;
  height: 100% !important;
  object-fit: fill;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== Form Elements ===== */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select,
textarea,
button,
a.btn {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da !important;
  -webkit-transition: all 0.2s ease !important;
  -moz-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
select:focus,
textarea:focus,
button:focus,
a.btn:focus,
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="number"]:focus-visible,
input[type="password"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="url"]:focus-visible,
input[type="search"]:focus-visible,
input[type="date"]:focus-visible,
input[type="time"]:focus-visible,
input[type="datetime-local"]:focus-visible,
input[type="month"]:focus-visible,
input[type="week"]:focus-visible,
input[type="file"]:focus-visible,
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a.btn:focus-visible {
  outline: none !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25) !important;
  -moz-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25) !important;
  border-color: #000 !important;
}


.wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.sidebar {
  background-color: #000;
  color: #fff;
  width: 250px;
  transition: width 0.3s ease;
  min-height: 100vh;
  height: 100%;
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar .nav-link,
.sidebar .accordion-button {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 8px;
  text-decoration: none;
}

.sidebar .nav-link.active,
.sidebar .accordion-button:not(.collapsed) {
  color: #72491e;
  font-weight: 600;
  background-color: #fff;
  border-radius: 5px;
}

.sidebar .accordion-button::after {
  filter: invert(1);
  transition: opacity 0.2s;
  width: 12px;
  height: 12px;
  background-size: contain;
}

.sidebar.collapsed .accordion-button::after,
.sidebar.collapsed .link-text {
  display: none !important;
}

.logo {
  max-height: 60px;
  transition: all 0.3s ease-in-out;
}

.sidebar.collapsed .logo {
  max-height: 30px;
}

.main-content {
  flex-grow: 1;
  padding: 20px;
  transition: margin-left 0.3s ease;
}

.toggle-btn {
  position: absolute;
  top: 15px;
  right: -15px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  width: 30px;
  height: 30px;
  border: none;
  z-index: 999;
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    height: 100vh;
    z-index: 1050;
    left: 0;
    top: 0;
  }
}


#adminMenu .bg-dark {
  background-color: #000000 !important;
  background: #000000 !important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #28a745;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

table td {
  vertical-align: middle;
}

#existingImage img {
  width: 100px;
  object-fit: cover;
}

#registrationStep2 #registerMessage {
  text-align: center;
}

#loginRequiredModal a {
  color: #ffffff !important;
}

#loginRequiredModal button#openLoginFromRequired {
  background-color: #000000 !important;
}

#registrationStep1 .modal-body a#showLoginFromRegister {
  color: #000000 !important;
  text-decoration: underline !important;
}

.product-card .img-fluid {
  max-width: 100% !important;
  height: 100%;
  object-fit: cover;
  min-height: 295px;
  max-height: 295px;
  max-height: 295px !important;
}

.product-name a {
  text-decoration: none;
  color: #000000;
  text-transform: capitalize;
  line-height: 1.1 !important;
  font-size: 1rem;
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.single-product .product-details tr th,
.single-product .product-details tr td {
  font-size: 1rem !important;
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.single-product .admin-details tr th,
.single-product .admin-details tr td {
  font-size: 13px !important;
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: capitalize;
}

/* 
#lightgallery {
  padding: 0.4rem;
  border: 1px solid #e5e0e0;
} */

#paginationNav .page-item .page-link {
  color: black;
  background-color: transparent;
  border-color: #dee2e6;
}

#paginationNav .page-item .page-link:hover {
  color: black;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

#paginationNav .page-item.disabled .page-link {
  color: #6c757d;
  background-color: transparent;
  border-color: #dee2e6;
}

#paginationNav .page-item.active .page-link {
  background-color: black;
  border-color: black;
  color: white;
}

/* New Layout CSS */
@font-face {
  font-family: 'LouizeDisplay300';
  src: url('../fonts/LouizeDisplay.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'LouizeDisplay700';
  src: url('../fonts/LouizeDisplay-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'LouizeDisplay500';
  src: url('../fonts/LouizeDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'LouizeDisplay';
  src: url('../fonts/LouizeDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasUnicaPro';
  src: url('../fonts/NeueHaasUnicaPro-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasUnicaPro';
  src: url('../fonts/NeueHaasUnicaPro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasUnicaPro';
  src: url('../fonts/NeueHaasUnicaPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasUnicaPro';
  src: url('../fonts/NeueHaasUnicaPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasUnicaPro';
  src: url('../fonts/NeueHaasUnicaPro-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

body,
.font-inter,
.font-dmsans {
  font-family: 'LouizeDisplay', 'NeueHaasUnicaPro', Arial, Helvetica, sans-serif !important;
}

header,
nav a,
.offcanvas-body a {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  nav.py-3 {
    display: none !important;
  }

  #hamburgerBtn {
    display: block !important;
  }

  .container>.d-flex.align-items-center.gap-3 {
    display: none !important;
  }
}

#hamburgerBtn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

.static-banner {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  padding-bottom: 80px;
  font-family: 'LouizeDisplay', 'NeueHaasUnicaPro', serif;
}

.static-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 0;
}

.static-banner>.container {
  position: relative;
  z-index: 1;
}

.static-banner h1 {
  font-family: 'LouizeDisplay300', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.static-banner p {
  font-family: 'NeueHaasUnicaPro', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0.1rem 0;
  text-transform: uppercase;
}

input[type="checkbox"].form-check-input {
  display: inline-block;
}

input[type="checkbox"].form-check-input:checked+label {
  font-weight: bold;
}

.container-fluid#banner {
  background-image: url(../images/header\ image\ Fex.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.container-fluid#banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 1;
}

.container-fluid#banner .container {
  position: relative;
  z-index: 2;
}

.container-fluid#banner .container a i {
  font-size: 3rem;
  font-weight: 600;
}

h6.filter-title {
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

@media (max-width: 1366px) {
  .static-banner {
    height: 500px;
    padding-bottom: 60px;
  }

  .static-banner h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) {
  .static-banner {
    height: 450px;
    padding-bottom: 50px;
  }

  .static-banner h1 {
    font-size: 2.5rem;
  }

  .container-fluid#banner .container a i {
    font-size: 2.5rem;
  }

  h6.filter-title {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 991.98px) {
  .static-banner {
    height: 400px;
    padding-bottom: 40px;
  }

  .static-banner h1 {
    font-size: 2.2rem;
  }

  .container-fluid#banner .container a i {
    font-size: 2.2rem;
  }

  h6.filter-title {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 767.98px) {
  .static-banner {
    height: 350px;
    padding-bottom: 30px;
  }

  .static-banner h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .static-banner p {
    font-size: 0.9rem;
  }

  .container-fluid#banner .container a i {
    font-size: 2rem;
  }

  h6.filter-title {
    font-size: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .static-banner {
    height: 300px;
    padding-bottom: 20px;
  }

  .static-banner h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .static-banner p {
    font-size: 0.85rem;
  }

  .container-fluid#banner .container a i {
    font-size: 1.8rem;
  }

  h6.filter-title {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480.98px) {
  .static-banner {
    height: 250px;
    padding-bottom: 15px;
  }

  .static-banner h1 {
    font-size: 1.5rem;
  }

  .static-banner p {
    font-size: 0.8rem;
  }

  .container-fluid#banner .container a i {
    font-size: 1.5rem;
  }

  h6.filter-title {
    font-size: 0.8rem !important;
  }
}


footer {
  background-color: #161616 !important;
  font-family: 'LouizeDisplay', 'NeueHaasUnicaPro', Arial, Helvetica, sans-serif !important;
  color: white !important;
}

footer a {
  color: white !important;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .container>.row:first-of-type>div[class*="col-"] {
  border-right: 1px solid #444;
  padding-right: 20px;
  margin-right: 20px;
}

footer .container>.row:first-of-type>div[class*="col-"]:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

footer h5 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer p,
footer li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

footer hr {
  border-color: #444;
}

#counteryAddress .row .col-lg-3 {
  max-width: 18%;
}

#counteryAddress span {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  font-size: 11.4px;
}

@media (max-width: 1366px) {
  footer h5 {
    font-size: 17px;
  }

  footer p,
  footer li {
    font-size: 15px;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 20%;
  }

  #counteryAddress span {
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  footer h5 {
    font-size: 16px;
  }

  footer p,
  footer li {
    font-size: 14px;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 25%;
  }

  #counteryAddress span {
    font-size: 10.5px;
  }
}

@media (max-width: 991.98px) {
  footer .container>.row:first-of-type>div[class*="col-"] {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  footer .container>.row:first-of-type>div[class*="col-"]:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  footer h5 {
    font-size: 15px;
  }

  footer p,
  footer li {
    font-size: 13px;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 50%;
  }

  #counteryAddress span {
    font-size: 10px;
  }
}

@media (max-width: 767.98px) {
  footer h5 {
    font-size: 14px;
  }

  footer p,
  footer li {
    font-size: 12px;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 100%;
    text-align: center;
  }

  #counteryAddress span {
    font-size: 9.5px;
  }
}

@media (max-width: 575.98px) {
  footer h5 {
    font-size: 13px;
  }

  footer p,
  footer li {
    font-size: 11px;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 100%;
  }

  #counteryAddress span {
    font-size: 9px;
  }
}

/* 481px */
@media (max-width: 480.98px) {
  footer h5 {
    font-size: 12px;
  }

  footer p,
  footer li {
    font-size: 10px;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 100%;
  }

  #counteryAddress span {
    font-size: 8.5px;
  }
}

.pagination .page-item.active a {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.pagination .page-item a {
  color: #000000 !important;
}

#siteHeader a.active {
  font-weight: 500 !important;
}

.footer_desc p {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  font-size: 14.5px !important;
  width: 100%;
  line-height: 1;
}

#footerimg {
  max-width: 100%;
  width: 15.8%;
}




footer .row.mt-4 p.fs-16 {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  font-size: 11.4px !important;
  width: 100%;
}

#banner h2 {
  font-family: 'LouizeDisplay300', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

#categoryCard .row>* {
  margin-top: 0.5rem !important;
}

.col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper {
  padding-right: 0.2rem !important;
  padding-left: 0.2rem !important;
  margin-top: 0.3rem !important;
  margin-bottom: 0.3rem !important;
}

#products-breadcumb nav .breadcrumb-item a {
  text-decoration: none;
}

#products-breadcumb nav .breadcrumb-item,
#products-breadcumb nav .breadcrumb-item.active {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

#products-breadcumb #productCount {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

#products-breadcumb .shop-tools {
  align-items: center;
}

#products-breadcumb .shop-tools span {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

#products-breadcumb .shop-tools btn a {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

#products-breadcumb {
  border-bottom: 1px solid #000000;
}

.filter-content label.form-check-label {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

#clearFiltersDesktop {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper h5,
.col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper p {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  text-align: left !important;
  line-height: 1 !important;
}

.col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper h5 {
  margin-bottom: 0.3rem !important;
}

.col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper p {
  margin-bottom: 0.5rem !important;
  color: #787878 !important;

}

.product-details .border-left {
  border-left: 1px solid #dee2e6 !important;
}

.product-details div {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  text-transform: capitalize;
}


input#search-input {
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid #000000;
  font-weight: 400;
  border-radius: 0 !important;
  padding-left: 0.3rem;
  padding-bottom: 0.1rem;
  text-transform: uppercase;
}

input#search-input:focus {
  box-shadow: unset !important;
}

input#search-input:focus-visible {
  outline: unset !important;
}

#desktopSearchIcon,
#desktopCartIcon,
#desktopUserIcon {
  width: 28px;
}

.admin-details table th,
.admin-details table th {
  font-size: 1rem !important;
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.single-product .btn.bg-black,
.single-product .btn.btn-outline-dark {
  font-size: 1rem !important;
  font-family: 'NeueHaasUnicaPro', serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

#siteHeader img.siteLogo{
    height: 35px;
    margin: 0 auto;
    width: 70%;
    object-fit: contain;
}

@media (max-width: 1439.9px) {

  #desktopSearchIcon,
  #desktopCartIcon,
  #desktopUserIcon {
    width: 23px !important;
  }

  .static-banner h1 {
    font-size: 2.5rem;
  }

  .categoryCard .CategoryGrid .CategoryGrid-card {
    height: 520px;
  }

  .product-details div {
    font-size: 0.92rem !important;
  }

  .categoryCard .CategoryGrid .CategoryGrid-card a {
    font-size: 1.4rem;
  }
}

@media (max-width: 1270px) {
  .static-banner {
    height: 450px;
    padding-bottom: 60px;
  }

  .categoryCard .CategoryGrid .CategoryGrid-card {
    height: 450px;
  }

  .categoryCard .CategoryGrid .CategoryGrid-card a {
    font-size: 1.3rem;
  }

  #banner a.text-decoration-none {
    margin-bottom: 0 !important;
  }
}

.single-product .woodDesc {
  width: 100%;
  border: 1px solid #dee2e6;
  margin-bottom: 0.7rem;
  margin-top: 0.7rem;
  min-height: 150px;
}

@media (max-width: 1366px) {
  .container#counteryAddress {
    max-width: 100% !important;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 19% !important;
    margin-right: 0.5rem;
    margin-bottom: 0.7rem !important;
    padding-right: 0.6rem;
  }
}

@media (max-width: 1170px) {
  #counteryAddress .row .col-lg-3 {
    max-width: 32% !important;
    margin-right: 0.5rem;
    margin-bottom: 1.7rem !important;
    padding-right: 1rem;
    padding-left: 1rem !important;
    width: 32%;
  }
}

@media (max-width: 767.9px) {
  #desktopSearchIcon-outer{
    display: none !important;
  }

  #counteryAddress .row .col-lg-3 {
    max-width: 49% !important;
    width: 48% !important;
    text-align: left !important;
  }

  footer .container.mt-5{
    max-width: 100% !important;
    margin-top: 1rem !important;
  }

  footer #footerimg {
    text-align: center !important;
    border-bottom: unset;
    margin-bottom: 1rem !important;
  }

  footer .container.mt-5 img.img-fluid {
    width: 50% !important;
    margin: 0 auto;
  }

  .footer_desc p{
    text-align: center;
    font-size: 0.8rem !important;
    max-width: 80%;
    margin: 0 auto;
  }

  #siteHeader nav.py-2{
    display: none !important;
  }

  #siteHeader.py-1{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #siteHeader a.d-block{
    text-align: end !important;
  }

  #siteHeader img.siteLogo{
    width: 55%;
    height: 40px;
  }

  #siteHeader .border-bottom.py-3{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .static-banner {
    height: 400px !important;
  }

  .static-banner h1{
    font-size: 2.3rem;
  }

  .static-banner p{
    font-size: 0.8rem;
  }

  .categoryCard .CategoryGrid .CategoryGrid-card{
    height: 400px;
  }

footer.bg-black {
    padding-top: 1rem !important;
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
    overflow: hidden;
}

  #productsContainer .col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper{
    max-width: 50% !important;
  }

  .col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper h5{
    padding-left: 1rem !important;
  }

  .col-lg-3.col-md-6.col-sm-12.mb-4.product-card-wrapper p{
    padding-left: 1rem !important;
  }

  #productImg {
    position: unset !important;
    top: unset !important;
    padding-left: unset;
    padding-right: unset;
  }

  #products-breadcumb{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #products-breadcumb .btn.d-md-none.me-2{
    margin-right: 0 !important;
  }

  #footerimg {
    max-width: 100%;
    width: 100% !important;
  }
}

@media (max-width: 575.9px) {
  .static-banner{
    height: 370px !important;
  }

  .categoryCard .row.CategoryGrid.g-4{
    margin-top: -1.4rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .categoryCard .CategoryGrid .CategoryGrid-card {
      height: 300px;
  }

  #banner a.text-decoration-none{
    padding-bottom: 0 !important;
  }

  .row.CategoryGrid.g-4 div:first-child{
    margin-top: 0.9rem !important;
  }

  .row.CategoryGrid.g-4 div{
    margin-top: 0.2rem !important;
  }

  #counteryAddress .row .col-lg-3 {
    max-width:100% !important;
    width: 100% !important;
    text-align: left !important;
  }

  .footer_desc p{
    max-width: 100% !important;
  }

  #counteryAddress .row{
    padding-left: 15px;
    padding-right: 15px;
  }

  footer #footerimg{
    padding-left: 0 !important;
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  #footerimg img.img-fluid{
    margin: unset;
    width: 90% !important;
  }

  footer .container .row .footer_desc{
    padding-left: 0 !important;
    text-align: left !important;
  }

  footer .container .row .footer_desc p{
    text-align: left;
    line-height: 1.4;
  }

  footer .row.mt-4{
    margin-top: 0 !important;
  }

    #siteHeader img.siteLogo{
        width: 85%;
        height: 40px;
    }

}

#registerTabs button{
  border-radius: 0 !important;

} 

#registerTabs button.nav-link.active{
  background-color: #000000 !important;
  color: #ffffff !important;
}

.categoryCard .CategoryGrid .CategoryGrid-card a.img-link{
    font-family: unset;
    position: relative !important;
    bottom: unset;
    left: unset !important;
    width: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -ms-transform: unset !important;
    -o-transform: unset !important;
    transform: unset !important;
    z-index: unset !important;
    border-radius: unset !important;
    text-decoration: unset !important;
    color: unset !important;
    text-transform: unset !important;
    font-size: unset !important;
    font-weight: unset !important;
    line-height: unset !important;
    text-align: unset !important;
    cursor: pointer !important;
    z-index: 20 !important;
}

.form-check-input:checked{
  background-color: #000000 !important;
  border-color: #000000 !important;
}

#loginRegisterLink{
  width: fit-content;
}