/*
Theme Name: Pass-Lux
Description: Thème WordPress WooCommerce pour Pass-Lux - Accessoires de luxe
Version: 1.0
Author: Pass-Lux
Text Domain: pass-lux
*/

:root {
  --color-black: #000000;
  --color-beige: #ded7d1;
  --color-dark-green: #003e26;
  --color-vibrant-green: #00b777;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
}

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

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(31, 41, 55, 0.4);
}

.site-header.scrolled {
  background: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.logo img {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
}

.site-header.scrolled .logo {
  color: var(--color-black);
}

.site-header.scrolled .logo img {
  filter: brightness(0);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-dark-green), var(--color-vibrant-green));
  border-radius: 50%;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-menu a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.site-header.scrolled .nav-menu a {
  color: var(--color-black) !important;
}

.nav-menu a:hover {
  color: var(--color-vibrant-green) !important;
}

/* Fix pour menu mobile */
@media (max-width: 768px) {
  .main-navigation.active .nav-menu a {
    color: var(--color-black) !important;
  }
}

/* Header actions icons */
.header-actions a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header.scrolled .header-actions a {
  color: var(--color-black) !important;
}

.account-icon, .cart-icon {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-toggle {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle {
  color: var(--color-black) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header.scrolled .cart-icon {
  color: var(--color-black);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-vibrant-green);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-green) 50%, var(--color-dark-green) 100%);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  color: var(--color-white);
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: var(--color-beige);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-vibrant-green);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 183, 119, 0.3);
}

.hero-cta:hover {
  background: var(--color-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 119, 0.4);
}
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--color-beige);
}

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

.feature-item {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--color-vibrant-green);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.feature-description {
  color: var(--color-gray-700);
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Featured Products - 6 produits optimisés */
.products-section .products-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (min-width: 1400px) {
  .products-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .products-section .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Categories Section */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-btn:hover {
  background: var(--color-dark-green) !important;
  transform: translateY(-2px);
}

/* Bracelet Section */
.bracelet-section .hero-cta:hover {
  background: var(--color-vibrant-green) !important;
  transform: translateY(-2px);
}

/* Materials Section */
.material-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .bracelet-section > .container > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .bracelet-image {
    order: -1;
  }
  
  .categories-grid {
    grid-template-columns: 1fr !important;
  }
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Categories Section */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-btn:hover {
  background: var(--color-dark-green) !important;
  transform: translateY(-2px);
}

/* Bracelet Section */
.bracelet-section .hero-cta:hover {
  background: var(--color-vibrant-green) !important;
  transform: translateY(-2px);
}

/* Materials Section */
.material-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .bracelet-section > .container > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .bracelet-image {
    order: -1;
  }
  
  .categories-grid {
    grid-template-columns: 1fr !important;
  }
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  color: var(--color-vibrant-green);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-dark-green);
}

/* WooCommerce Styles */
.woocommerce-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* Pages WooCommerce par défaut - panier, login, register */
.woocommerce-cart {
  padding-top: 100px;
}

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

.woocommerce-account {
  padding-top: 100px;
}

.woocommerce-account .woocommerce {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Style pour les formulaires WooCommerce */
.woocommerce form.login,
.woocommerce form.register {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
  color: var(--color-black);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
}

.woocommerce .form-row input[type="text"],
.woocommerce .form-row input[type="email"],
.woocommerce .form-row input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.woocommerce .form-row input:focus {
  outline: none;
  border-color: var(--color-vibrant-green);
  box-shadow: 0 0 0 2px rgba(0, 183, 119, 0.1);
}

.woocommerce .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-black);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--color-vibrant-green);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-dark-green);
  transform: translateY(-1px);
}

/* Stripe Payment Styles */
.woocommerce #payment {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.woocommerce #payment .payment_methods {
  list-style: none;
  padding: 0;
}

.woocommerce #payment .payment_method_stripe {
  background: var(--color-gray-50);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.woocommerce #payment .payment_method_stripe label {
  font-weight: 600;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.woocommerce #payment .stripe-card-element {
  background: white;
  padding: 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  margin-top: 1rem;
}

.woocommerce .cart-collaterals .cart_totals {
  background: var(--color-gray-50);
  padding: 2rem;
  border-radius: 12px;
}

.woocommerce table.shop_table {
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  background: var(--color-beige);
  color: var(--color-black);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

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

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

.footer-section ul li a {
  color: var(--color-gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--color-vibrant-green);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: 1rem;
  text-align: center;
  color: var(--color-gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .header-content {
    padding: 0 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hero CTA Hover Effect */
.hero-cta:hover {
  background: var(--color-dark-green) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 119, 0.4) !important;
}

/* Editable Content Section */
.editable-content {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.editable-content .page-content {
  text-align: center;
}

.editable-content .page-content:empty {
  display: none;
}

.editable-content:has(.page-content:empty) {
  display: none;
}
.editable-content .page-content h1,
.editable-content .page-content h2,
.editable-content .page-content h3,
.editable-content .page-content h4,
.editable-content .page-content h5,
.editable-content .page-content h6 {
  color: var(--color-black);
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.editable-content .page-content h1 { font-size: 2.5rem; }
.editable-content .page-content h2 { font-size: 2rem; }
.editable-content .page-content h3 { font-size: 1.5rem; }

.editable-content .page-content p {
  margin-bottom: 1.5rem;
}

.editable-content .page-content ul,
.editable-content .page-content ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  padding-left: 2rem;
}

.editable-content .page-content li {
  margin-bottom: 0.5rem;
}

.editable-content .page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.editable-content .page-content blockquote {
  background: var(--color-beige);
  border-left: 4px solid var(--color-vibrant-green);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
  .editable-content {
    padding-top: 80px !important;
  }
  
  .editable-content .page-content {
    font-size: 1rem;
  }
}

/* Shop Page Styles */
.shop-hero {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-green) 50%, var(--color-dark-green) 100%);
  position: relative;
  overflow: hidden;
}

.shop-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-description {
  font-size: 1.25rem;
  color: var(--color-beige);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.shop-filters {
  background: var(--color-white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.category-filter {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.category-filter:not(.active) {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
}

.category-filter.active {
  background: var(--color-vibrant-green);
  color: white;
}

.category-filter:not(.active):hover {
  background: var(--color-beige);
  color: var(--color-black);
}

.view-toggle {
  display: flex;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  overflow: hidden;
}

.view-btn {
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn.active {
  background: var(--color-vibrant-green);
  color: white;
}

.view-btn:not(.active) {
  background: white;
  color: var(--color-gray-600);
}

.view-btn:not(.active):hover {
  background: var(--color-gray-50);
}

.shop-products {
  background: var(--color-gray-50);
  min-height: 60vh;
}

.products-grid-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1200px) {
  .products-grid-view {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid-view {
    grid-template-columns: 1fr;
  }
}

.products-list-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* WooCommerce Pagination Styling */
.woocommerce-pagination {
  text-align: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-300);
}

.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
  background: var(--color-vibrant-green);
  color: white;
  border-color: var(--color-vibrant-green);
}

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

@media (max-width: 768px) {
  .shop-filters .container > div {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .filter-categories {
    min-width: auto;
  }
  
  .filter-options {
    justify-content: space-between;
  }
  
  .products-grid-view {
    grid-template-columns: 1fr;
  }
  
  .products-list-view .product-card {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Feature Items Hover */
.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:hover .feature-icon {
  background: var(--color-vibrant-green) !important;
}

/* Product Cards Hover */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-vibrant-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-green);
}
/* Shop Page Styles */
.shop-hero {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-green) 50%, var(--color-dark-green) 100%);
  position: relative;
  overflow: hidden;
}

.shop-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-description {
  font-size: 1.25rem;
  color: var(--color-beige);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.shop-filters {
  background: var(--color-white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.category-filter {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.category-filter:not(.active) {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
}

.category-filter.active {
  background: var(--color-vibrant-green);
  color: white;
}

.category-filter:not(.active):hover {
  background: var(--color-beige);
  color: var(--color-black);
}

.view-toggle {
  display: flex;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  overflow: hidden;
}

.view-btn {
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn.active {
  background: var(--color-vibrant-green);
  color: white;
}

.view-btn:not(.active) {
  background: white;
  color: var(--color-gray-600);
}

.view-btn:not(.active):hover {
  background: var(--color-gray-50);
}

.shop-products {
  background: var(--color-gray-50);
  min-height: 60vh;
}

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

.products-list-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Product Card Enhanced Styles */
.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  height: fit-content;
}

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

.product-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-50);
  padding: 1rem;
}

.product-image img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.sale-badge, .new-badge {
  position: absolute;
  top: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
}

.sale-badge {
  left: 12px;
  background: #e74c3c;
  color: white;
}

.new-badge {
  right: 12px;
  background: var(--color-vibrant-green);
  color: white;
}

.quick-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .quick-actions {
  opacity: 1;
}

.quick-view-btn {
  background: rgba(255,255,255,0.9);
  color: var(--color-black);
  padding: 8px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: white;
  color: var(--color-vibrant-green);
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  color: var(--color-vibrant-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-title a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card:hover .product-title a {
  color: var(--color-vibrant-green);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.product-price {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-dark-green);
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.add-to-cart-btn {
  flex: 1;
  background: var(--color-vibrant-green);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.add-to-cart-btn:hover {
  background: var(--color-dark-green);
  transform: translateY(-1px);
}

.wishlist-btn {
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background: var(--color-vibrant-green);
  color: white;
}

/* Responsive Shop Design */
@media (max-width: 768px) {
  .shop-filters .container > div {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .filter-categories {
    min-width: auto;
  }
  
  .filter-options {
    justify-content: space-between;
  }
  
  .products-grid-view {
    grid-template-columns: 1fr;
  }
  
  .products-list-view .product-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .products-list-view .product-image {
    width: 100% !important;
    height: 250px !important;
  }
  
  .products-list-view .product-info {
    padding: 1rem !important;
  }
}

/* WooCommerce Pagination Styling */
.woocommerce-pagination {
  text-align: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-300);
}

.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
  background: var(--color-vibrant-green);
  color: white;
  border-color: var(--color-vibrant-green);
}

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