.logo img {
  width: 200px;
  height: 50px;
}

.product-badge-stock {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  color: #fff;
}

.tag-instock {
  background-color: #28a745;
  /* green */
}

.tag-outstock {
  background-color: #dc3545;
  /* red */
}

.tag-default {
  background-color: #6c757d;
  /* grey fallback */
}

/* Hide menu on mobile by default */

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 22px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.6;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}


.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.top-bar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.top-bar-item i {
  font-size: 18px;
  background: #ffcb05;
  color: #000;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.top-bar-text span {
  font-size: 13px;
  opacity: 0.85;
}

.top-bar-text a {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-text a:hover {
  color: #ffcb05;
}


.best-sellers .product-name {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Roboto';
  line-height: 1.4;
  margin-bottom: 12px;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 768px) {
  .top-bar-item {
    display: none;
  }

  .sidebar {
    margin-top: 0px !important;
  }
}

.breadcrumbs .current {
  display: inline-block;
  max-width: 250px;
  /* adjust width as needed */
  white-space: nowrap;
  /* ek hi line me */
  overflow: hidden;
  /* extra content hide kare */
  text-overflow: ellipsis;
  /* dots show kare */
  vertical-align: middle;
}


.product-count {
  background-color: #000;
  color: #ffffffff;
  /* padding: 4px 9px; */
  width: 30px;
  height: 25px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-categories-widget {
  position: -webkit-sticky;
  /*Used for safari*/
  position: sticky;
  top: 170px;
  /* header se distance */
  z-index: 100;
}

/* ✅ Active category styling */
.category-item.active {
  background-color: #d9d9d9;
  border-radius: 6px;
}

.category-item.active .category-link {
  font-weight: bold;
  color: #000;
}