/*
Theme Name: Xinzhuti
Theme URI: https://xinzhuti.com
Author: Xinzhuti
Author URI: https://xinzhuti.com
Description: A luxury perfume e-commerce WordPress theme
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xinzhuti
Tags: e-commerce, woocommerce, luxury, perfume, responsive, custom-menu, custom-logo, threaded-comments

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

/* Global Reset - Force priority */
* {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  list-style: none !important;
}

ul, ol, li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Additional reset for any nested lists */
ul ul, ul ol, ol ul, ol ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure no list markers appear anywhere */
* {
  list-style-type: none !important;
}

:root {
  --primary-color: #2c2c2c;
  --secondary-color: #666;
  --accent-color: #d4af37;
  --light-color: #f5f5f5;
  --white: #fff;
  --dark-gold: #b8860b;
  --royal-blue: #1a237e;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --header-height: 80px;
  --nav-height: 50px;
}

body {
  font-family: var(--font-main);
  color: var(--primary-color);
  line-height: 1.6;
  background-color: var(--light-color);
  padding-top: calc(var(--header-height) + var(--nav-height));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.top-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.search-bar {
  flex: 1;
  max-width: 600px;
  margin: 0 2rem;
}

.search-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.user-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Navigation styles */
.nav {
  height: var(--nav-height);
  background-color: var(--white);
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-menu-content {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.mobile-nav-menu {
  list-style: none;
}

.mobile-nav-menu li {
  margin-bottom: 1rem;
}

.mobile-nav-menu a {
  display: block;
  padding: 0.8rem;
  font-size: 1.1rem;
  color: var(--primary-color);
  border-bottom: 1px solid #eee;
}

.mobile-nav-menu .submenu {
  margin-left: 1rem;
  margin-top: 0.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0 1rem;
  height: 100%;
  line-height: var(--nav-height);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 250px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu-item {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid #eee;
}

.submenu-item:hover {
  background-color: var(--light-color);
}

.submenu-link {
  display: block;
  font-size: 0.9rem;
}

/* Banner section */
.banner {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.banner-slide.active {
  transform: translateX(0);
}

.banner-slide.prev {
  transform: translateX(-100%);
}

.banner-slide.next {
  transform: translateX(100%);
}

.banner-prev, .banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-prev:hover, .banner-next:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  left: 2rem;
}

.banner-next {
  right: 2rem;
}

.banner-content {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 5;
}

.banner h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Banner indicators */
.banner-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-indicator.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.2);
}

.banner-indicator:hover {
  background-color: rgba(212, 175, 55, 0.8);
  border-color: var(--accent-color);
}

.discount-code {
  background-color: #ff6b6b;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Category shortcuts */
.category-shortcuts {
  padding: 4rem 0;
  background-color: var(--white);
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.shortcut-item {
  text-align: center;
  transition: all 0.3s ease;
}

.shortcut-item:hover {
  transform: translateY(-5px);
}

.shortcut-icon {
  width: 100px;
  height: 100px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}

.shortcut-title {
  font-weight: 500;
}

/* Bestsellers section */
.bestsellers {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-original-price {
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ff6b6b;
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.limited-time {
  font-size: 0.8rem;
  color: #ff6b6b;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Gift sets section */
.gift-sets {
  padding: 6rem 0;
  background-color: var(--white);
}

.gift-set-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gift-set-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gift-set-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gift-set-content {
  padding: 2rem;
}

.welcome-box {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* New arrivals section */
.new-arrivals {
  padding: 6rem 0;
  background-color: var(--light-color);
}

/* Fragrance notes section */
.fragrance-notes {
  padding: 6rem 0;
  background-color: var(--white);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.note-card {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.note-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.note-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Reviews section */
.reviews {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-rating {
  color: #f39c12;
  margin-bottom: 1rem;
}

.review-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

/* FAQ section */
.faq {
  padding: 6rem 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  color: var(--secondary-color);
}

.faq-answer.active {
  display: block;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Cookie consent popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-popup p {
  margin-bottom: 0;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: var(--accent-color);
  color: var(--white);
}

.cookie-btn.decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    padding-top: var(--header-height);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .top-header {
    flex-wrap: wrap;
    padding: 1rem;
    height: auto;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .search-bar {
    order: 3;
    width: 100%;
    margin: 1rem 0 0;
  }
  
  .nav {
    display: none;
  }
  
  .banner {
    height: 400px;
  }
  
  .banner h1 {
    font-size: 3rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-popup {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    margin-top: 1rem;
    align-self: flex-end;
  }
}

/* WordPress core styles */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
}

.gallery-caption {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 5px;
  text-align: center;
}

.bypostauthor {
  font-weight: bold;
}

/* WooCommerce styles */
.woocommerce .products ul,
.woocommerce ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce .products li.product {
  margin: 0 0 2.992em;
  padding: 0;
  position: relative;
  width: 100%;
  float: left;
  clear: both;
}

.woocommerce .products li.product img {
  display: block;
  margin: 0 0 1em;
  box-shadow: none;
  width: 100%;
  height: auto;
}

.woocommerce .products li.product .price {
  color: #777;
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 0.5em;
}

.woocommerce .products li.product .button {
  display: block;
  margin: 1em 0 0;
}

.woocommerce .products li.product .star-rating {
  margin: 0.5em 0 0;
}

.woocommerce .product-thumbnail {
  position: relative;
}

.woocommerce .onsale {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff6b6b;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: right;
  width: 48%;
  padding: 1.5em;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #f9f9f9;
}

.woocommerce-checkout #payment {
  margin-top: 2em;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #f9f9f9;
  padding: 1.5em;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .top-header {
    padding: 0 1.5rem;
  }
  
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    display: none;
  }
  
  .top-header {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .search-bar {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .user-actions {
    gap: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .notes-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    margin-top: 2rem;
  }
  
  /* Fix anchor scrolling issue */
  :target {
    scroll-margin-top: calc(var(--header-height) + var(--nav-height) + 20px);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .top-header {
    padding: 0.8rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .user-actions {
    gap: 0.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
}

/* WooCommerce My Account styles */
.woocommerce-MyAccount-navigation {
  float: left;
  width: 20%;
  margin-right: 5%;
}

.woocommerce-MyAccount-content {
  float: right;
  width: 75%;
}

@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  
  .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
}

/* Product Archive & Taxonomy Styles */
.product-archive,
.product-taxonomy-archive {
  padding: 4rem 0;
  min-height: 60vh;
}

.archive-header,
.taxonomy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.archive-title,
.taxonomy-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.archive-description,
.taxonomy-description {
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.taxonomy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: left;
}

.taxonomy-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.taxonomy-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.taxonomy-label {
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.taxonomy-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--accent-color);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.archive-content-wrapper,
.taxonomy-content-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.archive-sidebar,
.taxonomy-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--nav-height) + 2rem);
  max-height: calc(100vh - var(--header-height) - var(--nav-height) - 4rem);
  overflow-y: auto;
}

/* Product Filters Styles */
.product-filters {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.filters-header h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters-toggle-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.filters-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-group {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.filter-group-header:hover {
  color: var(--accent-color);
}

.filter-group-title {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
}

.filter-chevron {
  transition: transform 0.3s ease;
}

.filter-group-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2rem;
  padding-top: 0.5rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.filter-option:hover {
  background-color: #f9f9f9;
  color: var(--primary-color);
}

.filter-option.active {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.filter-checkbox.checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.filter-label {
  flex: 1;
}

.filter-count {
  font-size: 0.8rem;
  color: #999;
}

.filters-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.btn-clear-filters {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-clear-filters:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* Archive Toolbar */
.archive-toolbar,
.taxonomy-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.toolbar-info {
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.toolbar-sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* No Products State */
.no-products {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--white);
  border-radius: 8px;
}

.no-products svg {
  margin-bottom: 1.5rem;
}

.no-products p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .archive-content-wrapper,
  .taxonomy-content-wrapper {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .product-archive,
  .product-taxonomy-archive {
    padding: 2rem 0;
  }
  
  .archive-header,
  .taxonomy-header {
    margin-bottom: 2rem;
  }
  
  .archive-title,
  .taxonomy-title {
    font-size: 2rem;
  }
  
  .taxonomy-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .taxonomy-icon {
    width: 80px;
    height: 80px;
  }
  
  .archive-content-wrapper,
  .taxonomy-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .archive-sidebar,
  .taxonomy-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
  
  .filters-header {
    cursor: pointer;
  }
  
  .filters-toggle-mobile {
    display: block;
  }
  
  .filters-content {
    display: none;
    padding-top: 1rem;
  }
  
  .filters-content.show {
    display: flex;
  }
  
  .filter-group-content {
    padding-left: 1rem;
  }
  
  .archive-toolbar,
  .taxonomy-toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .toolbar-sort {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .taxonomy-icon {
    width: 60px;
    height: 60px;
  }
  
  .archive-title,
  .taxonomy-title {
    font-size: 1.6rem;
  }
  
  .filter-option {
    padding: 0.3rem 0.4rem;
    font-size: 0.85rem;
  }
  
  .filter-checkbox {
    width: 16px;
    height: 16px;
  }
}

/* Sticky Header Styles - Lookfantastic Style */
.header {
  position: relative;
  z-index: 1000;
  background-color: var(--white);
  height: 80px;
  transition: all 0.3s ease;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  height: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Top Header Styles */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  transition: all 0.3s ease;
}

.header.sticky .top-header {
  padding: 0.5rem 2rem;
}

/* Logo Styles */
.logo {
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.logo img {
  max-height: 60px;
  width: auto;
  transition: all 0.4s ease;
}

.header.sticky .logo img {
  max-height: 45px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.header.sticky .logo a {
  color: var(--white);
  font-size: 1.5rem;
}

/* Search Bar Styles */
.search-bar {
  flex: 1;
  max-width: 500px;
  margin: 0 2rem;
  transition: all 0.4s ease;
}

.search-bar form {
  display: flex;
  position: relative;
}

.search-bar input[type="search"] {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 0.95rem;
  background-color: var(--white);
  transition: all 0.4s ease;
}

.header.sticky .search-bar input[type="search"] {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.header.sticky .search-bar input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-bar button[type="submit"] {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.header.sticky .search-bar button[type="submit"] {
  color: var(--accent-color);
}

/* User Actions Styles */
.user-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.user-action {
  position: relative;
}

.user-action a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s ease;
}

.header.sticky .user-action a {
  color: var(--white);
}

.user-action a:hover {
  color: var(--accent-color);
}

.header.sticky .user-action a:hover {
  color: var(--accent-color);
}

.user-action svg {
  width: 22px;
  height: 22px;
  transition: all 0.4s ease;
}

/* Currency Selector Styles */
.currency-selector {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.header.sticky .currency-selector {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Navigation Styles */
.nav {
  background-color: var(--white);
  border-top: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.sticky .nav {
  background-color: var(--primary-color);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 1rem 0;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  position: relative;
}

.header.sticky .nav-menu > li > a {
  color: var(--white);
  padding: 0.75rem 0;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

.nav-menu > li > a:hover {
  color: var(--accent-color);
}

/* Mobile Menu Toggle Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.4s ease;
}

.header.sticky .mobile-menu-toggle span {
  background-color: var(--white);
}

/* Body padding adjustment when header is sticky */
body.has-sticky-header {
  padding-top: var(--header-height);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .top-header {
    padding: 1rem;
  }
  
  .header.sticky .top-header {
    padding: 0.5rem 1rem;
  }
  
  .search-bar {
    margin: 0 1rem;
    max-width: 300px;
  }
  
  .user-actions {
    gap: 1rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    position: relative;
  }
  
  .header.sticky {
    position: fixed;
  }
  
  .top-header {
    padding: 1rem;
    flex-wrap: wrap;
  }
  
  .header.sticky .top-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo {
    order: 1;
    flex: 1;
    text-align: center;
  }
  
  .logo img {
    max-height: 45px;
  }
  
  .header.sticky .logo img {
    max-height: 40px;
  }
  
  .search-bar {
    order: 3;
    width: 100%;
    max-width: none;
    margin: 0.75rem 0 0 0;
  }
  
  .user-actions {
    order: 2;
    gap: 0.75rem;
  }
  
  .user-action a span {
    display: none;
  }
  
  .currency-selector {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .nav {
    display: none;
  }
  
  body.has-sticky-header {
    padding-top: calc(var(--header-height) + 60px);
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 0.75rem;
  }
  
  .header.sticky .top-header {
    padding: 0.5rem 0.75rem;
  }
  
  .logo a {
    font-size: 1.4rem;
  }
  
  .header.sticky .logo a {
    font-size: 1.2rem;
  }
  
  .search-bar input[type="search"] {
    padding: 0.6rem 0.8rem;
    padding-right: 2.5rem;
    font-size: 0.9rem;
  }
  
  .user-actions {
    gap: 0.5rem;
  }
  
  .user-action svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   Taxonomy Archive Page Styles
   ============================================ */

.product-taxonomy-archive {
  padding: 2rem 0 4rem;
  background-color: #fafafa;
  min-height: 60vh;
}

/* Taxonomy Header */
.taxonomy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.taxonomy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 100px;
  pointer-events: none;
}

.taxonomy-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.taxonomy-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.taxonomy-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.taxonomy-label {
  font-size: 0.85rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.taxonomy-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.taxonomy-title {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.taxonomy-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

/* Breadcrumb Navigation */
.taxonomy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.taxonomy-breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.taxonomy-breadcrumb a:hover {
  color: var(--accent-color);
}

.breadcrumb-separator {
  color: #ddd;
}

.breadcrumb-current {
  color: var(--primary-color);
  font-weight: 600;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  margin-bottom: 1.5rem;
}

.btn-filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-filter-toggle:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-filter-toggle svg {
  width: 18px;
  height: 18px;
}

/* Content Wrapper */
.taxonomy-content-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Sidebar */
.taxonomy-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  max-height: calc(100vh - var(--header-height) - 4rem);
  overflow-y: auto;
}

/* Main Content */
.taxonomy-main-content {
  min-width: 0;
}

/* Toolbar */
.taxonomy-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toolbar-info {
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.product-count {
  font-weight: 600;
  color: var(--primary-color);
}

.toolbar-sort {
  display: flex;
  align-items: center;
}

.toolbar-sort select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: var(--white);
  font-size: 0.9rem;
  color: var(--primary-color);
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23666"><path d="M5 8l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px;
}

.toolbar-sort select:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Products Grid */
.taxonomy-main-content .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Pagination */
.taxonomy-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.taxonomy-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.taxonomy-pagination .page-numbers li {
  margin: 0;
}

.taxonomy-pagination .page-numbers a,
.taxonomy-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.taxonomy-pagination .page-numbers a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.taxonomy-pagination .page-numbers .current {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.taxonomy-pagination .page-numbers .prev,
.taxonomy-pagination .page-numbers .next {
  padding: 0 1rem;
}

.taxonomy-pagination .page-numbers .dots {
  border: none;
  background: none;
  cursor: default;
}

/* No Products State */
.taxonomy-main-content .no-products {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.no-products-icon {
  margin-bottom: 1.5rem;
}

.no-products h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.no-products p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.no-products-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.no-products-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.no-products-actions .btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.no-products-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.no-products-actions .btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.no-products-actions .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ============================================
   Responsive Styles for Taxonomy Page
   ============================================ */

@media (max-width: 1024px) {
  .taxonomy-content-wrapper {
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
  }
  
  .taxonomy-header {
    padding: 2rem 1.5rem;
  }
  
  .taxonomy-title {
    font-size: 2rem;
  }
  
  .taxonomy-icon {
    width: 80px;
    height: 80px;
  }
  
  .taxonomy-main-content .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-taxonomy-archive {
    padding: 1rem 0 2rem;
  }
  
  .taxonomy-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  
  .taxonomy-info {
    text-align: center;
  }
  
  .taxonomy-label {
    justify-content: center;
  }
  
  .taxonomy-label::before {
    display: none;
  }
  
  .taxonomy-title {
    font-size: 1.75rem;
  }
  
  .taxonomy-icon {
    width: 70px;
    height: 70px;
  }
  
  .taxonomy-breadcrumb {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  
  .mobile-filter-toggle {
    display: block;
  }
  
  .taxonomy-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .taxonomy-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height: none;
    overflow: visible;
    display: none;
  }
  
  .taxonomy-sidebar.mobile-open {
    display: block;
  }
  
  .taxonomy-sidebar .product-filters {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    overflow-y: auto;
    background-color: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.3s ease;
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  .taxonomy-toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
  }
  
  .toolbar-sort {
    width: 100%;
  }
  
  .toolbar-sort select {
    width: 100%;
  }
  
  .taxonomy-main-content .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .taxonomy-pagination .page-numbers a,
  .taxonomy-pagination .page-numbers span {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .no-products {
    padding: 2rem 1rem;
  }
  
  .no-products-actions {
    flex-direction: column;
  }
  
  .no-products-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .taxonomy-header {
    padding: 1.5rem 1rem;
    border-radius: 8px;
  }
  
  .taxonomy-title {
    font-size: 1.5rem;
  }
  
  .taxonomy-description {
    font-size: 0.9rem;
  }
  
  .taxonomy-icon {
    width: 60px;
    height: 60px;
  }
  
  .taxonomy-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .taxonomy-main-content .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .taxonomy-pagination .page-numbers {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .taxonomy-pagination .page-numbers .prev,
  .taxonomy-pagination .page-numbers .next {
    display: none;
  }
}