  /* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    background-color: #111111;
    padding: 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-menu.show {
    display: block;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #333;
  }

  .mobile-menu a:hover {
    color: #DABF80;
  }

  /* Icon Group */
  .icon-group {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .icon-group a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-group img {
    height: 25px;
    width: auto;
  }

  /* Center Logo */
  .center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    width: 160px;
    z-index: 20;
    top: 10px;
  }

  /* Navbar Container */
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 10px 0;
  }

  .nav-section {
    display: flex;
    flex: 1;
  }

  .nav-section.left {
    justify-content: flex-start;
  }

  .nav-section.right {
    justify-content: flex-end;
  }

  /* Desktop Menu */
  .desktop-menu {
    display: flex;
    /* gap: 20px; */
    align-items: center;
  }

  .desktop-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

  .desktop-menu a:hover {
    color: #DABF80;
  }

  /* Media Queries */
  @media (max-width: 991px) {
    .center-logo {
      width: 120px;
    }

    .center-logo img {
      height: 30px;
    }

    .nav-section.left {
      flex: 0;
    }

    .mobile-menu-trigger {
      margin-right: 15px;
    }

    .desktop-menu,
    .desktop-icons {
      display: none !important;
    }
  }

  @media (min-width: 992px) {
    .mobile-menu {
      display: none !important;
    }

    .mobile-menu-trigger,
    .mobile-icons {
      display: none !important;
    }

    .nav-section.left {
      margin-right: 80px;
    }

    .nav-section.right {
      margin-left: 80px;
    }
  }

  /* Dropdown Menu */
  .mobile-menu .dropdown {
    width: 100%;
    border-bottom: 1px solid #333;
  }

  .mobile-menu .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    color: white;
    background: none;
    border: none;
    text-align: left;
  }

  .mobile-menu .dropdown-menu {
    position: static;
    width: 100%;
    background-color: #1a1a1a;
    border: none;
    padding-left: 15px;
    margin-top: 0;
  }

  /* Cart Container */
  .cart-container {
    position: relative;
    display: inline-block;
  }

  .product-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Sidebar Drawer */
  .sidebar-Drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: #111111;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
  }

  .sidebar-Drawer.open {
    display: block;
  }

  /* Modal Styles */
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1050;
  }

  .modal-content {
    background-color: #000;
    color: #DABF80;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    margin: 90px auto;
    border: none;
    box-shadow: 0 0 15px rgba(218, 191, 128, 0.3);
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding: 1rem;
  }

  .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }

  .modal-body ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .modal-header .form-control {
    background-color: #000;
    color: #DABF80;
    border: 1px solid #DABF80;
  }

  .modal-header .form-control::placeholder {
    color: #DABF80;
  }

  .modal-content svg,
  .modal-content i,
  .modal-content * {
    color: #DABF80;
  }

  .modal-header .btn-close {
    background: transparent;
    border: none;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DABF80' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.146a.5.5 0 0 1 .708 0L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    padding: 10px;
  }

  /* Promo Bar */
  .promo-text {
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
    text-align: center;
    padding: 0.5rem 0;
    margin-bottom: 0;
  }

  .promo-extra {
    display: none;
  }

  @media (min-width: 768px) {
    .promo-extra {
      display: inline;
    }
  }

  @media (max-width: 576px) {
    .promo-text {
      font-size: 14px;
    }
  }