
/* ------------------------------------------ SEARCH OVERLAY (animated from top) ----------------------------------------  */

/* === SEARCH OVERLAY (animated from top) === */
.unique-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f3f4f6;

  z-index: 300;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  max-height: 100vh;
  padding: 40px 20px 60px;
}

.unique-search-overlay.open {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unique-search-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  position: relative;
}

.unique-close-btn {
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 38px;
  cursor: pointer;
  color: #333;
  transition: 0.2s;
  line-height: 1;
}
.unique-close-btn:hover {
  color: #2d6cdf;
}

.unique-search-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #1a1a1a;
}

.unique-search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.unique-search-bar select,
.unique-search-bar input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
}

.unique-search-bar select {
  border-right: none;
  min-width: 180px;
  background: white;
  border-radius: 4px 0 0 4px;
}

.unique-search-bar input {
  width: 350px;
  border-left: none;
}

.unique-search-bar button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 30px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0 4px 4px 0;
  transition: 0.2s;
}
.unique-search-bar button:hover {
  background: #2d6cdf;
}

.unique-trending {
  margin: 20px 0 40px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.unique-trending span {
  font-weight: 500;
}

.unique-trending a {
  background: #e5e7eb;
  padding: 5px 16px;
  text-decoration: none;
  color: #000;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.2s;
}
.unique-trending a:hover {
  background: #2d6cdf;
  color: white;
}

.unique-section-title {
  font-size: 22px;
  margin: 40px 0 30px;
  font-weight: 600;
  color: #1a1a1a;
}

.unique-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.unique-category-card {
  text-align: center;
}

.unique-image-box {
  background: #e9eaec;
  border-radius: 18px;
  padding: 25px;
  margin-bottom: 15px;
  transition: 0.2s;
}
.unique-image-box:hover {
  background: #d0d4dd;
}

.unique-image-box img {
  max-width: 100%;
  height: 110px;
  object-fit: contain;
}

.unique-category-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.unique-category-card p {
  font-size: 14px;
  color: #777;
}

.unique-view-all {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
  margin-top: 10px;
}
.unique-view-all:hover {
  background: #2d6cdf;
}

/* dummy content */
.content-placeholder {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  color: #555;
}
.content-placeholder h2 {
  margin-bottom: 15px;
}
.content-placeholder p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.unique-header-right {
  position: relative;
}

/* responsive */
@media (max-width: 992px) {
  .unique-nav {
    display: none;
  }
  .unique-menu-toggle {
    display: block;
  }
  .unique-sidebar .header-social {
    justify-content: center;
    align-items: center;
  }
  .unique-sidebar .header-social a {
    font-size: 18px;
    color: #333;
    transition: 0.3s ease;
    width: 33px;
    border-radius: 100%;
    background: #f2ebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 33px;
  }

  .unique-sidebar .header-social a:hover {
    background-color: rgb(191, 223, 250);
    scale: 1.1;
  }

  .unique-header-right .unique-icon,
  .unique-header-right .unique-signin,
  .unique-header-right .header-search,
  .unique-header-right .header-social,
  .unique-header-right .unique-cart-btn {
    display: none;
  }
  .unique-header-right {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .unique-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .unique-search-bar input {
    width: 250px;
  }
  .unique-search-bar select {
    min-width: 140px;
  }
  .unique-close-btn {
    top: -10px;
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .unique-categories {
    grid-template-columns: 1fr;
  }
  .unique-search-bar {
    flex-direction: column;
    gap: 8px;
  }
  .unique-search-bar select,
  .unique-search-bar input,
  .unique-search-bar button {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ddd;
  }
  .unique-search-bar select {
    border-right: 1px solid #ddd;
  }
  .unique-search-bar input {
    border-left: 1px solid #ddd;
  }
  .unique-close-btn {
    top: 0px;
    right: 5px;
  }
}

@media (max-width: 480px) {
  .unique-sidebar {
    width: 260px;
  }
}

/* top home link  */
/* ===== Storefront Breadcrumb Styling (Precise Targeting) ===== */
.storefront-breadcrumb {
  /* background: linear-gradient(135deg, #f8fafc, #eef2f7); */
  padding: 18px 0;
  /* border-bottom: 1px solid #e5e7eb; */
}

.storefront-breadcrumb .col-full {
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.storefront-breadcrumb .woocommerce-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 13px !important;
}

/* Links */
.storefront-breadcrumb .woocommerce-breadcrumb a {
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect */
.storefront-breadcrumb .woocommerce-breadcrumb a:hover {
  color: #2563eb;
}

/* Underline animation */
.storefront-breadcrumb .woocommerce-breadcrumb a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

.storefront-breadcrumb .woocommerce-breadcrumb a:hover::after {
  width: 100%;
}

/* Separator Styling */
.storefront-breadcrumb .breadcrumb-separator {
  color: #9ca3af;
  font-weight: 400;
  margin: 0 4px;
}

/* Current Page (Last item - no link) */
.storefront-breadcrumb .woocommerce-breadcrumb > span:last-child,
.storefront-breadcrumb .woocommerce-breadcrumb {
  font-weight: 800;
  color: #111827;
}

/* Responsive */
@media (max-width: 768px) {
  .storefront-breadcrumb {
    padding: 14px 0;
  }

  .storefront-breadcrumb .woocommerce-breadcrumb {
    font-size: 13px;
  }
}
