.mobile-menu-panel,
.search-panel {
    background: radial-gradient(circle at 50% 0, rgba(201,149,53,.13), transparent 34%), linear-gradient(180deg, #11100c, #030302) !important;
    color: #efe2c8 !important;
    border-color: rgba(201,149,53,.42) !important;
}

.mobile-menu-overlay,
.search-overlay {
    background: rgba(0,0,0,.74) !important;
    backdrop-filter: blur(4px);
}

.mobile-menu-header,
.mobile-search-header {
    color: #f0cf83 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201,149,53,.20) !important;
}

.mobile-nav a,
.secondary-menu a {
    color: #efe2c8 !important;
    border-bottom-color: rgba(201,149,53,.20) !important;
}

.mobile-nav a:hover,
.secondary-menu a:hover {
    color: #f0cf83 !important;
    background: rgba(201,149,53,.10) !important;
}

.mobile-nav svg,
.mobile-nav svg path,
.menu-icon svg,
.menu-icon svg path {
    fill: #f0cf83 !important;
    color: #f0cf83 !important;
}

.mobile-menu-close-top,
.mobile-menu-close-bottom,
.search-close-top,
.search-close-bottom {
    color: #f0cf83 !important;
    border-color: rgba(201,149,53,.42) !important;
    background: #11100c !important;
}


/* ===== Menu Styles ===== */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 1002;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-panel.open {
  left: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #f0cf83;
}

.mobile-menu-close-top {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1003;
  line-height: 1;
  padding: 5px 10px;
  color: #f0cf83;
}

.mobile-menu-close-bottom {
  width: calc(100% - 40px);
  margin: 20px;
  padding: 15px;
  background-color: #f0f0f0;
  border: 1px solid #f0cf83;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #f0cf83;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.mobile-menu-close-top:hover {
  color: #ff0000;
}

.mobile-menu-close-bottom:hover {
  background-color: #f0cf83;
}

.mobile-nav {
  flex: 1;
  padding: 10px 20px;
}

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

.mobile-nav li {
  /*margin-bottom: 5px;*/
}

.mobile-nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f0cf83;
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  background-color: #f5f5f5;
  padding-left: 20px;
}

/* Icon styles */
.menu-icon {
  display: inline-flex;
  margin-right: 6px;
  align-items: center;
  justify-content: center;
  width: 24px;
  font-size: 18px;
}

.menu-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Main menu specific */
.main-menu li a {
  font-weight: 500;
}

/* Deals item special styling */
.deals-item a {
  color: #f44336;
  font-weight: 600;
}

.deals-item a:hover {
  background-color: #fff1f0;
}

/* Divider */
.menu-divider {
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

/* Secondary menu */
.secondary-menu li a {
  color: #b9a984;
  font-size: 15px;
  padding: 10px 15px;
}

.secondary-menu li a:hover {
  color: #f0cf83;
}

/* ===== Search Styles ===== */
.search-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 1004;
  transition: right 0.3s ease;
  padding: 30px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.search-panel.open {
  right: 0;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-close-top {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1005;
  line-height: 1;
  padding: 5px 10px;
  color: #f0cf83;
}

.search-close-bottom {
  width: 100%;
  padding: 15px;
  margin-top: 30px;
  background-color: #f0f0f0;
  border: 1px solid #f0cf83;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #f0cf83;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.search-close-top:hover {
  color: #ff0000;
}

.search-close-bottom:hover {
  background-color: #f0cf83;
}

.search-content {
  flex: 1;
}

.mobile-search-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #f0cf83;
}

.search-content .fibosearch {
  width: 100%;
}

/* ===== Icon Trigger Styles ===== */
.jg-m-menutoggle,
.jg-m-searchbar {
  cursor: pointer;
}

/* ===== Force no space from widget =====
.elementor-widget-html,
.elementor-widget-html .elementor-widget-container,
.mobile-toggles {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
} */

/* ===== Mobile Optimization ===== */
@media (max-width: 480px) {
  .mobile-menu-panel {
    width: 85%;
    left: -85%;
  }
  
  .search-panel {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu-close-bottom,
  .search-close-bottom {
    padding: 18px;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .mobile-nav a {
    padding: 15px;
  }
}