/* ===== Base & Reset Styles ===== */
:root {
  --jk-primary-color: #ff9900;
  --jk-primary-dark: #e88a00;
  --jk-bg-dark: #131921;
  --jk-bg-light: #232f3e;
  --jk-text-light: #ffffff;
  --jk-text-dark: #131921;
  --jk-text-gray: #cccccc;
  --jk-border-radius: 4px;
  --jk-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --jk-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --jk-header-height: 80px;
  --jk-secondary-header-height: 40px;
  --jk-contact-header-height: 30px;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--jk-header-height) + var(--jk-secondary-header-height));
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
               Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--jk-text-dark);
  background-color: #f3f3f3;
  padding-top: calc(var(--jk-contact-header-height) + var(--jk-header-height) + var(--jk-secondary-header-height));
}

/* ===== Contact Header Bar ===== */
.jk-header-contact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--jk-contact-header-height);
  background: linear-gradient(90deg, #221f02 0%, #dda10e 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Courgette', cursive;
  padding: 0 20px;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

.jk-header-contact a {
  color: white;
  margin: 0 5px;
  font-size: 1rem;
  transition: var(--jk-transition);
  display: inline-flex;
  align-items: center;
}

.jk-header-contact a:hover {
  color: #ffd700;
  transform: translateY(-1px);
}

.jk-header-contact1,
.jk-header-contact2,
.jk-header-contact3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jk-header-contact2 {
  flex: 1;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Main Header ===== */
.jk-header1 {
  position: fixed;
  top: var(--jk-contact-header-height);
  left: 0;
  width: 100%;
  height: var(--jk-header-height);
  background-color: var(--jk-bg-dark);
  color: var(--jk-text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1001;
  box-shadow: var(--jk-box-shadow);
  transition: var(--jk-transition);
}

/* Left Header Section */
.jk-left-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 200px;
}

.jk-logo {
  display: flex;
  align-items: center;
}

.jk-logo svg {
  height: 60px;
  width: auto;
}

.jk-track-orders {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: var(--jk-border-radius);
  transition: var(--jk-transition);
}

.jk-track-orders:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.jk-track-orders i {
  font-size: 1.2rem;
}

/* Mobile Toggle Button */
.jk-mobile-toggle {
  background: transparent;
  border: none;
  color: var(--jk-text-light);
  font-size: 1.5rem;
  display: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 10px;
  border-radius: var(--jk-border-radius);
  transition: var(--jk-transition);
}

.jk-mobile-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.jk-middle-header {
    flex: 2;
    min-width: 200px;
    max-width: 700px;
    padding: 0 15px;
    position: relative;
    z-index: 1101; /* High z-index to stay above other elements */
    height: 40px; /* Fixed height to match form height */
}

/* Search Form */
.jk-search-form {
    display: flex;
    width: 100%;
    height: 100%; /* Take full height of parent */
    background-color: #fff;
    border-radius: var(--jk-border-radius);
    overflow: visible; /* Changed from hidden to visible */
    align-items: center;
    border: 1px solid #febd69;
    box-shadow: 0 0 0 2px rgba(254, 189, 105, 0.3);
    transition: var(--jk-transition);
    position: relative; /* Add position relative */
}

.jk-search-form:focus-within {
  box-shadow: 0 0 0 3px rgba(254, 189, 105, 0.5);
}

/* Category Select Wrapper */
.jk-category-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    height: 100%;
    border-right: 1px solid #ddd;
    z-index: 1002; /* Higher than form */
}

/* Category Select Dropdown */
.jk-category-select {
    font-size: 0.8rem;
    padding: 0 30px 0 10px;
    border: none;
    background: transparent;
    appearance: none;
    cursor: pointer;
    height: 100%;
    outline: none;
    color: #555;
    font-weight: 500;
    z-index: 1103; /* Highest in this context */
    position: relative;
    width: auto; /* Let it size to content */
    min-width: 80px; /* Minimum width */
}

.jk-category-select-wrapper::after {
    content: '\25BE';
    position: absolute;
    right: 8px;
    font-size: 12px;
    color: #666;
    pointer-events: none;
    z-index: 1;
}

/* Ensure dropdown appears above other elements */
.jk-category-select option {
    position: absolute;
    background: white;
    z-index: 2000; /* Very high to ensure it's on top */
    width: 100%;
    left: 0;
    top: 100%;
}
/* Fix for Firefox dropdown positioning */
@-moz-document url-prefix() {
    .jk-category-select {
        padding-right: 25px; /* Make room for arrow */
    }
    .jk-category-select-wrapper::after {
        right: 5px;
    }
}
.jk-search-form input[type="text"] {
  flex: 1;
  padding: 0 10px;
  border: none;
  font-size: 0.9rem;
  height: 100%;
  outline: none;
  color: #333;
  caret-color: var(--jk-primary-color);
  background-color: #fff;
}

.jk-search-form button {
  background-color: var(--jk-primary-color);
  border: none;
  padding: 0 15px;
  color: #111;
  font-size: 1.1rem;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--jk-transition);
}

.jk-search-form button:hover {
  background-color: var(--jk-primary-dark);
}

/* Search Suggestions Styles */
.jk-search-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1102;
  display: none;
  max-height: 60vh;
  overflow-y: auto;
}

.jk-search-suggestions.active {
  display: block;
}

.jk-suggestion-category {
  padding: 10px 15px;
  background: #f5f5f5;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.jk-suggestion-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  color: #333;
}

.jk-suggestion-item:hover {
  background: #f9f9f9;
}

.jk-suggestion-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 10px;
  border: 1px solid #eee;
}

.jk-suggestion-item .jk-suggestion-info {
  flex: 1;
}

.jk-suggestion-item .jk-suggestion-title {
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}

.jk-suggestion-item .jk-suggestion-price {
  font-size: 13px;
  color: #2874f0;
  font-weight: 600;
}

.jk-suggestion-item .jk-suggestion-rating {
  color: #388e3c;
  font-size: 12px;
  margin-left: 5px;
}

.jk-suggestion-item .jk-suggestion-category {
  font-size: 12px;
  color: #757575;
}

.jk-view-all {
  padding: 10px 15px;
  text-align: center;
  background: #f5f5f5;
  color: #2874f0;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0 0 4px 4px;
}

.jk-view-all:hover {
  background: #e8e8e8;
}

.jk-suggestion-item, .jk-view-all {
    cursor: pointer;
    transition: background-color 0.2s;
}

.jk-suggestion-item:hover, 
.jk-suggestion-item:focus,
.jk-view-all:hover,
.jk-view-all:focus {
    background-color: #f5f5f5;
    outline: none;
}

/* Mobile search suggestions */
.jk-mobile-search-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1102;
  display: none;
  max-height: 60vh;
  overflow-y: auto;
}

.jk-mobile-search-suggestions.active {
  display: block;
}

/* Loading indicator */
.jk-search-loading {
  padding: 15px;
  text-align: center;
  color: #757575;
}

.jk-search-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Right Header Section */
.jk-right-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
  min-width: 200px;
}

/* Account Dropdown */
.jk-account-dropdown {
  position: relative;
  cursor: pointer;
}

.jk-account-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: var(--jk-border-radius);
  transition: var(--jk-transition);
}

.jk-account-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.jk-account-toggle span {
  font-size: 0.8rem;
  white-space: nowrap;
}

.jk-account-toggle i {
  transition: var(--jk-transition);
  font-size: 0.8rem;
}

.jk-account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  padding: 10px 0;
  border-radius: var(--jk-border-radius);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1010;
  animation: jk-fadeIn 0.2s ease-out;
}

.jk-account-dropdown:hover .jk-account-menu,
.jk-account-dropdown:focus-within .jk-account-menu {
  display: block;
}

.jk-account-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--jk-text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--jk-transition);
}

.jk-account-menu a:hover {
  background-color: #f5f5f5;
  color: var(--jk-primary-color);
}

/* Icon Boxes */
.jk-icon-box {
  position: relative;
  font-size: 1.3rem;
}

.jk-icon-box a {
  color: var(--jk-text-light);
  position: relative;
  display: flex;
  padding: 5px;
  border-radius: var(--jk-border-radius);
  transition: var(--jk-transition);
}

.jk-icon-box a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.jk-icon-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--jk-primary-color);
  color: #000;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
}


/* === Header Wrapper === */
.jk-second {
  top: calc(var(--jk-contact-header-height) + var(--jk-header-height));
  left: 0;
  width: 100%;
  height: var(--jk-secondary-header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--jk-bg-light);
  color: white;
  padding: 0 5%;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: fixed;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Sticky header effect on scroll */
.jk-second.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background-color: rgba(43,43,43,0.98);
}

/* === ALL (Hamburger) === */
.jk-second-1 > div {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #ff9800;
  padding: 15px 0;
  transition: all 0.2s ease;
}

.jk-second-1 > div:hover {
  transform: translateY(-2px);
}

.jk-second-1 i {
  font-size: 22px;
}

/* === Menu Section === */
.jk-second-2 > ul {
  display: flex;
  gap: 15px;
  position: relative;
  margin: 0;
  padding: 0;
}

.jk-second-2 ul li {
  position: relative;
  list-style: none;
}

.jk-second-2 > ul > li > a {
  font-weight: 600;
  padding: 20px 12px;
  display: block;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 15px;
  position: relative;
}

.jk-second-2 > ul > li > a:hover {
  color: #ff9800;
}

/* Active menu item indicator */
.jk-second-2 > ul > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #ff9800;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.jk-second-2 > ul > li > a:hover:after,
.jk-second-2 > ul > li.active > a:after {
  width: 70%;
}

/* Dropdown Level 1 */
.jk-second-2 ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 240px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 10px 0;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  animation: fadeIn 0.3s ease forwards;
  border: 1px solid #eee;
  border-top: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.jk-second-2 ul li:hover > ul {
  display: block;
}

/* Dropdown Items */
.jk-second-2 ul li ul li {
  padding: 0;
}

.jk-second-2 ul li ul li a {
  display: block;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
  padding: 12px 20px;
  font-weight: 500;
}

.jk-second-2 ul li ul li a:hover {
  background-color: #f8f8f8;
  color: #ff9800;
  padding-left: 25px;
}

/* Mega menu style for categories */
.jk-second-2 ul li.mega-menu ul {
  width: 600px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.jk-second-2 ul li.mega-menu ul li {
  flex: 0 0 33.333%;
  padding: 5px 0;
}

.jk-second-2 ul li.mega-menu ul li a {
  padding: 8px 15px;
}

/* Dropdown Level 2 */
.jk-second-2 ul li ul li ul {
  top: -10px;
  left: 100%;
  border-radius: 4px;
}

/* === Trending & Contact === */
.jk-second-3 {
  display: flex;
  gap: 25px;
}

.jk-second-3 a {
  font-weight: 600;
  color: #f5f5f5;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px 0;
  display: inline-block;
}

.jk-second-3 a:hover {
  color: #ff9800;
}

.jk-second-3 a span.badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: #ff9800;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 15px;
}

.mobile-menu-toggle i {
  font-size: 24px;
  color: #ff9800;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .jk-second {
    padding: 0 20px;
  }
  
  .jk-second-2 > ul {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .jk-second {
    flex-wrap: wrap;
    padding: 0 15px;
    height: auto;
  }
  
  .jk-second-1 {
    order: 1;
  }
  
  .mobile-menu-toggle {
    order: 2;
  }
  
  .jk-second-3 {
    order: 3;
    margin-left: auto;
    gap: 15px;
  }
  
  .jk-second-2 {
    order: 4;
    width: 100%;
    display: none;
    background: #2b2b2b;
    margin-top: 0;
    padding: 0;
  }
  
  .jk-second.active .jk-second-2 {
    display: block;
  }
  
  .jk-second-2 > ul {
    flex-direction: column;
    gap: 0;
  }
  
  .jk-second-2 > ul > li > a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .jk-second-2 ul li ul {
    position: static;
    display: none;
    background: rgba(0,0,0,0.1);
    box-shadow: none;
    width: 100%;
    padding: 0;
  }
  
  .jk-second-2 ul li:hover > ul {
    display: none;
  }
  
  .jk-second-2 ul li.active > ul {
    display: block;
  }
  
  .jk-second-2 ul li ul li a {
    padding-left: 30px;
    color: #f0f0f0;
  }
  
  .jk-second-2 ul li ul li ul li a {
    padding-left: 45px;
  }
  
  .jk-second-3 a {
    padding: 15px 0;
  }
  
  .jk-second-1 > div,
  .jk-second-3 a {
    font-size: 14px;
  }
}

/* Search bar integration */
.search-container {
  flex-grow: 1;
  max-width: 600px;
  margin: 0 30px;
  position: relative;
}

@media (max-width: 992px) {
  .search-container {
    order: 5;
    max-width: 100%;
    margin: 15px 0;
  }
}
/* ===== Mobile Header ===== */
.jk-mobile-header {
    
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
   background-color: var(--jk-bg-dark); /* Use your dark color variable */
}

.jk-mobile-header-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  background-color: var(--jk-bg-dark);
}

.jk-mobile-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 10px;
}

.jk-mobile-hamburger {
  font-size: 20px;
 color: var(--jk-text-light);
  cursor: pointer;
}

.jk-mobile-logo {
  height: 35px;
}

.jk-mobile-logo img {
  height: 100%;
  width: auto;
}

.jk-mobile-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.jk-mobile-icon {
  position: relative;
  font-size: 18px;
   color: var(--jk-text-light);
  cursor: pointer;
  
}

.jk-mobile-icon:hover {
  color: var(--jk-primary-color);
}
.jk-mobile-icon-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jk-mobile-header-row2 {
  padding: 10px 15px;
  /*background: #f8f8f8;*/
  background-color: var(--jk-bg-dark);
  position: relative;
  z-index: 1101;
  
}

.jk-mobile-search-form {
  display: flex;
  width: 100%;
}

.jk-mobile-search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
  color: #333;
  caret-color: var(--jk-primary-color);
 background-color: white;
  color: var(--jk-text-dark);
}

.jk-mobile-search-button {
  background: #2874f0;
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile Sidebar ===== */
.jk-mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 1100;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.jk-mobile-sidebar.jk-active {
  left: 0;
}

.jk-mobile-sidebar-header {
  padding: 15px;
  background: #2874f0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jk-mobile-sidebar-close {
  font-size: 20px;
  cursor: pointer;
  color: white;
}

.jk-mobile-sidebar-content {
  padding: 15px;
}

.jk-mobile-sidebar-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.jk-mobile-sidebar-item a {
  color: #333;
  text-decoration: none;
  flex: 1;
}

.jk-mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
  display: none;
}

.jk-mobile-sidebar-overlay.jk-active {
  display: block;
}

.jk-mobile-sidebar-submenu {
  display: none;
  padding-left: 15px;
  background: #f9f9f9;
}

.jk-mobile-sidebar-submenu.jk-active {
  display: block;
}

/* ===== Desktop Sidebar Navigation ===== */
.jk-sidebar,
.jk-sidebar2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  background: linear-gradient(to bottom, #f4f4f4, #e0e0e0);
  z-index: 1100;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
  will-change: transform;
}

.jk-sidebar.jk-active,
.jk-sidebar2.jk-active {
  transform: translateX(0);
}

.jk-hdn-head {
  background-color: var(--jk-primary-color);
  height: 60px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.jk-hdn-head h2 {
  margin: 0;
}

.jk-hdn-head a {
  color: #fff;
  text-decoration: none;
}

.jk-hdn-content h3 {
  padding: 15px 25px;
  text-align: left;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.jk-hdn-content h3 a {
  color: inherit;
  text-decoration: none;
}

.jk-hdn-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-bottom: 10px;
}

.jk-hdn-content ul div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  padding: 12px 25px;
  transition: background 0.2s ease;
}

.jk-hdn-content ul div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.jk-fa-angle-right {
  color: #666;
  font-size: 14px;
}

.fa-xmark {
  position: fixed;
  left: 300px;
  top: 20px;
  opacity: 1;
  font-size: 26px;
  z-index: 1101;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
}

.jk-sidebar.jk-active ~ .fa-xmark,
.jk-sidebar2.jk-active ~ .fa-xmark {
  visibility: visible;
}

.jk-line {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 25px;
}

.jk-black {
  position: fixed;
  width: 0%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 1099;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.jk-black.jk-active {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
}

/* Animations */
@keyframes jk-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jk-slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .jk-left-header {
    min-width: 150px;
  }
  
  .jk-right-header {
    min-width: 150px;
  }
}

@media (max-width: 992px) {
  .jk-header1 {
    padding: 0 10px;
  }
  
  .jk-logo svg {
    height: 50px;
  }
  
  .jk-track-orders {
    display: none;
  }
  
  .jk-account-toggle span {
    display: none;
  }
  
  .jk-account-toggle i {
    font-size: 1.2rem;
  }
  
  .jk-icon-box a {
    padding: 5px;
  }
}

@media (max-width: 768px) {
  :root {
    --jk-header-height: 60px;
    --jk-secondary-header-height: 0px;
    --jk-contact-header-height: 0px;
  }
  
  .jk-header-contact {
    display: none;
  }
  
  .jk-header1, .jk-second {
    display: none;
  }
  
  .jk-mobile-header {
    display: block;
  }
  
  body {
    padding-top: 60px;
  }
  
  .jk-mobile-search-suggestions {
    position: fixed;
    top: 100px;
    left: 15px;
    right: 15px;
    width: auto;
    z-index: 1102;
  }
  
  .jk-sidebar,
  .jk-sidebar2 {
    width: 85%;
  }
  
  .fa-xmark {
    left: 85%;
  }
  
  .jk-breadcrumb {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .jk-mobile-search-input {
    font-size: 0.8rem;
  }
  
  .jk-mobile-icon {
    font-size: 1.1rem;
  }
  
  .jk-mobile-icon-count {
    width: 14px;
    height: 14px;
    font-size: 0.6rem;
  }
  
  .jk-mobile-header-left {
    padding-left: 15px;
  }
  
  .jk-mobile-logo {
    height: 40px;
  }
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
  .jk-right-header {
    position: fixed;
    top: var(--jk-header-height);
    left: 0;
    width: 100%;
    background-color: var(--jk-bg-dark);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  
  .jk-right-header.jk-active {
    display: flex;
    animation: jk-slideDown 0.3s ease-out;
  }
  
  .jk-account-dropdown {
    width: 100%;
  }
  
  .jk-account-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 8px;
  }
  
  .jk-account-toggle span {
    display: inline;
  }
  
  .jk-account-menu {
    position: static;
    width: 100%;
    margin-top: 5px;
    display: none;
  }
  
  .jk-account-dropdown:hover .jk-account-menu {
    display: none;
  }
  
  .jk-account-dropdown.jk-active .jk-account-menu {
    display: block;
  }
  
  .jk-account-dropdown.jk-active .jk-account-toggle i {
    transform: rotate(180deg);
  }
  
  .jk-icon-box {
    width: 100%;
  }
  
  .jk-icon-box a {
    padding: 8px;
    justify-content: space-between;
  }
}

/* High DPI Displays */
@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
  .jk-logo svg {
    height: 64px;
  }
  
  .jk-search-form button {
    padding: 0 18px;
  }
  
  .jk-icon-box {
    font-size: 1.4rem;
  }
  
  .jk-mobile-logo {
    height: 45px;
  }
}

/* Print Styles */
@media print {
  .jk-header-contact,
  .jk-header1,
  .jk-second,
  .jk-mobile-header {
    display: none;
  }
}











/* Add to your CSS files */
.wishlist-active i {
    color: #ff6b6b;
}

.wishlist-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 80%;
    text-align: center;
}

.wishlist-toast.show {
    opacity: 1;
}