body {
  background: var(--site-background-color);
}
body.has-offcanvas {
  overflow: hidden;
}
#page-container {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
#content-wrapper {
  flex-grow: 1;
  margin: 0 0.5em;
}
@media (min-width: 1460px) {
  #content-wrapper {
    margin: 0;
  }
}
#important-notice {
  background: var(--important-notice-background-color);
  color: var(--important-notice-text-color);
  text-align: center;
}
#important-notice .fourteen-forty {
  padding: 0.5em var(--gutter-x);
}
@media (max-width: 991px) {
  #site-menu {
    position: sticky;
    display: block;
    top: 0;
    z-index: 999;
    transition: top 200ms linear;
  }
  #site-menu .navbar-header a {
    color: var(--navigation-text-color);
  }
}
@media (max-width: 991px) {
  #site-menu .container {
    padding: 0 !important;
  }
}
#site-menu .quick-access {
  display: flex;
  font-size: 0.8em;
  align-items: center;
  gap: 1em;
}
@media (min-width: 768px) {
  #site-menu .quick-access {
    font-size: 1em;
  }
}
@media (min-width: 992px) {
  #site-menu .quick-access {
    font-size: 1em;
  }
}
#site-menu .navbar {
  padding: 0.5rem var(--gutter-x);
}
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 0;
    padding: 0;
  }
  #site-menu .navbar .dropdown-menu .nav-link {
    background: var(--dropdown-menu-item-background-color);
    color: var(--dropdown-menu-item-text-color);
  }
  #site-menu .navbar .dropdown-menu .nav-link:hover {
    filter: brightness(0.95);
  }
}
#site-menu .dropdown-menu {
  overflow: hidden;
  --gutter-y: 0.75em;
}
body.scrolling-down #site-menu {
  top: -6em;
}
.navbar-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.5em 1em;
  justify-content: space-between;
  background: var(--header-background-color);
  color: var(--header-text-color);
  width: 100%;
}
@media (min-width: 768px) {
  .navbar-header {
    gap: var(--gutter-x);
  }
}
@media (min-width: 992px) {
  .navbar-header {
    position: static;
    margin-bottom: var(--gutter-y);
    padding-left: 1em;
    padding-right: 1em;
  }
}
.navbar-header .fourteen-forty {
  display: inherit;
  flex-flow: inherit;
  gap: inherit;
  justify-content: inherit;
  align-items: inherit;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-header .logotype {
  flex-grow: 1;
}
.navbar-header .logotype img {
  max-width: 140px;
  max-height: 32px;
}
@media (min-width: 768px) {
  .navbar-header .logotype img {
    max-width: 250px;
    max-height: 60px;
  }
}
@media (min-width: 768px) {
  .navbar-header .logotype {
    width: auto;
  }
}
@media (min-width: 992px) {
  .navbar-header .logotype {
    flex-grow: 0;
  }
}
.navbar-header .navbar-brand {
  display: none;
  width: calc(var(--sidebar-width) + var(--gutter-x)/2);
  font-size: 17px;
}
.navbar-header .navbar-brand:hover,
.navbar-header .navbar-brand:focus {
  text-decoration: none;
}
.navbar-header .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar-header .navbar-brand {
    display: block;
  }
}
.navbar-header form[name="search_form"] .input-group {
  background-color: #f1f3f5;
}
.navbar-header .navbar-search {
  flex: 1 1 auto;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .navbar-header .navbar-search {
    width: 100%;
    order: 999;
  }
}
@media (min-width: 992px) {
  .navbar-header .navbar-search {
    max-width: 600px;
  }
}
.navbar-header .navbar-icon {
  font-size: 1.5em;
}
/* Old cart styles removed to avoid conflict with modern custom overrides */
#sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
}
#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  padding: var(--gutter-y) var(--gutter-x);
}
#footer a {
  color: inherit;
}
#footer .columns {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  grid-gap: var(--gutter-x);
}
@media (min-width: 768px) {
  #footer .columns {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  #footer .columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
#footer .title {
  font-size: 1.5em;
  margin: 0 0 0.75em 0;
  color: var(--footer-title-color);
}
#footer ul.list-vertical li {
  padding: 0;
}
#copyright {
  background: var(--copyright-background-color);
  color: var(--copyright-text-color);
}
#copyright .container {
  padding: 0.75em var(--gutter-x);
}
#copyright .notice {
  text-align: center;
}
#copyright .notice a {
  color: inherit;
  text-decoration: underline;
}
#scroll-up {
  bottom: 30px;
  display: none;
  height: 48px;
  opacity: 0.3;
  position: fixed;
  right: 30px;
  width: 48px;
}
/* Boxes */
.box {
  margin-bottom: var(--gutter-y);
}
#box-filter .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#box-filter .filters > * {
  flex: 1 1 auto;
  min-width: fit-content;
}
#box-filter .filters [data-toggle="dropdown"] {
  cursor: pointer;
}
#box-filter .filters .dropdown-menu li {
  margin: 0.5em 1em;
}
#box-filter .filters .dropdown-menu .option {
  white-space: nowrap;
}
#box-filter .manufacturers ul {
  max-height: 200px;
  overflow-y: auto;
}
#box-filter .tokens {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#box-filter .tokens:not(:empty) {
  padding-top: var(--gutter-y);
}
#box-filter .tokens .token {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: var(--border-radius);
  cursor: default;
}
#box-filter .tokens .token[data-group="name"] {
  background: #cbe2b6;
}
#box-filter .tokens .token[data-group="manufacturer"] {
  background: #b6c2e2;
}
#box-filter .tokens .token[data-group^="attribute"] {
  background: #e2c6b6;
}
#box-filter .tokens .token .remove {
  padding-inline-start: 0.5em;
  color: inherit;
  font-weight: 600;
}
#box-cookie-notice {
  background: var(--cookie-notice-background-color);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  backdrop-filter: saturate(200%) blur(5px);
  color: var(--cookie-notice-text-color);
  z-index: 999;
}
#box-cookie-notice .notice {
  margin-bottom: 1em;
}
#box-cookie-notice .notice a {
  color: inherit;
  text-decoration: underline;
}
#box-cookie-notice button {
  margin: 0 0.5em;
}
@media (min-width: 768px) {
  #box-cookie-notice {
    max-width: 480px;
    margin: 0 auto;
    bottom: var(--gutter-y);
    border-radius: var(--border-radius);
  }
}
#box-recently-viewed-products .link img {
  transition: all 100ms linear;
}
#box-recently-viewed-products .link img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  #box-also-purchased-products {
    position: sticky;
    top: 0;
  }
}
#box-manufacturer-logotypes img {
  max-height: 60px;
}
#box-recently-viewed-products .listing {
  grid-template-columns: repeat(auto-fill, minmax(48px, 0.5fr));
}
.listing {
  display: grid;
  grid-gap: var(--gutter-x);
}
@media (min-width: 768px) {
  .listing {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}
@media (min-width: 768px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (min-width: 992px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  }
}
.listing.products.rows {
  grid-auto-flow: row;
  grid-template-columns: initial;
}
.listing.categories {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.listing.manufacturers {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .listing.manufacturers {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing h1,
.listing h2,
.listing h3 {
  padding-bottom: 0;
  border: none;
}
.listing a {
  color: inherit;
  text-decoration: none;
}
.listing .category,
.listing .manufacturer,
.listing .product {
  position: relative;
  overflow: hidden;
  background: var(--image-whitespace-color);
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
  transform: scale(1);
  transition: all 100ms linear;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover {
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
  }
}
.listing .category {
  position: relative;
  background: var(--whitespace-color);
}
.listing .category .caption {
  background: var(--whitespace-color);
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  color: var(--default-text-color);
  text-align: center;
}
.listing .category .caption * {
  font-weight: normal;
  color: inherit;
  margin: 0;
}
.listing .category .caption .name {
  font-size: 1.15em;
}
.listing .manufacturer {
  position: relative;
  background: var(--whitespace-color);
}
.listing .manufacturer img {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.listing .manufacturer .caption {
  margin: 0;
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  background: #f2f2f2;
  color: var(--default-text-color);
  text-align: center;
}
.listing .product {
  position: relative;
  background: var(--whitespace-color);
}
.listing .product .link {
  text-decoration: none;
}
.listing .product .image-wrapper {
  background: var(--image-whitespace-color);
}
.listing .product .image-wrapper .sticker {
  position: absolute;
  top: 20px;
  left: -32px;
  width: 125px;
  padding: 0.25rem 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}
.listing .product .image-wrapper .sticker.new {
  background: rgba(251, 184, 41, 0.9);
}
.listing .product .image-wrapper .sticker.sale {
  background: rgba(237, 60, 50, 0.9);
}
.listing .product .name {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 40px;
  font-size: 1em;
  font-weight: 400;
  line-height: 115%;
  border-bottom: 0;
  margin: 0;
}
.listing .product .manufacturer-name {
  color: var(--default-text-color);
  font-size: 0.9em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 200%;
  opacity: 0.75;
}
.listing .product .description {
  max-width: 640px;
  text-align: left;
}
.listing .product .stock-available .value {
  color: #009900;
}
.listing .product .stock-partly-available .value {
  color: #ff9900;
}
.listing .product .stock-unavailable .value {
  color: #cc0000;
}
.listing .product .price-wrapper {
  font-size: 1.25em;
}
.listing .product .price-wrapper .price {
  font-weight: bold;
  white-space: nowrap;
}
.listing .product .price-wrapper .regular-price,
.listing .product .price-wrapper .recommended-price {
  color: var(--default-text-color);
  font-size: 0.75em;
  font-weight: normal;
  white-space: nowrap;
}
.listing .product .price-wrapper .campaign-price {
  font-weight: bold;
  color: #c00;
  white-space: nowrap;
}
.listing .product .preview {
  margin: 0 -1px -1px -1px;
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
  padding: var(--input-padding-y);
  width: 3em;
  box-shadow: none;
}
@media (min-width: 768px) {
  .listing .product:hover .preview {
    display: inline-block;
  }
}
.listing.columns .product .image {
  width: 100%;
  height: auto;
}
.listing.columns .product .info {
  padding: 0.5rem 0;
  text-align: center;
}
.listing.columns .product .description {
  display: none;
}
.listing.columns .product .price-wrapper {
  position: initial;
}
.listing.rows .product .link {
  display: flex;
  gap: var(--gutter-x);
  padding: var(--gutter-y) var(--gutter-x);
}
.listing.rows .product .info {
  flex: 1 1 auto;
}
.listing.rows .product .image-wrapper {
  width: 175px;
}
@media (min-width: 768px) {
  .listing.rows .product .image-wrapper {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .listing.rows .product {
    height: auto;
  }
  .listing.rows .product .description {
    margin-bottom: 1em;
  }
}
#box-product form[name="buy_now_form"] {
  padding: var(--gutter-y) var(--gutter-x);
  margin: 1em 0;
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
}
#box-product .images {
  margin-bottom: var(--gutter-y);
}
#box-product .main-image {
  position: relative;
  background: var(--whitespace-color);
  overflow: hidden;
}
#box-product .main-image .sticker {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  top: 15px;
  left: -35px;
  padding: 0.25rem 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  width: 140px;
}
#box-product .main-image .sticker.new {
  background: rgba(251, 184, 41, 0.85);
}
#box-product .main-image .sticker.sale {
  background: rgba(237, 60, 50, 0.85);
}
#box-product .price-wrapper {
  font-size: 1.75em;
}
#box-product .price-wrapper .regular-price,
#box-product .price-wrapper .recommended-price {
  font-size: 0.75em;
}
#box-product .price-wrapper .campaign-price {
  color: #cc0000;
}
#box-product .tax {
  color: #999;
}
#box-product .stock-available .value {
  color: #009900;
}
#box-product .stock-partly-available .value {
  color: #ff9900;
}
#box-product .stock-unavailable .value {
  color: #cc0000;
}
#box-product .out-of-stock-notice {
  background: var(--default-background-color);
  border: 1px solid var(--default-border-color);
  padding: var(--gutter-y) var(--gutter-x);
  border-radius: var(--border-radius);
}
#box-product .stock-notice {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: var(--border-radius);
  border: 1px #86cb00 solid;
  color: #86cb00;
}
#box-product .stock-notice:empty {
  display: none;
}
#box-product .stock-notice.notice {
  color: #e58310;
  border-color: #e58310;
}
#box-product .stock-notice.warning {
  color: #c00;
  border-color: #c00;
}
#box-product .stock-notice .description {
  margin-top: 1em;
  font-size: 0.8em;
}
#box-product .social-bookmarks {
  font-size: 1.75em;
  margin-top: 1em;
}
#box-product .social-bookmarks a {
  margin: 0 0.25em;
}
#box-product .description p:first-child {
  margin-top: 0;
}
#box-product .description p:last-child {
  margin-bottom: 0;
}
#box-product .description a {
  text-decoration: underline;
}

/* ==========================================================================
   Kenixx Premium Custom Overrides (Modern E-commerce Styling)
   ========================================================================== */

h1, h2, h3, h4, h5, h6, .title, .logotype {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  color: #0f172a;
}

#site-menu {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  position: sticky;
  top: 0;
  z-index: 10000 !important; /* Stacks above the offcanvas backdrop */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keep header sticky and visible on scroll without hiding */
body.scrolling-down #site-menu {
  top: 0 !important;
}

/* Reset old desktop layout rules to create a clean single-row header */
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 0 !important;
    padding: 0 var(--gutter-x) !important;
    display: flex !important;
    align-items: center !important;
    min-height: 52px !important;
    height: auto !important;
  }
  
  .navbar-header {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.25rem 0 !important;
    width: 100% !important;
    background: transparent !important;
    gap: 1.5rem !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }

  .navbar-header .logotype {
    flex-grow: 0 !important;
  }

  .navbar-header .logotype img {
    max-height: 36px !important; /* Restrain height for perfect alignment */
  }
}

@media (max-width: 991px) {
  .navbar-header {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.4rem 0.75rem !important;
  }
}

/* Unified Search + Categories Wrapper */
.header-search-wrapper {
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 36px;
  /* overflow: hidden; -> Removed to allow categories dropdown list to render outside of the bar */
  flex: 1 1 auto;
  margin: 0 auto;
}

.header-search-wrapper:focus-within {
  background-color: #ffffff;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15), 0 4px 12px rgba(15, 23, 42, 0.05);
}

@media (max-width: 991px) {
  .header-search-wrapper {
    order: 999 !important; /* Push search below logo and icons on mobile */
    margin-top: 6px !important;
    max-width: 100% !important;
    overflow: hidden; /* Safe on mobile since categories dropdown is hidden */
  }
}

/* Categories Dropdown in Unified Bar */
.categories-dropdown {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}

.categories-dropdown .categories-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: transparent;
  border: none;
  border-right: 1px solid #cbd5e1;
  border-radius: 0;
  color: #475569;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  height: 100%;
  cursor: pointer;
}

.categories-dropdown .categories-toggle:hover,
.categories-dropdown.open .categories-toggle {
  color: #4f46e5;
  background-color: rgba(15, 23, 42, 0.03);
}

.categories-dropdown .dropdown-menu {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  padding: 8px;
  min-width: 240px;
  margin-top: 6px;
  background: #ffffff;
  z-index: 1010; /* Ensure it stays above the stickied header */
}

.categories-dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #475569;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.categories-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f1f5f9;
  color: #4f46e5;
}

/* Search Form inside Unified Bar */
.navbar-header form[name="search_form"] {
  flex: 1 1 auto;
  margin: 0;
  height: 100%;
}

.navbar-header .search-input-container {
  display: flex;
  align-items: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 16px;
  position: relative;
  width: 100%;
  height: 100%;
}

.navbar-header .search-icon {
  color: #64748b;
  font-size: 1.05rem;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.navbar-header input[type="search"].search-query-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100% !important;
  color: #0f172a !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  height: 100% !important;
}

.navbar-header input[type="search"].search-query-input:focus {
  outline: none !important;
}

/* Quick Access & Buttons styling */
#site-menu .quick-access {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#site-menu .quick-access > a,
#site-menu .quick-access .account-dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 36px;
  white-space: nowrap !important; /* Force text to stay on a single line */
}

#site-menu .quick-access > a:hover,
#site-menu .quick-access .account-dropdown > a:hover,
#site-menu .quick-access .account-dropdown.open > a {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
  color: #4f46e5;
}

#site-menu .quick-access .navbar-icon {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#site-menu .quick-access small {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap !important;
  display: inline-block !important;
}

/* Account Dropdown Form Overrides */
#site-menu .quick-access .account-dropdown {
  position: relative;
}

#site-menu .quick-access .account-dropdown .dropdown-menu {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  padding: 16px;
  margin-top: 10px;
  background: #ffffff;
}

#site-menu .quick-access .account-dropdown .dropdown-menu form.navbar-form input {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
  width: 100%;
}

#site-menu .quick-access .account-dropdown .dropdown-menu form.navbar-form input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  outline: none;
}

/* Cart Button & Badge Overrides */
a#cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px !important;
  background: #4f46e5 !important;
  border: 1px solid transparent !important;
  border-radius: 9999px !important;
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -2px rgba(79, 70, 229, 0.1);
  height: 42px;
}

a#cart:hover {
  background: #4338ca !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.15);
}

a#cart .navbar-icon {
  font-size: 1.15rem;
  color: #ffffff !important;
}

a#cart small {
  color: #ffffff !important;
}

a#cart .badge.quantity {
  background: #ffffff !important;
  color: #4f46e5 !important;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.78rem;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-left: 2px;
  position: static !important;
  top: auto !important;
  right: auto !important;
}

/* Custom Styled Hamburger Toggler for Desktop & Mobile */
#site-menu .quick-access .navbar-toggler {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 50% !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  margin: 0;
}

#site-menu .quick-access .navbar-toggler:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

#site-menu .quick-access .navbar-toggler:hover .icon-bar {
  background-color: #4f46e5;
}

#site-menu .quick-access .navbar-toggler .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #475569;
  border-radius: 1px;
  transition: all 0.2s ease;
}

/* Offcanvas Drawer Overrides (Left-Aligned, Nice & Simple styling) */
#offcanvas {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;   /* Align to left side */
  right: auto !important; /* Reset right positioning */
  width: 300px !important;
  height: 100% !important;
  background: #ffffff !important;
  visibility: hidden !important;
  transform: translateX(-100%) !important; /* Slide in from left */
  box-shadow: 6px 0 25px rgba(15, 23, 42, 0.08) !important;
  z-index: 10010 !important; /* Higher than backdrop */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  border-radius: 0 !important; /* Minimal sharp clean layout */
  border-right: 1px solid #e2e8f0 !important;
  flex-direction: column !important;
}

#offcanvas.show {
  transform: translateX(0) !important;
  visibility: visible !important;
}

/* Add custom blurred backdrop overlay using body::after */
body.has-offcanvas::after {
  content: '' !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(15, 23, 42, 0.3) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 9999 !important; /* Under the header (10000) and offcanvas (10010) */
  animation: offcanvasBackdropFadeIn 0.25s ease-out !important;
}

@keyframes offcanvasBackdropFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#offcanvas .offcanvas-header {
  display: flex !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #ffffff !important;
}

#offcanvas .offcanvas-header .offcanvas-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  color: #0f172a !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

#offcanvas .offcanvas-header [data-toggle="dismiss"] {
  background: transparent !important;
  border: none !important;
  font-size: 1.2rem !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

#offcanvas .offcanvas-header [data-toggle="dismiss"]:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

#offcanvas .offcanvas-body {
  display: block !important;
  padding: 1.25rem 1.5rem !important;
  overflow-y: auto !important;
  flex-grow: 1 !important;
  background: #ffffff !important;
}

#offcanvas .navbar-nav {
  flex-direction: column !important;
  gap: 0.25rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

#offcanvas .navbar-nav .nav-link {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #1e293b !important; /* Slate 800 */
  padding: 10px 12px !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  text-align: left !important;
  transition: all 0.15s ease !important;
  background: transparent !important;
  text-decoration: none !important;
}

#offcanvas .navbar-nav .nav-link:hover {
  background-color: #f8fafc !important;
  color: #4f46e5 !important; /* Indigo on hover */
}

/* Highlight active item */
#offcanvas .navbar-nav .nav-item.active > .nav-link,
#offcanvas .navbar-nav .nav-link.active {
  background-color: #f1f5f9 !important;
  color: #4f46e5 !important;
}

/* Sub-items dropdowns inside sidebar drawer */
#offcanvas .navbar-nav .dropdown-menu {
  position: static !important;
  float: none !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  padding-left: 0.75rem !important;
  margin: 0.25rem 0 0.5rem 0 !important;
  background: transparent !important;
  display: block !important; /* Always show sub-items expanded in sidebar */
  border-left: 1px solid #e2e8f0 !important;
  margin-left: 10px !important;
}

#offcanvas .navbar-nav .dropdown-menu .nav-link {
  font-weight: 400 !important;
  font-size: 0.9rem !important;
  padding: 6px 12px !important;
  color: #475569 !important; /* Slate 600 */
}

#offcanvas .navbar-nav .dropdown-menu .nav-link:hover {
  background-color: #f8fafc !important;
  color: #4f46e5 !important;
}

/* Mobile specific styling adjustments */
@media (max-width: 767px) {
  #site-menu .quick-access > a,
  #site-menu .quick-access .account-dropdown > a,
  #site-menu .quick-access .navbar-toggler {
    padding: 8px;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50%;
  }
  
  #site-menu .quick-access small {
    display: none !important;
  }

  a#cart {
    padding: 8px !important;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50% !important;
  }
  
  a#cart .badge.quantity {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    margin-left: 0;
  }
}

/* Modern Card Layouts */
.listing .product {
  border: 1px solid #f1f5f9 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03) !important;
  background: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing .product:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05) !important;
  border-color: #e2e8f0 !important;
}

.listing .product .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.listing .product .image-wrapper img {
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
  max-height: 180px;
  object-fit: contain;
}

.listing .product:hover .image-wrapper img {
  transform: scale(1.05);
}

.listing .product .info {
  padding: 0 4px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left !important;
}

.listing .product .manufacturer-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  order: -1;
}

.listing .product .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.3;
  height: auto;
  min-height: 40px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing .product .price-wrapper {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.listing .product .price-wrapper .price {
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.15rem;
}

.listing .product .price-wrapper .campaign-price {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.15rem;
}

.listing .product .price-wrapper .regular-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.85rem;
}

.listing .product .image-wrapper .sticker {
  border-radius: 4px;
  font-size: 10px;
  padding: 2px 6px;
  top: 8px;
  left: 8px;
  width: auto;
  transform: none;
  letter-spacing: 0.05em;
}

.listing .product .image-wrapper .sticker.new {
  background: #e0f2fe;
  color: #0369a1;
}

.listing .product .image-wrapper .sticker.sale {
  background: #fee2e2;
  color: #b91c1c;
}

.listing .product .preview {
  border-radius: 9999px !important;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #334155;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
}

.listing .product:hover .preview {
  opacity: 1;
  display: flex;
}

.listing .product .preview:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
}

/* Box Product Detail Styling */
#box-product form[name="buy_now_form"] {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  padding: var(--gutter-y) var(--gutter-x);
}

#box-product .price-wrapper {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

#box-product .price-wrapper .campaign-price {
  color: #ef4444;
}

#box-product .price-wrapper .regular-price {
  color: #94a3b8;
  text-decoration: line-through;
}

#box-product .main-image {
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

#box-product .main-image img {
  max-height: 450px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ==========================================================================
   eBay Gallery Style Styling
   ========================================================================== */
.ebay-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ebay-gallery .main-image-container {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  max-height: 450px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.ebay-gallery .main-image-container img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 0.15s ease-in-out;
}

.ebay-gallery .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  color: #334155;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  z-index: 10;
  opacity: 0;
}

.ebay-gallery .main-image-container:hover .gallery-arrow {
  opacity: 1;
}

.ebay-gallery .gallery-arrow:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  transform: translateY(-50%) scale(1.05);
}

.ebay-gallery .arrow-prev {
  left: 12px;
}

.ebay-gallery .arrow-next {
  right: 12px;
}

/* Thumbnails list */
.ebay-gallery .thumbnails-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 8px;
}

.ebay-gallery .thumbnail-item {
  width: 70px;
  height: 70px;
  padding: 4px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ebay-gallery .thumbnail-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ebay-gallery .thumbnail-item.active,
.ebay-gallery .thumbnail-item:hover {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Custom Lightbox Modal */
.custom-lightbox-modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95); /* Dark Slate backdrop */
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.custom-lightbox-modal .lightbox-content-container {
  position: relative;
  max-width: 85%;
  max-height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-lightbox-modal .lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s ease-in-out;
}

.custom-lightbox-modal .lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #f1f5f9;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10010;
}

.custom-lightbox-modal .lightbox-close:hover {
  color: #ef4444;
}

.custom-lightbox-modal .lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  z-index: 10010;
}

.custom-lightbox-modal .lightbox-arrow:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.custom-lightbox-modal .lightbox-prev {
  left: 32px;
}

.custom-lightbox-modal .lightbox-next {
  right: 32px;
}

@media (max-width: 768px) {
  .custom-lightbox-modal .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .custom-lightbox-modal .lightbox-prev {
    left: 12px;
  }
  .custom-lightbox-modal .lightbox-next {
    right: 12px;
  }
  .custom-lightbox-modal .lightbox-close {
    top: 16px;
    right: 20px;
  }
  .custom-lightbox-modal .lightbox-image {
    max-height: 60vh;
  }
}

/* Lightbox Thumbnails strip at the bottom */
.custom-lightbox-modal .lightbox-thumbnails-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 32px;
  overflow-x: auto;
  max-width: 90%;
  padding: 8px;
  justify-content: center;
}

.custom-lightbox-modal .lightbox-thumb {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  background: #ffffff;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-lightbox-modal .lightbox-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.custom-lightbox-modal .lightbox-thumb:hover,
.custom-lightbox-modal .lightbox-thumb.active {
  opacity: 1;
  border-color: #4f46e5;
  transform: scale(1.05);
}

/* Load More Button styling */
.btn-load-more {
  background-color: #ffffff !important;
  color: #4f46e5 !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 9999px !important;
  padding: 12px 36px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-load-more:hover {
  background-color: #4f46e5 !important;
  color: #ffffff !important;
  border-color: #4f46e5 !important;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -4px rgba(79, 70, 229, 0.3) !important;
  transform: translateY(-2px) !important;
}

.btn-load-more:active {
  transform: translateY(0px) !important;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2) !important;
}

/* Trust Badges Banner */
.trust-badges-banner {
  background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
  color: #ffffff;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  margin-bottom: var(--gutter-y);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.15);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.trust-badge-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.trust-badge-icon {
  font-size: 1.8rem;
  color: #c7d2fe; /* Soft light indigo */
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
  border-radius: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
}

.trust-badge-info h3 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  color: #ffffff !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.2 !important;
}

.trust-badge-info p {
  color: #c7d2fe;
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0;
}

/* Predictive Search Dropdown */
.predictive-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  margin-top: 8px;
  z-index: 1000;
  max-height: 420px;
  overflow-y: auto;
  padding: 8px 0;
}

.predictive-results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.predictive-item {
  transition: background 0.2s ease;
}

.predictive-item a.predictive-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #334155;
  text-decoration: none;
  text-align: left;
}

.predictive-item.active,
.predictive-item:hover {
  background: #f1f5f9;
}

.predictive-item.active a.predictive-link {
  color: #4f46e5;
}

.predictive-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.predictive-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.predictive-info {
  flex-grow: 1;
  min-width: 0;
}

.predictive-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.predictive-brand {
  font-size: 0.78rem;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 2px;
}

.predictive-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #4f46e5;
  margin-top: 4px;
}

/* Mobile Bottom Navigation Bar (Mercari Style) */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  /* Style the Bottom Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    background-color: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.04) !important;
    z-index: 10000 !important; /* Stack above the page but below the offcanvas menu (10010) */
    align-items: center !important;
    justify-content: space-around !important;
    padding-bottom: env(safe-area-inset-bottom) !important; /* Support iOS notch spacing */
  }

  .mobile-bottom-nav .nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748b !important;
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    gap: 3px !important;
    flex: 1 !important;
    height: 100% !important;
    transition: color 0.15s ease !important;
  }

  .mobile-bottom-nav .nav-item i {
    font-size: 1.25rem !important;
    color: #64748b !important;
    transition: color 0.15s ease !important;
  }

  .mobile-bottom-nav .nav-item:hover,
  .mobile-bottom-nav .nav-item.active {
    color: #4f46e5 !important; /* Indigo primary accent */
  }

  .mobile-bottom-nav .nav-item:hover i,
  .mobile-bottom-nav .nav-item.active i {
    color: #4f46e5 !important;
  }

  /* Cart Badge in Bottom Nav */
  .mobile-bottom-nav .cart-icon-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-bottom-nav .mobile-cart-badge {
    position: absolute !important;
    top: -6px !important;
    right: -10px !important;
    background: #4f46e5 !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    min-width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 4px !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
  }

  /* Hide unnecessary top header icons on mobile, keep only logo & hamburger */
  #site-menu .quick-access > a,
  #site-menu .quick-access .account-dropdown {
    display: none !important;
  }

  #site-menu .quick-access .navbar-toggler {
    display: flex !important; /* Keep only the hamburger toggler in the header */
    width: 38px !important;
    height: 38px !important;
  }

  /* Add padding to the body so content doesn't get covered by the bottom bar */
  body {
    padding-bottom: 60px !important;
  }
}
