:root,
[data-bs-theme=light] {
  --mod-primary-text: #212227;
  --mod-primary-bg: #e7e7e7;
  --bs-primary-rgb: 239, 183, 2;
  --bs-link-color-rgb: #EFB702;
  --bs-primary: #EFB702;
  --bs-primary-text-emphasis: #212227;
  --bs-body-bg: #f7f7f7;
  --bs-primary-bg-subtle: #f7f7f7;
  --bs-heading-color:#212227;
  --bs-danger: #ff5956;
  --bs-border-color-translucent: #DDDDDD;
}
:root .btn:hover,
[data-bs-theme=light] .btn:hover {
  --bs-btn-hover-color: #212227;
  --bs-btn-hover-bg: #d6a502;
  --bs-btn-hover-border-color: #EFB702;
}
:root .card,
[data-bs-theme=light] .card {
  --bs-card-bg: #DDDDDD ;
}
:root .nav-link,
[data-bs-theme=light] .nav-link {
  --bs-nav-link-color: #212227;
  --bs-nav-link-hover-color: #EFB702;
}

[data-bs-theme=dark] {
  --mod-primary-text: #DDDDDD;
  --mod-primary-bg: #212227;
  --bs-primary-rgb: 239, 183, 2;
  --bs-link-color-rgb: #EFB702;
  --bs-primary-text-emphasis: #DDDDDD;
  --bs-body-bg: #2E2E34;
  --bs-primary-bg-subtle: #2E2E34;
  --bs-heading-color:#DDDDDD;
  --bs-danger: #ff5956;
  --bs-border-color-translucent: #212227;
}
[data-bs-theme=dark] .btn:hover {
  --bs-btn-hover-color: #212227;
  --bs-btn-hover-bg: #d6a502;
  --bs-btn-hover-border-color: #EFB702;
}
[data-bs-theme=dark] .btn-primary {
  --bs-primary-color-contrast: #212227;
}
[data-bs-theme=dark] .card {
  --bs-card-bg: #212227 ;
}
[data-bs-theme=dark] .nav-link {
  --bs-nav-link-color: #DDDDDD;
  --bs-nav-link-hover-color: #EFB702;
}

/* BASE CSS
 * --------------------------------------- */
body {
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  font-family: "Rubik", sans-serif;
}

body ::selection {
  background: var(--bs-primary);
  color: var(--mod-primary-bg);
}

header {
  margin-bottom: 100px;
}

header li {
  list-style: none;
}

h1 {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: var(--bs-primary);
  text-transform: uppercase;
  margin-bottom: 80px;
}
h1:after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: table;
  width: 40px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--bs-primary-text-emphasis);
  content: "";
}

::-webkit-scrollbar {
  width: 7px; /* for vertical scrollbars */
  height: 7px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
  background: var(--mod-primary-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  height: 10px;
}

::-webkit-scrollbar-track-piece {
  height: 30px;
}

/* Conteneur du loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 29, 0.89); /* Fond très discret */
  display: flex;
  flex-direction: column; /* Empile les éléments verticalement */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

/* Animation du loader */
.loader {
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-top: 3px solid #FFD700; /* Jaune doré */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px; /* Espacement entre le loader et le texte */
}

/* Texte de bienvenue */
.loader-text {
  font-size: 18px;
  font-weight: bold;
  color: #FFD700; /* Jaune doré */
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Animation de rotation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cacher le loader après chargement */
.loader-hidden {
  opacity: 0;
  pointer-events: none;
}


/* ==============================
   Table
=============================== */
.table {
  overflow: auto;
}

table,
.table {
  width: 100%;
  min-width: auto;
  text-align: start;
  margin: 0;
  border-spacing: 0;
  padding: 5px;
  background-color: var(--bs-primary);
  border-collapse: collapse;
  color: #DDDDDD;
  border-radius: 0;
  border: none;
  font-weight: bold;
}
table thead,
.table thead {
  color: #212227;
  text-transform: uppercase;
}
table thead th,
.table thead th {
  width: 20%;
  padding: 16px;
  text-align: start;
  border-bottom: none !important;
  font-weight: bold;
  color: #212227 !important;
  background-color: #EFB702 !important;
}
table tbody,
.table tbody {
  background-color: #212227;
}
table tbody td,
.table tbody td {
  padding: 10px;
}

.breadcrumb {
  background-color: #212227;
}

.header-nav {
  position: relative;
  z-index: 40;
  height: 100vh;
  background-position: center;
  background-size: cover;
}
.header-nav:after {
  background-color: var(--bs-primary-bg-subtle);
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  display: table;
  clear: both;
}
.header-nav .navigation {
  position: relative;
  z-index: 100;
  height: 78px;
  line-height: 78px;
  /* box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.15); */
}
.navbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
  z-index: 101;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.navbar-logo:hover {
  transform: translateX(-50%) scale(1.05);
}

.header-nav-left {
  float: left;
  display: flex;
}
.header-nav-left .active:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 5px;
  background-color: var(--bs-primary);
  content: "";
}
.header-nav-left .nav-link {
  padding: 0;
  color: var(--bs-primary-text-emphasis);
}
.header-nav-left .nav-link:focus {
  color: #a37d01;
}
.header-nav-left .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.header-nav-left .dropdown {
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
  text-transform: uppercase;
}
.header-nav-left .dropdown .active {
  color: var(--bs-primary) !important;
  border-left: 3px solid var(--bs-primary);
}
.header-nav-left .dropdown .active:after {
  display: none !important;
}
.header-nav-left .dropdown a:hover, .header-nav-left .dropdown:hover {
  color: var(--bs-primary);
}
.header-nav-left .dropdown .dropdown-item {
  color: var(--bs-primary-text-emphasis);
  background-color: transparent !important;
}
.header-nav-left .dropdown .dropdown-item .active {
  background-color: transparent !important;
  color: var(--bs-primary) !important;
}
.header-nav-left .dropdown .dropdown-item .active:after {
  display: none !important;
}
.header-nav-left .dropdown .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.header-nav-left .item {
  position: relative;
  transition: all 3s ease-in-out;
}
.header-nav-left .item a {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bs-primary-text-emphasis);
}
.header-nav-left .item a:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 0;
  background-color: var(--bs-primary);
  content: "";
  transition: all 0.3s ease-in-out;
}
.header-nav-left .item a:hover:after {
  height: 5px;
}
.header-nav-left .item:not(:first-child) {
  margin-left: 15px;
}
.header-nav-right {
  float: right;
  position: relative;
  display: flex;
}
.header-nav-right .nav-link {
  padding: 0;
}
.header-nav-right .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.header-nav-right .item {
  margin-left: 15px;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
}
.header-nav-right .item a {
  color: var(--bs-primary-text-emphasis);
}
.header-nav-right .item a:hover, .header-nav-right .item:hover {
  color: var(--bs-primary);
  background-color: transparent;
}
.header-nav-right .item .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.header-nav .header-content {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: calc(100vh - 78px);
}
@media screen and (max-width: 1200px) {
  .header-nav .header-content {
    height: 100vh;
  }
}
@media screen and (max-width: 848px) {
  .header-nav .header-content {
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
.header-nav .header-content:after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100vw;
  height: 900px;
  content: "";
  display: table;
  clear: both;
  background-image: url(../img/header_shape.svg);
  background-position: center;
  background-position-y: 0px;
  background-size: cover;
  pointer-events: none;
}
.header-nav .header-content .background-brand {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.header-nav .header-content .background-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 30s infinite alternate;
}
.header-nav .header-content .background-brand:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
  backdrop-filter: blur(3px);
}
/* Button and link animations */
.btn, 
.nav-link,
.dropdown-item {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}
.shop-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: scaleY(0.9);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer modifications */
.footer .about {
  text-align: center;
}

.shop-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--bs-primary);
  color: var(--mod-primary-text);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.header-nav .header-content .description {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.header-nav .header-content .description img {
  height: auto;
  max-width: 52.5rem;
  object-fit: contain;
  transition: transform 0.4s ease;
  transform: scale(1.06);
}
.header-nav .header-content .description img:hover {
  transform: scale(1.09);
}
[data-bs-theme="light"] .hero-box {
  background: rgba(255, 255, 255, 0.1); /* Fond transparent blanc */
}
[data-bs-theme="dark"] .hero-box {
  background: rgba(0, 0, 0, 0.1); /* Fond transparent noir */
}

.hero-boxes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center; /* Changé de space-between à center */
  align-items: center;
  padding: 0 5rem;
  z-index: 3;
  gap: 40rem; /* Espace entre les boxes */
}

.hero-box {
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  color: var(--bs-primary-text-emphasis);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  max-width: 300px;
}

.copy-notification {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.copy-notification.show {
  opacity: 1;
}

.hero-box:hover {
  transform: translateY(-5px);
  border-color: var(--bs-primary);
}

.hero-box i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

.hero-box .text {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-box .subtext {
  font-size: 0.9rem;
  opacity: 0.8;
}

.description {
  flex: 2;
  text-align: center;
}
.header-nav .header-content .description h1 {
  color: var(--bs-primary);
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 40px;
}
.header-nav .header-content .description p {
  font-weight: bold;
  text-align: center;
  max-width: 535px;
  font-size: 23px;
  color: var(--bs-primary-text-emphasis);
}
@media screen and (max-width: 848px) {
  .header-nav .header-content .description p {
    font-size: 17px;
  }
}

/* Animation existante à conserver */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.small-header {
  position: relative;
  z-index: 40;
  height: 70vh;
  background-position: center;
  background-size: cover;
}
.small-header:after {
  background-color: var(--mod-primary-bg);
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100vw;
  height: 70vh;
  content: "";
  display: table;
  clear: both;
}
.small-header .navigation {
  position: relative;
  z-index: 100;
  height: 78px;
  line-height: 78px;
}
.small-header-left {
  float: left;
  display: flex;
}
.small-header-left .active:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 5px;
  background-color: var(--bs-primary);
  content: "";
}
.small-header-left .nav-link {
  padding: 0;
}
.small-header-left .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.small-header-left .dropdown {
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
  text-transform: uppercase;
}
.small-header-left .dropdown .active {
  color: var(--bs-primary) !important;
  border-left: 3px solid var(--bs-primary);
}
.small-header-left .dropdown .active:after {
  display: none !important;
}
.small-header-left .dropdown a:hover, .small-header-left .dropdown:hover {
  color: var(--bs-primary);
}
.small-header-left .dropdown .dropdown-item {
  color: var(--bs-primary-text-emphasis);
  background-color: transparent !important;
}
.small-header-left .dropdown .dropdown-item .active {
  background-color: transparent !important;
  color: var(--bs-primary) !important;
}
.small-header-left .dropdown .dropdown-item .active:after {
  display: none !important;
}
.small-header-left .dropdown .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
.small-header-left .item {
  position: relative;
  transition: all 3s ease-in-out;
}
.small-header-left .item a {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bs-primary-text-emphasis);
}
.small-header-left .item a:after {
  position: absolute;
  top: 0;
  width: 110%;
  left: -5%;
  height: 0;
  background-color: var(--bs-primary);
  content: "";
  transition: all 0.3s ease-in-out;
}
.small-header-left .item a:hover:after {
  height: 5px;
}
.small-header-left .item:not(:first-child) {
  margin-left: 15px;
}
.small-header-right {
  float: right;
  position: relative;
  display: flex;
}
.small-header-right .nav-link {
  padding: 0;
}
.small-header-right .dropdown-menu {
  z-index: 999;
  line-height: initial;
  background-color: var(--bs-primary-bg-subtle);
}
.small-header-right .item {
  margin-left: 15px;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
}
.small-header-right .item a {
  color: var(--bs-primary-text-emphasis);
}
.small-header-right .item a:hover, .small-header-right .item:hover {
  color: var(--bs-primary);
  background-color: transparent;
}
.small-header-right .item .dropdown-toggle::after {
  border-top: 0.3em solid var(--bs-primary);
}
#notificationsDropdown::after {
  display: none;
}
.small-header .header-content {
  height: calc(70vh - 78px);
}
.small-header .header-content .background-brand img {
  width: 100%;
  height: calc(70vh - 78px);
  background-size: cover;
  object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .small-header .header-content {
    height: 70vh;
  }
  .small-header .header-content .background-brand img {
    height: 70vh;
  }
}


.header-mobile-nav {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  background-color: transparent;
  height: 60px;
  width: 100%;
}
.header-mobile-nav .mobile-btn {
  cursor: pointer;
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 30px;
  transform: translate3d(0, -50%, 0);
}
.header-mobile-nav .mobile-btn i {
  font-size: 30px;
  color: var(--bs-primary);
}
.header-mobile-nav .mobile-navigation {
  transition: all 0.3s ease-in-out;
  transform: translateX(-100vw);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--mod-primary-bg);
  line-height: 20px;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  padding: 30px;
}
.header-mobile-nav .mobile-navigation .nav-link {
  padding: 0;
}
.header-mobile-nav .mobile-navigation li:first-child {
  margin-top: 80px;
}
.header-mobile-nav .mobile-navigation .dropdown-menu {
  position: relative !important;
  width: 100% !important;
  transform: none !important;
  min-width: 100%;
  float: none !important;
  background-color: var(--bs-primary-bg-subtle);
}
.header-mobile-nav .mobile-navigation .item {
  position: relative;
  line-height: 34px;
  font-weight: bold;
  width: 100%;
}
.header-mobile-nav .mobile-navigation .item a {
  width: 100%;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  color: var(--bs-primary-text-emphasis);
}
.header-mobile-nav .mobile-navigation .item a:hover, .header-mobile-nav .mobile-navigation .item:hover {
  color: var(--bs-primary);
  background-color: transparent;
}
.header-mobile-nav .mobile-navigation .item .dropdown-item {
  color: var(--bs-primary-text-emphasis);
  font-size: 18px;
}
.header-mobile-nav .mobile-navigation .active:before {
  content: "";
  clear: both;
  display: table;
  position: absolute;
  left: -30px;
  height: 35px;
  width: 4px;
  background-color: var(--bs-primary);
}
.header-mobile-nav .mobile-navigation .login {
  margin-top: 20px;
}
.header-mobile-nav .mobile-navigation .logout {
  margin-top: 10px;
}
.header-mobile-nav .mobile-navigation .logout a {
  background-color: var(--bs-primary);
  padding: 8px 32px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.header-mobile-nav .mobile-navigation .logout a:hover {
  background-color: var(--bs-primary);
}

a {
  text-decoration: none;
}

.footer {
  position: relative;
  margin-top: 480px;
}
.footer .top-footer {
  background-color: var(--mod-primary-bg);
  padding: 65px 10px;
}
.footer .top-footer:after {
  position: absolute;
  z-index: -1;
  top: -400px;
  left: 0;
  width: 100vw;
  height: 400px;
  content: "";
  display: table;
  clear: both;
  background-image: url(../img/footer_shape.svg);
  background-position: center;
  background-position-y: 0px;
  background-size: cover;
}
.footer .top-footer-content {
  position: relative;
}
.footer .top-footer .footer-title {
  position: relative;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.footer .top-footer .footer-title:after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: table;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--bs-primary-text-emphasis);
  content: "";
}
.footer .top-footer .about p {
  color: var(--bs-primary-text-emphasis);
  text-align: justify;
}
.footer .top-footer .socials {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 885px) {
  .footer .top-footer .socials {
    margin-top: 40px;
    margin-bottom: 40px;
    float: right;
  }
}
.footer .top-footer .socials .social-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer .top-footer .socials .social-links i {
  font-size: 35px;
  color: var(--bs-primary);
  transition: all 0.3s ease-in-out;
}
.footer .top-footer .socials .social-links a {
  display: inline-block;
  margin-top: 5px;
  margin-left: 7px;
  margin-right: 7px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: bold;
}
.footer .top-footer .socials .social-links a:hover {
  transform: translate3d(0, -5px, 0);
}
.footer .top-footer .links a {
  text-align: center;
  display: block;
  margin-bottom: 5px;
  color: var(--bs-primary);
  transition: letter-spacing 0.3s ease-in-out;
}
.footer .top-footer .links a:hover {
  letter-spacing: 1px;
}
.footer .copyright {
  background-color: var(--bs-primary);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: var(--mod-primary-bg);
}
.footer .copyright p {
  font-size: 16px;
}
.footer .copyright span {
  color: #383a43;
  font-weight: bold;
}
.footer .copyright a[href="https://azuriom.com"] {
  color: #383a43;
  font-weight: bold;
}
.footer .copyright .mention {
  color: var(--mod-primary-bg);
  font-size: 10px;
}

@media screen and (max-width: 1200px) {
  .header-nav .navigation {
    display: none;
  }
  .header-mobile-nav {
    display: block;
  }
  .hero-box {
    display: none !important;
  }
  
  .hero-boxes {
    padding: 0 1rem;
    gap: 0;
  }
  
  .hero-boxes .description {
    display: block; /* Garde le logo visible */
  }
  
  .navbar-logo {
    display: block !important;
    position: relative !important;
    height: auto !important;
    width: 80% !important;
    max-width: 200px !important;
    margin: 0 auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    filter: none !important;
    animation: fadeInDown 0.8s ease-out;
  }
  
  .header-nav .header-content .description {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .header-nav .header-content .description img {
    max-width: 90vw;
    transform: none;
  }
}
textarea {
  background-color: var(--bs-primary-bg-subtle) !important;
  border: 2px solid var(--bs-primary) !important;
  color: var(--bs-primary-text-emphasis) !important;
  outline: 0 !important;
}
textarea:focus {
  background-color: var(--bs-primary-bg-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
  border-color: var(--bs-primary) !important;
}

input {
  background-color: var(--bs-primary-bg-subtle) !important;
  border: 2px solid var(--bs-primary) !important;
  color: var(--bs-primary-text-emphasis) !important;
  outline: 0 !important;
}
input:focus {
  background-color: var(--bs-primary-bg-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
  border-color: var(--bs-primary) !important;
}

select {
  background-color: var(--bs-primary-bg-subtle) !important;
  border: 2px solid var(--bs-primary) !important;
  color: var(--bs-primary-text-emphasis) !important;
  outline: 0 !important;
}
select:focus {
  background-color: var(--bs-primary-bg-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
  border-color: var(--bs-primary) !important;
}

.badge-success, .badge-primary, .badge-secondary, .badge-warning, .badge-info, .badge-danger,
.btn-success, .btn-primary, .btn-secondary, .btn-warning, .btn-info, .btn-danger {
  font-weight: bold;
}

.btn-danger {
  background-color: #ff5956;
  color: var(--bs-primary-text-emphasis);
}
.btn-danger:hover {
  background-color: #ff403d;
  color: var(--bs-primary-text-emphasis);
}

.page-container-content img {
  height: 275px;
  object-fit: cover;
}

.shop-sidebar {
  background-color: rgba(33, 34, 39, 0.4);
  border: 3px solid #212227;
  padding: 25px 10px;
}
.shop-sidebar .login {
  color: #EFB702;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.shop-sidebar .top-user-info {
  text-align: center;
}
.shop-sidebar .top-user-info img {
  width: 70px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.shop-sidebar .top-user-info h3 {
  font-weight: bold;
  font-size: 22px;
}
.shop-sidebar .top-user-info p {
  font-size: 18px;
}
.shop-sidebar .top-user-info i {
  font-size: 16px;
  color: #F4DF4C;
}
.shop-sidebar .top-user-info a {
  color: #EFB702;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  font-size: 20px;
}
.shop-sidebar .categories a {
  background-color: rgba(33, 34, 39, 0.8);
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #EFB702;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.shop-sidebar .categories a:hover {
  color: #212227;
  background-color: #EFB702;
}
.shop-sidebar .categories .category {
  background-color: rgba(33, 34, 39, 0.8);
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #EFB702;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.shop-sidebar .categories .category:hover {
  color: #212227;
  background-color: #EFB702;
}
.shop-sidebar .categories .sub-category {
  margin-left: 10px !important;
  background-color: rgba(33, 34, 39, 0.8);
  padding: 10px 25px;
  font-size: 18px;
  text-transform: uppercase;
  color: #EFB702;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  border-left: 4px solid #EFB702;
}
.shop-sidebar .categories .sub-category:hover {
  color: #212227;
  background-color: #EFB702;
}
.shop-sidebar .categories .active {
  color: #212227;
  background-color: #EFB702;
}

#shop .card {
  border-radius: 5px;
  border: 3px solid #EFB702;
  text-align: center;
  background-color: transparent;
}
#shop .card .card-body {
  background-color: transparent;
}
#shop .card img {
  width: 80%;
  height: auto;
  margin: 10%;
}
#shop .card h4 {
  margin-bottom: 5px;
}
#shop .card h5 {
  margin-bottom: 10px;
}
#shop .card .btn {
  padding: 10px 25px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0px;
  border: none;
  margin: 5px 0;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

[data-bs-theme=light] .header-nav .header-content:after {
  background-image: url(../img/header_shape_light.svg);
}
[data-bs-theme=light] .footer .top-footer:after {
  background-image: url(../img/footer_shape_light.svg);
}

/*# sourceMappingURL=style.css.map */
