/*!
Theme Name: Zycare
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: zycare
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Zycare is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}


/* category filter */

.product-category-sidebar {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .product-category-sidebar li {
	margin-bottom: 24px;
  }
  
  .product-category-sidebar li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #000;
	transition: color 0.3s;font-weight: 400;font-size: 15px;
  }
  
  .product-category-sidebar .check-box {
	width: 14px;
	height: 14px;
	border: 1px solid #1c1b1e;
	display: inline-block;
	margin-right: 8px;
	border-radius: 2px;
	background-color: white;
	transition: background-color 0.3s, border-color 0.3s;
  }
  
  /* Active (current category) styles */
  .product-category-sidebar li.current-cat a {
	color: #BC9C22; /* your active text color */
	font-weight:400;
  }
  
  .product-category-sidebar li.current-cat .check-box {
	background-color: #BC9C22;
	border-color: #BC9C22;
  }



.mobile-filter-button-wrapper {
  display: none;
}



@media (max-width: 768px) {
  .mobile-filter-button-wrapper {
      display: inline-block;

  }
  .archive .elementor-2332 .elementor-element.elementor-element-54b98c1 {
    justify-content: space-between;
    padding-right: 0px;
    align-items: center;
}

.mobile-filter-btn {
  background: #BC9C22;
  color: #fff;
  padding: 12px 14px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
}

.filter-drawer-inner {
  background: #fff;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  padding: 20px;
  pointer-events: auto; /* ✅ ensure this is set */
}

.filter-heading {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 4px;
}
.filter-drawer *, .filter-drawer a {
  pointer-events: auto !important;
  z-index: 99999 !important;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.close-filter-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  cursor: pointer;
}
}