/*
Theme Name: Duftbörse
Theme URI: https://duftboerse.de
Author: Duftbörse Team
Author URI: https://duftboerse.de
Description: Hochwertiges Multi-Vendor-Marktplatz-Theme für Luxus-Parfüms. Maskulines Design mit Blau/Silber/Schwarz/Weiß-Farbpalette. WooCommerce-kompatibel mit Multi-Vendor-Unterstützung.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: duftboerse
Tags: e-commerce, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, translation-ready
*/

/* ==========================================================================
   CSS Custom Properties - Maskuline Farbpalette
   ========================================================================== */

:root {
  /* Primary Colors - Deep Blue */
  --db-primary: #1a5276;
  --db-primary-light: #2980b9;
  --db-primary-dark: #0e3a54;
  --db-primary-foreground: #f5f8fa;

  /* Secondary Colors - Silver */
  --db-secondary: #bdc3c7;
  --db-secondary-light: #ecf0f1;
  --db-secondary-dark: #95a5a6;
  --db-secondary-foreground: #2c3e50;

  /* Accent Colors */
  --db-accent: #3498db;
  --db-accent-foreground: #ffffff;

  /* Neutral Colors */
  --db-background: #f8f9fa;
  --db-foreground: #1a1a2e;
  --db-card: #ffffff;
  --db-card-foreground: #1a1a2e;
  --db-muted: #e8ecef;
  --db-muted-foreground: #6c757d;
  --db-border: #d1d5db;
  --db-input: #f1f3f5;

  /* Destructive */
  --db-destructive: #e74c3c;
  --db-destructive-foreground: #ffffff;

  /* Spacing */
  --db-radius: 0.5rem;
  --db-container-max: 1280px;

  /* Shadows */
  --db-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --db-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --db-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --db-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--db-foreground);
  background-color: var(--db-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--db-foreground);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
  color: var(--db-primary-light);
}

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

/* ==========================================================================
   Layout
   ========================================================================== */

.db-container {
  width: 100%;
  max-width: var(--db-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .db-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .db-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--db-border);
  background-color: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .header-inner {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-logo img {
  height: 64px;
  width: auto;
  transition: opacity 0.2s ease;
}

.site-header .site-logo:hover img {
  opacity: 0.8;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 400px;
  margin: 0 2rem;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  background-color: var(--db-background);
  color: var(--db-foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus {
  outline: none;
  border-color: var(--db-primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.15);
}

.header-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--db-muted-foreground);
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-navigation a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.8);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
  color: var(--db-foreground);
}

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

.header-actions .cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--db-radius);
  transition: background-color 0.2s ease;
}

.header-actions .cart-link:hover {
  background-color: var(--db-muted);
}

.header-actions .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--db-primary);
  color: var(--db-primary-foreground);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--db-foreground);
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--db-border);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.8);
}

.mobile-nav a:hover {
  color: var(--db-foreground);
}

@media (max-width: 767px) {
  .header-search,
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.db-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: var(--db-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.db-btn:focus-visible {
  outline: 2px solid var(--db-primary);
  outline-offset: 2px;
}

.db-btn-primary {
  background-color: var(--db-primary);
  color: var(--db-primary-foreground);
  border-color: var(--db-primary);
}

.db-btn-primary:hover {
  background-color: var(--db-primary-dark);
  color: var(--db-primary-foreground);
}

.db-btn-outline {
  background-color: transparent;
  color: var(--db-foreground);
  border-color: var(--db-border);
}

.db-btn-outline:hover {
  background-color: var(--db-muted);
  color: var(--db-foreground);
}

.db-btn-ghost {
  background-color: transparent;
  color: var(--db-foreground);
}

.db-btn-ghost:hover {
  background-color: var(--db-muted);
}

.db-btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.db-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}

.db-btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.db-card {
  background-color: var(--db-card);
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  box-shadow: var(--db-shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.db-card:hover {
  border-color: rgba(26, 82, 118, 0.3);
  box-shadow: var(--db-shadow-md);
}

.db-card-content {
  padding: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 5rem 0 8rem;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, var(--db-background) 50%, rgba(189, 195, 199, 0.1) 100%);
  overflow: hidden;
}

.hero-section .hero-bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 384px;
  pointer-events: none;
  opacity: 0.1;
}

.hero-section .hero-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.hero-section .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 3.75rem;
  }
  .hero-section {
    padding: 8rem 0 10rem;
  }
}

.hero-section .hero-content p {
  font-size: 1.125rem;
  color: var(--db-muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-section .hero-buttons {
    flex-direction: row;
  }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
  padding: 5rem 0;
  background-color: var(--db-card);
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.feature-card {
  border-width: 2px;
}

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .feature-icon.primary {
  background-color: rgba(26, 82, 118, 0.1);
  color: var(--db-primary);
}

.feature-card .feature-icon.secondary {
  background-color: rgba(189, 195, 199, 0.2);
  color: var(--db-secondary-foreground);
}

.feature-card .feature-icon.accent {
  background-color: var(--db-accent);
  color: var(--db-accent-foreground);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--db-muted-foreground);
  font-size: 0.875rem;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works {
  padding: 5rem 0;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.how-it-works-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.how-it-works-column h3.buying {
  color: var(--db-primary);
}

.step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.step-number.primary {
  background-color: var(--db-primary);
  color: var(--db-primary-foreground);
}

.step-number.secondary {
  background-color: var(--db-secondary);
  color: var(--db-secondary-foreground);
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--db-muted-foreground);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(52, 152, 219, 0.15) 50%, rgba(189, 195, 199, 0.1) 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--db-muted-foreground);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--db-border);
  background-color: var(--db-card);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand h3 {
  font-size: 1.125rem;
  color: var(--db-primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--db-muted-foreground);
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
  font-size: 0.875rem;
  color: var(--db-muted-foreground);
  transition: color 0.2s ease;
}

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

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  background-color: var(--db-input);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--db-primary);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--db-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--db-muted-foreground);
}

/* ==========================================================================
   Product Cards (WooCommerce Override)
   ========================================================================== */

.products .product,
.db-product-card {
  background-color: var(--db-card);
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.products .product:hover,
.db-product-card:hover {
  border-color: rgba(26, 82, 118, 0.3);
  box-shadow: var(--db-shadow-lg);
  transform: translateY(-2px);
}

.db-product-card .product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--db-muted);
}

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

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

.db-product-card .product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.db-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.db-badge-primary {
  background-color: var(--db-primary);
  color: var(--db-primary-foreground);
}

.db-badge-secondary {
  background-color: var(--db-secondary-light);
  color: var(--db-secondary-foreground);
}

.db-badge-success {
  background-color: #d4edda;
  color: #155724;
}

.db-product-card .product-info {
  padding: 1rem;
}

.db-product-card .product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--db-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.db-product-card .product-name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.db-product-card .product-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--db-muted-foreground);
  margin-bottom: 0.75rem;
}

.db-product-card .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--db-foreground);
}

.db-product-card .product-price .original-price {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--db-muted-foreground);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

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

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

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

/* ==========================================================================
   Shop Filters
   ========================================================================== */

.shop-filters {
  background-color: var(--db-card);
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--db-foreground);
}

.filter-group select,
.filter-group input[type="range"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  background-color: var(--db-input);
  font-size: 0.875rem;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--db-primary);
}

/* Range Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--db-muted);
  border-radius: 3px;
  border: none;
  padding: 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--db-primary);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: var(--db-shadow);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.db-input,
.db-textarea,
.db-select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  background-color: var(--db-background);
  color: var(--db-foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.db-input:focus,
.db-textarea:focus,
.db-select:focus {
  outline: none;
  border-color: var(--db-primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.15);
}

.db-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--db-foreground);
}

/* ==========================================================================
   Seller Registration
   ========================================================================== */

.seller-registration {
  max-width: 768px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.registration-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  flex: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.step-circle.active {
  background-color: var(--db-primary);
  color: var(--db-primary-foreground);
}

.step-circle.inactive {
  background-color: var(--db-muted);
  color: var(--db-muted-foreground);
}

.step-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: var(--db-muted);
  margin: 0 1rem;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.legal-page h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--db-primary);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p {
  margin-bottom: 1rem;
  color: var(--db-muted-foreground);
}

.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page ul li {
  margin-bottom: 0.5rem;
  color: var(--db-muted-foreground);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-item {
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--db-foreground);
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--db-muted);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--db-muted-foreground);
  font-size: 0.9375rem;
  display: none;
}

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

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-primary { color: var(--db-primary); }
.text-muted { color: var(--db-muted-foreground); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }

.bg-primary { background-color: var(--db-primary); }
.bg-card { background-color: var(--db-card); }
.bg-muted { background-color: var(--db-muted); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md-show { display: block; }
  .md-flex { display: flex; }
  .md-hidden { display: none; }
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */

.woocommerce .woocommerce-breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--db-muted-foreground);
}

.woocommerce .price {
  color: var(--db-foreground);
  font-weight: 700;
}

.woocommerce .price del {
  color: var(--db-muted-foreground);
  font-weight: 400;
}

.woocommerce .button,
.woocommerce button.button {
  background-color: var(--db-primary) !important;
  color: var(--db-primary-foreground) !important;
  border-radius: var(--db-radius) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  transition: background-color 0.2s ease !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
  background-color: var(--db-primary-dark) !important;
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
  background-color: var(--db-primary) !important;
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: var(--db-primary-dark) !important;
}

/* Star Rating */
.woocommerce .star-rating {
  color: #f39c12;
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--db-primary) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--db-primary) !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero-section {
    padding: 3rem 0 5rem;
  }

  .hero-section .hero-content h1 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
