/*
Theme Name: Volsetes Theme
Theme URI: https://volsetes.net
Author: Volsetes Team
Author URI: https://volsetes.net
Description: Custom psychedelic theme for volsetes.net. White background, navy blue text, subtle psychedelic details. Fully bilingual (Spanish/English) ready, WooCommerce integrated.
Version: 1.0.5
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: volsetes-theme
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready, woocommerce, blog, e-commerce
*/

/* ===========================================
   Table of Contents
   ===========================================
   1. Reset & Base Styles
   2. Typography
   3. Layout & Structure
   4. Header & Navigation
   5. Footer
   6. Homepage Sections
   7. Psychedelic Effects
   8. Blog Posts
   9. Catalog & Blog
   10. WooCommerce Overrides
   11. Responsive Design
   =========================================== */

/* 1. Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


a {
  color: #00a8a8;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover,
a:focus {
  color: #007777;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #0a1f44;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

/* 4. Header & Navigation */
.site-header {
  background-color: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  flex-shrink: 0;
}

.custom-logo-link img {
  max-height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.custom-logo-link img:hover {
  transform: scale(1.05);
}

.main-navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-navigation a {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 1rem;
  color: #333;
  transition: color 0.2s ease;
  position: relative;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
  background-color: transparent;
  color: #6a5acd;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #6a5acd;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
  width: 80%;
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  background-color: transparent;
  border: 2px solid #00a8a8;
  border-radius: 0;
  color: #00a8a8;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin-left: auto;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: #00a8a8;
  color: white;
}

.menu-toggle .dashicons {
  vertical-align: middle;
}

.menu-toggle.toggled {
  background-color: #6a5acd;
  border-color: #6a5acd;
  color: #ffffff;
}

.primary-menu.toggled {
  display: flex;
}

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

.header-actions a {
  font-size: 1.5rem;
  color: #0a1f44;
  transition: color 0.3s ease;
}

.header-actions a:hover {
  color: #6a5acd;
}

.cart-count {
  display: none;
}

/* 5. Footer */
.site-footer {
  background-color: #0a1f44;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid #00a8a8;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #00a8a8;
  margin-top: 0.5rem;
  border-radius: 2px;
}

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

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

.footer-column a {
  color: #ffffff;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #00ffff;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

.social-icons a {
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  color: #ff00ff;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  border-color: #00ffff;
}

.newsletter-form input[type="email"] {
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0a1f44;
  font-size: 0.95rem;
}

.newsletter-form button {
  background-color: #00a8a8;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  width: 100%;
}

.newsletter-form button:hover {
  background-color: #007777;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #00ffff;
}

/* 6. Homepage Sections */
.hero-section {
  position: relative;
  background-image: url('assets/images/imagen_principal_home.png');
  background-size: cover;
  background-position: center center;
  height: 30vh;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  background-color: #6a5acd;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: none;
}

.button:hover {
  background-color: #00a8a8;
  transform: none;
  box-shadow: none;
}


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

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #00a8a8;
  margin: 1rem auto;
  border-radius: 2px;
}

/* 7. Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.variety-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 168, 168, 0.2);
}

.variety-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 168, 168, 0.2);
}

.variety-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.variety-card h3 {
  font-size: 1.5rem;
  color: #0a1f44;
  margin-bottom: 0.5rem;
}

.variety-card p {
  font-size: 0.95rem;
  color: #666;
}

/* 8. Homepage Grids */
.posts-grid,
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card,
.guide-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,168,168,0.2);
}

.post-card:hover,
.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,168,168,0.2);
}

.testimonials-slider {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-slider blockquote {
  background-color: #ffffff;
  border-left: 5px solid #00a8a8;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonials-slider cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: bold;
  color: #666;
}

/* 9. Psychedelic Effects */
@keyframes colorShift {
  0%   { border-color: #ff00ff; }
  33%  { border-color: #00ffff; }
  66%  { border-color: #ffff00; }
  100% { border-color: #ff00ff; }
}

.psychedelic-border {
  border: 2px solid #00a8a8;
  border-radius: 4px;
}

/* 9. Blog Posts */
.post {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 168, 168, 0.1);
    border-left: 5px solid #00a8a8;
    transition: all 0.3s ease;
}

.post:hover {
    border-left-color: #ff00ff;
    box-shadow: 0 15px 40px rgba(0, 168, 168, 0.2);
}

.entry-title {
    font-size: 2.2rem;
    color: #0a1f44;
    margin-bottom: 1rem;
}

.entry-meta {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

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

.entry-content img {
    border-radius: 8px;
    margin: 1.5rem 0;
}

.read-more {
    display: inline-block;
    background-color: #6a5acd;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #00a8a8;
}

/* Product links inside articles */
.product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.product-link,
a[href*="/product/"] {
    display: inline-block;
    background-color: #6a5acd;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: none;
}

.product-link:hover,
a[href*="/product/"]:hover {
    background-color: #00a8a8;
    transform: none;
    box-shadow: none;
}
/* 10. Catalog & Blog */
.wp-block-columns {
    margin-bottom: 3rem;
    gap: 2rem;
}

.wp-block-column {
    padding: 1rem;
    border: 1px solid rgba(0,0,128,0.1);
    border-radius: 8px;
    background-color: #ffffff;
}

.wp-block-image figcaption {
    font-weight: bold;
    margin-top: 0.5rem;
    color: #000080;
}

/* 10. WooCommerce Overrides */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.woocommerce ul.products li.product:hover {
  border-color: #00a8a8;
  box-shadow: 0 8px 20px rgba(0, 168, 168, 0.15);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 0.5rem;
}

.woocommerce ul.products li.product .price {
  color: #00a8a8;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.woocommerce ul.products li.product .price del {
  color: #888;
  font-size: 1rem;
}

.woocommerce ul.products li.product .button {
  margin-top: 1rem;
}

/* WooCommerce buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #content input.button,
.single_add_to_cart_button,
.add_to_cart_button,
.checkout-button,
.place-order .button {
  border-radius: 0 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* WooCommerce buttons hover */
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #content input.button:hover,
.single_add_to_cart_button:hover,
.add_to_cart_button:hover,
.checkout-button:hover,
.place-order .button:hover {
  border-radius: 0 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* 11. Sidebar & Widgets */
.woocommerce-grid {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.woocommerce-main {
  flex: 1;
  min-width: 0;
}

.woocommerce-sidebar {
  width: 280px;
  flex-shrink: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.woocommerce-sidebar.collapsed {
  width: 0;
  opacity: 0;
  overflow: hidden;
  margin-right: 0;
}

.woocommerce-main.expanded {
  flex: 1 0 100%;
}

.shop-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.shop-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-search {
  margin-right: 1rem;
  flex: 1;
  max-width: 300px;
}

.shop-search input[type="search"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #00a8a8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #0a1f44;
  background-color: #f8f9fa;
  transition: border-color 0.3s ease;
}

.shop-search input[type="search"]:focus {
  outline: none;
  border-color: #6a5acd;
  box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.2);
}

.sidebar-toggle {
  background-color: #6a5acd;
  color: white;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 1rem;
  transition: background-color 0.3s ease;
}

.sidebar-toggle:hover {
  background-color: #00a8a8;
}

.sidebar-toggle .toggle-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.woocommerce-breadcrumb {
  font-size: 0.9rem;
  color: #666;
}

.shop-result-count {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.shop-ordering select {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-family: inherit;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .shop-header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .shop-header-right {
    width: 100%;
    justify-content: flex-start;
  }
}

.sidebar .widget {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar .widget-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 1rem;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar li {
  margin-bottom: 0.75rem;
}

.sidebar input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Product Categories Filter Widget */
.product-categories-checkbox {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.product-categories-checkbox li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-categories-checkbox input[type="checkbox"] {
  margin-right: 0.75rem;
  cursor: pointer;
}

.product-categories-checkbox label {
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
}

.product-categories-filter .filter-button {
  background-color: #6a5acd;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.product-categories-filter .filter-button:hover {
  background-color: #00a8a8;
}

/* 10. Blog Articles */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.8;
}
.blog-article h2,
.blog-article h3,
.blog-article h4 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.blog-article th,
.blog-article td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.blog-article th {
  background-color: #f2f2f2;
  font-weight: bold;
}
.blog-article ul,
.blog-article ol {
  padding-left: 2rem;
  margin: 1rem 0;
}
.blog-article li {
  margin-bottom: 0.5rem;
}
.blog-article blockquote {
  border-left: 4px solid #ff00ff;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
}
.blog-article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* 11. Responsive Design */
@media (max-width: 992px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .site-branding {
    order: 1;
    flex: 0 0 auto;
  }

  .menu-toggle {
    display: block;
    order: 2;
    margin-left: 0;
    margin-bottom: 0;
  }

  .header-actions {
    order: 3;
    margin-top: 0;
  }

  .main-navigation {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    display: none;
  }

  .main-navigation ul.toggled {
    display: flex;
  }

  .main-navigation a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
    background-color: rgba(106, 90, 205, 0.05);
  }

  .main-navigation a:hover,
  .main-navigation a.current-menu-item {
    background-color: rgba(106, 90, 205, 0.1);
  }

  .header-actions {
    order: 2;
    margin-top: 1rem;
  }

  .hero-section {
    height: 35vh;
    min-height: 35vh;
  }

  .hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .variety-card {
    padding: 0.75rem;
  }

  .posts-grid,
  .guides-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  /* Mobile font size adjustments */
  body {
    font-size: 0.875rem; /* 14px */
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Mobile spacing adjustments */
  .container {
    padding: 0 10px;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .catalog-grid,
  .posts-grid,
  .guides-grid {
    margin-bottom: 2rem;
  }

  .site-header {
    padding: 1rem 0;
  }

  .header-container {
    gap: 1rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
  }
  .posts-grid,
  .guides-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  .hero-section {
    height: 30vh;
    min-height: 30vh;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  body {
    font-size: 0.8125rem; /* 13px */
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* ===========================================
   12. Modern WooCommerce Store Styles
   =========================================== */

/* Shop Hero */
.shop-hero {
  background: linear-gradient(135deg, #6a5acd 0%, #00a8a8 100%);
  padding: 4rem 0;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3rem;
}

.shop-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.shop-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
}

/* Shop Container */
.shop-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 1rem;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #6a5acd;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.filter-toggle-btn:hover {
  background-color: #00a8a8;
  transform: translateY(-2px);
}

.result-count-modern {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.shop-search-modern input[type="search"] {
  padding: 0.75rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  width: 280px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.shop-search-modern input[type="search"]:focus {
  outline: none;
  border-color: #6a5acd;
}

.shop-ordering-modern select {
  padding: 0.75rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.shop-ordering-modern select:hover {
  border-color: #6a5acd;
}

/* Shop Layout */
.shop-layout-modern {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Filters Sidebar */
.shop-filters {
  position: sticky;
  top: 100px;
  height: fit-content;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.shop-filters::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}

.shop-filters.active::before {
  opacity: 1;
  visibility: visible;
}

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

.filters-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a1f44;
  margin: 0;
}

.filters-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.filters-close:hover {
  color: #6a5acd;
}

/* Products Grid */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Product Card Modern */
.product-card-modern {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

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

.product-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Product Image */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

.product-image-link {
  display: block;
  position: relative;
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image-container img {
  transform: scale(1.1);
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #ff4757;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

/* Quick Actions */
.product-quick-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card-modern:hover .product-quick-actions {
  opacity: 1;
  transform: translateX(0);
}

.quick-view-btn {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background-color: #6a5acd;
  color: #ffffff;
  transform: scale(1.1);
}

/* Product Info */
.product-info-modern {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #6a5acd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-category-link:hover {
  color: #00a8a8;
}

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

.product-title-modern a {
  color: #0a1f44;
  transition: color 0.3s ease;
}

.product-title-modern a:hover {
  color: #6a5acd;
}

.product-description-short {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Product Rating */
.product-rating-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rating-count {
  font-size: 0.85rem;
  color: #999;
}

/* Product Footer */
.product-footer-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.product-price-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00a8a8;
}

.product-price-modern del {
  font-size: 1.1rem;
  color: #999;
  margin-right: 0.5rem;
}

.product-cart-modern .button,
.product-btn-modern {
  background-color: #6a5acd;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.product-cart-modern .button:hover,
.product-btn-modern:hover {
  background-color: #00a8a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 90, 205, 0.3);
}

/* Stock Status */
.stock-status {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.stock-status.out-of-stock {
  background-color: #ffebee;
  color: #c62828;
}

.stock-status.low-stock {
  background-color: #fff3e0;
  color: #ef6c00;
}

/* No Products Found */
.no-products-found {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.no-products-found svg {
  margin: 0 auto 2rem;
  opacity: 0.3;
}

.no-products-found h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Single Product Page */
.single-product-modern {
  background-color: #f8f9fa;
  padding: 2rem 0;
}

.breadcrumb-container-modern {
  margin-bottom: 2rem;
}

.breadcrumb-modern {
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: #ccc;
}

.product-main-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-layout-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Product Gallery */
.product-gallery-modern {
  position: sticky;
  top: 120px;
  height: fit-content;
}

/* Product Summary */
.product-summary-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-title-single {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.2;
  margin: 0;
}

.product-rating-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-link {
  color: #6a5acd;
  text-decoration: none;
  font-size: 0.95rem;
}

.reviews-link:hover {
  text-decoration: underline;
}

.product-price-single {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a8a8;
}

.product-price-single del {
  font-size: 1.8rem;
  color: #999;
  margin-right: 1rem;
}

.product-short-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.product-stock-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f0f8f0;
  border-radius: 8px;
  border-left: 4px solid #00a854;
}

.product-stock-info .in-stock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00a854;
  font-weight: 600;
}

.out-of-stock-single {
  color: #c62828;
  font-weight: 600;
}

/* Add to Cart Modern */
.product-add-to-cart-modern {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
}

.product-add-to-cart-modern .single_add_to_cart_button {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  background-color: #6a5acd;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-add-to-cart-modern .single_add_to_cart_button:hover {
  background-color: #00a8a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 90, 205, 0.3);
}

/* Product Meta */
.product-meta-modern {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.meta-label {
  font-weight: 600;
  color: #333;
}

.meta-value {
  color: #666;
}

.meta-value a {
  color: #6a5acd;
  text-decoration: none;
}

.meta-value a:hover {
  text-decoration: underline;
}

.tag-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: #e0e7ff;
  color: #6a5acd;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-badge:hover {
  background-color: #6a5acd;
  color: #ffffff;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: #f0f4ff;
  border-radius: 12px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
}

.trust-badge svg {
  color: #6a5acd;
}

.trust-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* Product Tabs Section */
.product-tabs-section {
  margin-bottom: 3rem;
}

/* Related Products Section */
.related-products-section {
  margin-bottom: 3rem;
}

.related-products-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0a1f44;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .shop-layout-modern {
    grid-template-columns: 1fr;
  }
  
  .shop-filters {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
  }
  
  .shop-filters.active {
    left: 0;
  }
  
  .filters-close {
    display: block;
  }
  
  .product-layout-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 2.5rem 0;
  }
  
  .shop-title {
    font-size: 2rem;
  }
  
  .shop-subtitle {
    font-size: 1rem;
  }
  
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .toolbar-left,
  .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
  
  .shop-search-modern input[type="search"] {
    width: 100%;
  }
  
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .product-main-section {
    padding: 1.5rem;
  }
  
  .product-title-single {
    font-size: 1.8rem;
  }
  
  .product-price-single {
    font-size: 1.8rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  .product-card-modern {
    border-radius: 12px;
  }
  
  .product-info-modern {
    padding: 1rem;
  }
  
  .product-title-modern {
    font-size: 1rem;
  }
  
  .product-price-modern {
    font-size: 1.2rem;
  }
  
  .product-btn-modern {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
