@media (max-width: 991px) {

  /* ================= ANNOUNCEMENT ================= */

  .announcement-bar {
    background: #000;
    padding: 14px 16px 12px; 
  }

  .announcement-bar .announcement-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .announcement-bar span {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #fff;
  }

  .announcement-bar a {
    font-size: 14px;
    color: #d8ff00;
    font-weight: 600;
    text-decoration: underline;
  }

  /* ================= NAVBAR ================= */

  .main-navbar {
    background: #fff;
    border-bottom: 1px solid #dcdcdc;
    box-shadow: none;
  }

  .navbar-inner {
    height: 62px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 14px;
  }

  /* ================= HAMBURGER ================= */

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: none;
    color: #111;
    font-size: 27px;
    line-height: 1;
  }

  /* ================= LOGO ================= */

  .navbar-brand-custom {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-brand-custom img {
    height: 30px;
    width: auto;
    object-fit: contain;
  }

  /* ================= HIDE DESKTOP ================= */

  .nav-links,
  .search-wrapper {
    display: none !important;
  }

  /* ================= RIGHT ICONS ================= */

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-actions a {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .icon-btn {
    width: 21px;
    height: 21px;
    object-fit: contain;
  }

  /* ================= SEARCH BAR ================= */

  .search-wrapper-mobile-bar {
    display: block;
    position: relative;
    padding: 14px 16px 10px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
  }

  .search-wrapper-mobile-bar input {
    width: 100%;
    height: 40px;
    border: 1px solid #8f8f8f;
    border-radius: 30px;
    background: #fafafa;
    padding: 0 16px 0 42px;
    font-size: 14px;
    color: #111;
    outline: none;
    box-shadow: none;
  }

  .search-wrapper-mobile-bar input::placeholder {
    color: #9a9a9a;
    font-size: 14px;
  }

  .search-wrapper-mobile-bar input:focus {
    border-color: #000;
    background: #fff;
  }

  .search-wrapper-mobile-bar .search-icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-40%);
    font-size: 16px;
    color: #9a9a9a;
  }

  /* ================= MOBILE MENU ================= */

  .mobile-menu {
    padding: 18px 16px 24px;
    border-top: 1px solid #eee;
  }

  .mobile-nav-links a {
    font-size: 15px;
    padding: 12px 0;
    font-weight: 500;
  }

  .mobile-actions {
    margin-top: 18px;
    padding-top: 18px;
    gap: 18px;
  }
}



@media (max-width: 575px) {

  .navbar-inner {
    padding: 0 14px;
    gap: 10px;
  }

  .nav-actions {
    gap: 12px;
  }

  .icon-btn {
    width: 20px;
    height: 20px;
  }

  .navbar-brand-custom img {
    height: 28px;
  }

  .search-wrapper-mobile-bar {
    padding: 12px 14px 10px;
  }

  .search-wrapper-mobile-bar .search-icon {
    left: 28px;
  }

  .search-wrapper-mobile-bar input {
    font-size: 13px;
  }

  .search-wrapper-mobile-bar input::placeholder {
    font-size: 13px;
  }
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --accent: #c8a96e;
  --accent-hover: #b8935a;
  --light-gray: #f5f5f5;
  --border: #e8e8e8;
  --text-muted: #888;
}


/* ===================================================
       ANNOUNCEMENT BAR
    =================================================== */

.announcement-bar {
  background: #000;
  color: #fff;
  padding: 10px 18px; 
}

.announcement-bar .announcement-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-bar span {
  font-size: 15px;
  font-weight: 400;
}

.announcement-bar a {
  color: #d8ff00;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}
.announcement-bar a:hover{
  color: #fff;
}

/* ===================================================
       NAVBAR
    =================================================== */

.main-navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1440px;
  margin: auto;
  gap: 24px;
}

/* ===================================================
       LOGO
    =================================================== */

.navbar-brand-custom img {
  height: 33px;
  width: auto;
  object-fit: contain;
}

/* ===================================================
       DESKTOP NAV
    =================================================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-link-custom {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link-custom:hover {
  background: var(--light-gray);
}

.nav-link-custom.active {
  color: var(--accent);
  font-weight: 700;
}

/* ===================================================
       SEARCH DESKTOP
    =================================================== */

.search-wrapper {
  position: relative;
  width: 250px;
  flex-shrink: 0;
}

.search-wrapper input {
  width: 100%;
  height: 35px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--light-gray);
  padding: 0 16px 0 42px;
  font-size: 14px;
  outline: none;
}

.search-wrapper input:focus {
  border-color: var(--accent);
  background: #fff;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 360px;
  overflow-y: auto;
  display: none;
}

.search-suggestions.open {
  display: block;
}

.search-suggestions a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  transition: background 0.15s;
}

.search-suggestions a:hover {
  background: var(--light-gray);
}

.search-suggestions a + a {
  border-top: 1px solid var(--border);
}

.search-suggestions img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.search-suggestion-info {
  flex: 1;
  min-width: 0;
}

.search-suggestion-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.search-suggestion-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px solid var(--border);
  text-decoration: none;
}

.search-suggestion-view-all:hover {
  background: var(--light-gray);
  color: var(--accent-hover);
}

/* Mobile suggestion dropdown — same styles as desktop */
.search-wrapper-mobile-bar {
  position: relative;
}

/* ===================================================
       ACTION ICONS
    =================================================== */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.icon-btn {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: 0.2s ease;
  cursor: pointer;
}

.icon-btn:hover {
  opacity: 0.7;
}

.profile-initial-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-initial-btn:hover {
  color: #fff;
  opacity: 0.85;
}

/* ===================================================
       HAMBURGER
    =================================================== */

.hamburger-btn {
  display: none;
  border: none;
  background: none;
  padding: 0;
  font-size: 28px;
  color: #111;
}

/* ===================================================
       MEGA MENU
    =================================================== */

.nav-dropdown {
  position: relative;
}

.mega-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: -120px;
  width: 780px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.nav-dropdown:hover .mega-dropdown-menu {
  display: flex;
  gap: 22px;
}

.mega-col {
  min-width: 130px;
  border-right: 1px solid #303030;
  padding: 0 22px;
}

.mega-col:last-child {
  border-right: none;
}

.mega-col-header {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.mega-col-header:hover {
  color: var(--accent);
}

.mega-link {
  display: block;
  text-decoration: none;
  color: #555;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 7px;
  font-weight: 400;
}

.mega-link-featured {
  color: #111;
  font-weight: 700;
}

.mega-link-nested {
  padding-left: 0;
}

.mega-link:hover {
  color: var(--accent);
}

/* ===================================================
       MOBILE SEARCH BAR
    =================================================== */

.search-wrapper-mobile-bar {
  display: none;
  padding: 12px 16px;
  position: relative;
  border-top: 1px solid var(--border);
  background: #fff;
}

.search-wrapper-mobile-bar input {
  width: 100%;
  height: 42px;
  border-radius: 40px;
  border: 1px solid #9f9f9f;
  padding: 0 16px 0 42px;
  background: #fafafa;
  outline: none;
  font-size: 14px;
}

.search-wrapper-mobile-bar .search-icon {
  left: 30px;
}

/* ===================================================
       MOBILE MENU
    =================================================== */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 10px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===================================================
       RESPONSIVE
    =================================================== */

@media (max-width: 1024px) {

  .nav-links,
  .search-wrapper {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .navbar-inner {
    height: 68px;
    padding: 0 16px;
  }

  .navbar-brand-custom {
    margin: auto;
  }

  .nav-actions {
    gap: 14px;
  }

  .nav-actions a img {
    width: 21px;
    height: 21px;
  }

  .search-wrapper-mobile-bar {
    display: block;
  }
}

@media (max-width: 575px) {

  .announcement-bar {
    padding: 12px 14px;
  }

  .announcement-bar span,
  .announcement-bar a {
    font-size: 13px;
  }

  .navbar-brand-custom img {
    height: 25px;
  }

  .navbar-inner {
    gap: 10px;
  }

  .nav-actions {
    gap: 12px;
  }

  .icon-btn {
    width: 20px;
    height: 20px;
  }

  .search-wrapper-mobile-bar {
    padding: 10px 16px;
  }

  .search-wrapper-mobile-bar input {
    height: 40px;
    font-size: 14px;
  }
}



 
/* =========================================================
  MOBILE SHOP DROPDOWN
  ========================================================= */

.mobile-dropdown-item {
  width: 100%;
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-toggle i {
  font-size: 14px;
  transition: 0.3s ease;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

/* SUB MENU */

.mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 14px;
  margin-top: 4px;
  margin-bottom: 10px;
  border-left: 1px solid #e5e5e5;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu li {
  margin-bottom: 0;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0 !important;
  font-size: 14px !important;
  color: #666 !important;
  font-weight: 400 !important;
  text-decoration: none;
  transition: 0.2s ease;
}

.mobile-submenu a:hover {
  color: #000 !important;
}

.mobile-submenu-heading {
  color: #111 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}

.mobile-submenu-nested {
  list-style: none;
  padding-left: 14px;
  margin: 0 0 8px;
}

.mobile-submenu-nested a {
  font-size: 13px !important;
  padding: 6px 0 !important;
}
