/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 23 2025 | 08:19:12 */
/* === PRIMARY SIDEBAR: Subtle Depth Effect === */
#primary-sidebar {
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 18px;

  /* Softer box-shadow for subtle depth */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
              0 2px 6px rgba(0, 0, 0, 0.04);

  border: none; /* remove any border */
  transition: all 0.35s ease;
}

#primary-sidebar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10),
              0 3px 8px rgba(0, 0, 0, 0.05);
}
/* === PRODUCT SEARCH STYLE (Glow + Rounded) === */
.wp-block-search__inside-wrapper {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 28px;
  border: 1px solid #e0e6ed;
  background: #fff;
  transition: all 0.3s ease;
}

.wp-block-search__inside-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(78, 149, 197, 0.35);
}

.wp-block-search__inside-wrapper input[type="search"] {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
  outline: none;
  background: #f7f9fc;
  transition: all 0.3s ease;
  border-right: 1px solid #e0e6ed;
}

.wp-block-search__inside-wrapper input[type="search"]:focus {
  background: #eef4fa;
}

.wp-block-search__button {
  background: linear-gradient(135deg, #4e95c5, #32b5f0) !important;
  color: #fff !important;
  border: none !important;
  padding: 0 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.wp-block-search__button:hover {
  background: linear-gradient(135deg, #3679a3, #2297d8) !important;
  transform: scale(1.08);
}

/* === CATEGORY LIST === */
.wc-block-product-categories-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* === MAIN CATEGORY (Neumorphic Style) === */
.wc-block-product-categories-list-item {
  padding: 14px 16px;
  background: #f3f8fc;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid #d8e6f0;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  position: relative;
  cursor: pointer;
}

.wc-block-product-categories-list-item:hover {
  background: linear-gradient(135deg, #f7fbfe, #eef7fc);
  box-shadow: 0 6px 15px rgba(78, 149, 197, 0.15);
  transform: translateX(4px);
}

/* Category Links */
.wc-block-product-categories-list-item a {
  text-decoration: none;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* === SUBCATEGORY LEVEL 1 === */
.wc-block-product-categories-list--depth-1 {
  margin-left: 18px;
  font-weight: normal;
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.wc-block-product-categories-list--depth-1 a::before {
  content: "• ";
  color: #4e95c5;
  font-weight: bold;
}

.wc-block-product-categories-list--depth-1 a {
  color: #444;
  transition: all 0.2s ease;
}

.wc-block-product-categories-list--depth-1 a:hover {
  color: #32b5f0;
  padding-left: 4px;
}

/* === SUBCATEGORY LEVEL 2 === */
.wc-block-product-categories-list--depth-2 {
  margin-left: 32px;
  font-size: 13px;
  color: #666;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.wc-block-product-categories-list--depth-2 a::before {
  content: "› ";
  color: #aaa;
}

.wc-block-product-categories-list--depth-2 a {
  color: #555;
}

.wc-block-product-categories-list--depth-2 a:hover {
  color: #32b5f0;
  padding-left: 4px;
}

/* === PRODUCT COUNT (Badge Style) === */
.wc-block-product-categories-list-item .wc-block-product-categories-list-item-count {
  font-weight: normal;
  color: #fff;
  font-size: 12px;
  background: #4e95c5;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
}
