/*
Theme Name: Traumharz
Theme URI: https://traumharz.de
Author: Traumharz
Author URI: https://traumharz.de
Description: Elegantes E-Commerce Theme für Resin-Kunst und handgefertigte Produkte. Optimiert für WooCommerce mit modernem Design und goldenen Akzenten.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: traumharz
Tags: e-commerce, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready

Traumharz WordPress Theme - Handgefertigte Resin-Kunst
*/

/* ==========================================
   CSS Variables / Custom Properties
   ========================================== */
:root {
    /* Farbpalette passend zum Logo (Schmetterlings-Baum) */
    --color-primary: #9B6B9E;           /* Lila - Hauptfarbe */
    --color-primary-light: #C9A0CB;     /* Helles Lila */
    --color-primary-dark: #7A5080;      /* Dunkles Lila */
    --color-accent: #D4A574;            /* Gold/Beige Akzent */
    --color-accent-light: #E8C9A0;      /* Helles Gold */
    --color-rose: #C48B9F;              /* Rosa */
    --color-brown: #5C3D2E;             /* Braun vom Baum */
    --color-secondary: #5C3D2E;
    --color-background: #FDF9F6;        /* Warmes Cremeweiß */
    --color-background-alt: #F9F3EE;    /* Leicht getöntes Beige */
    --color-white: #ffffff;
    --color-text: #4A3728;              /* Warmes Dunkelbraun */
    --color-text-muted: #8B7355;        /* Gedämpftes Braun */
    --color-border: #E8DDD4;            /* Warmer Border */
    --color-success: #7BA05B;
    --color-error: #C45B5B;
    
    /* Moderne Fonts - handschriftlich & elegant */
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-script: 'Dancing Script', cursive;
    
    --shadow-sm: 0 1px 3px rgba(92,61,46,0.06);
    --shadow-md: 0 4px 12px rgba(92,61,46,0.08);
    --shadow-lg: 0 8px 30px rgba(92,61,46,0.1);
    --shadow-xl: 0 20px 50px rgba(92,61,46,0.12);
    
    /* Gradient für Buttons etc */
    --gradient-primary: linear-gradient(90deg, #9B6B9E 0%, #C48B9F 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* Stagger Animation for Product Cards */
.products li:nth-child(1) { animation-delay: 0s; }
.products li:nth-child(2) { animation-delay: 0.1s; }
.products li:nth-child(3) { animation-delay: 0.2s; }
.products li:nth-child(4) { animation-delay: 0.3s; }
.products li:nth-child(5) { animation-delay: 0.4s; }
.products li:nth-child(6) { animation-delay: 0.5s; }
.products li:nth-child(7) { animation-delay: 0.6s; }
.products li:nth-child(8) { animation-delay: 0.7s; }

/* Element Animation States */
.product-card,
.feature-card,
.section-header,
.about-image,
.about-content,
.hero-content,
.hero-image,
.category-compact-card,
.traumharz-related-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.visible,
.feature-card.visible,
.section-header.visible,
.about-image.visible,
.about-content.visible,
.hero-content.visible,
.hero-image.visible,
.category-compact-card.visible,
.traumharz-related-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero specific animations */
.hero-content.visible {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-image.visible {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Button hover effects */
.btn,
.btn-cart,
.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
}

.btn::after,
.btn-cart::after,
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after,
.btn-cart:hover::after,
.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Image hover zoom effect */
.product-card .product-image-wrapper img,
.woocommerce ul.products li.product a img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image-wrapper img,
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.08);
}

/* Card lift effect */
.product-card,
.feature-card,
.category-compact-card,
.traumharz-related-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover,
.feature-card:hover,
.category-compact-card:hover,
.traumharz-related-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 61, 46, 0.15);
}

/* Badge animation */
.product-badge {
    animation: pulse 2s infinite;
}

/* Loading shimmer effect */
.loading-shimmer {
    background: linear-gradient(90deg, 
        var(--color-background) 0%, 
        var(--color-background-alt) 50%, 
        var(--color-background) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Floating animation for decorative elements */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Hero badge entrance */
.hero-badge {
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Section labels */
.section-label {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

/* Link underline animation */
.main-nav a,
.footer-links a {
    position: relative;
}

.main-nav a::after,
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after {
    width: 100%;
}

/* Focus ring animation */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 107, 158, 0.3);
    transition: box-shadow 0.2s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
}

/* Gradient Text for Headings */
.text-gradient,
.section-title em {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-rose) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Typography
   ========================================== */
.font-serif {
    font-family: var(--font-serif);
}

.font-display {
    font-family: var(--font-display);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.text-gold {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

/* ==========================================
   Layout & Container
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 960px;
}

.container-wide {
    max-width: 1440px;
}

/* ==========================================
   Header - Liquid Glass Effect
   ========================================== */
.site-header {
    position: sticky;
    top: 1rem;
    z-index: 1000;
    margin: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    box-shadow: 
        0 8px 32px rgba(155, 107, 158, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(155, 107, 158, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow: 
        0 12px 40px rgba(155, 107, 158, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(155, 107, 158, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img,
.custom-logo,
.site-header .custom-logo-link img {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
}

.site-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.site-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

.main-nav a {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--color-text);
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    background: rgba(155, 107, 158, 0.1);
    color: var(--color-primary);
}

.main-nav a::after {
    display: none;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown-toggle svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(155, 107, 158, 0.15);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(155, 107, 158, 0.1);
    color: var(--color-primary);
}

/* WordPress Menu Dropdown Support */
.main-nav .menu-item-has-children {
    position: relative;
}

.main-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.main-nav .menu-item-has-children > a::after {
    content: '';
    display: block !important;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
}

.main-nav .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 107, 158, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(155, 107, 158, 0.15);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.main-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    margin: 0;
}

.main-nav .sub-menu a {
    display: block;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0.5rem;
    white-space: nowrap;
    color: var(--color-text);
}

.main-nav .sub-menu a:hover {
    background: rgba(155, 107, 158, 0.1);
    color: var(--color-primary);
}

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

.header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    background: var(--color-background);
}

.header-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-text);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Form */
.search-form-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    max-width: calc(100vw - 2rem);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 107, 158, 0.1);
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(155, 107, 158, 0.2);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.search-form-wrapper.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(155, 107, 158, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.9rem;
    background: white;
    transition: all 0.2s ease;
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(155, 107, 158, 0.1);
}

.search-form .search-submit {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-form .search-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.3);
}

.search-form .search-submit svg {
    stroke: white;
}

/* Mobile Search */
@media (max-width: 767px) {
    .header-actions .search-form-wrapper,
    .search-form-wrapper {
        position: fixed !important;
        top: 70px !important;
        bottom: auto !important;
        left: 1rem !important;
        right: 1rem !important;
        width: calc(100% - 2rem) !important;
        max-width: calc(100% - 2rem) !important;
        border-radius: 1rem !important;
        padding: 0.75rem !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    .header-actions .search-form-wrapper.open,
    .search-form-wrapper.open {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .search-form {
        display: flex !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }
    
    .search-form .search-field {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 0.875rem 1rem !important;
        font-size: 16px !important; /* Prevents iOS zoom */
    }
    
    .search-form .search-submit {
        width: 46px !important;
        height: 46px !important;
        flex-shrink: 0 !important;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(155, 107, 158, 0.1);
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--color-white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-full);
}

.mobile-nav {
    padding: 1.5rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: none;
}

/* Mobile Menu - WordPress Submenu Support */
.mobile-nav .menu-item-has-children {
    position: relative;
}

.mobile-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav .menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
}

.mobile-nav .menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

.mobile-nav .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    background: var(--color-background);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
}

.mobile-nav .menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-nav .sub-menu li {
    margin: 0;
}

.mobile-nav .sub-menu a {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav .sub-menu a:hover {
    color: var(--color-primary);
}

/* Mobile Nav Dropdown für Kategorien */
.mobile-nav-dropdown {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-parent > a {
    flex: 1;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: none !important;
}

.mobile-nav-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.mobile-nav-toggle svg {
    transition: transform 0.2s ease;
}

.mobile-nav-dropdown.open .mobile-nav-toggle svg {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
    background: var(--color-background);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
}

.mobile-nav-dropdown.open .mobile-nav-submenu {
    display: block;
}

.mobile-nav-submenu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-submenu a:last-child {
    border-bottom: none;
}

.mobile-nav-submenu a:hover {
    color: var(--color-primary);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
    align-items: center;
    min-height: calc(100vh - 200px);
}

@media (min-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0;
        min-height: calc(100vh - 120px);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.35);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-brown);
}

.hero-title em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    color: var(--color-rose);
    font-size: 1.15em;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
}

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

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .hero-image {
        aspect-ratio: 1;
        max-height: 500px;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 107, 158, 0.1) 0%, rgba(196, 139, 159, 0.1) 100%);
    pointer-events: none;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(155, 107, 158, 0.35);
    border: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 107, 158, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-cart {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(155, 107, 158, 0.35);
}

.btn-cart:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 107, 158, 0.45);
}

/* ==========================================
   Section Styles
   ========================================== */
.section {
    padding: 5rem 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--color-brown);
}

.section-title em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--color-primary);
}

.section-description {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Products Grid (WooCommerce Override)
   ========================================== */
.products-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Bestseller Section Grid Override */
.bestseller-section ul.products,
.bestseller-section .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
}

.bestseller-section ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

@media (max-width: 992px) {
    .bestseller-grid,
    .products-grid,
    .bestseller-section ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

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

.product-card,
.woocommerce ul.products li.product {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--color-text);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.product-badge.sale {
    background: var(--color-error);
}

.product-image,
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--color-background);
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image,
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.product-image-wrapper {
    overflow: hidden;
    position: relative;
}

.product-info,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1.25rem;
}

.product-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.product-price,
.woocommerce ul.products li.product .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.product-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-rating svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

/* ==========================================
   About/Story Section
   ========================================== */
.about-section {
    background: var(--color-background-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
    max-height: 550px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-quote {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 280px;
}

@media (min-width: 768px) {
    .about-quote {
        right: -2rem;
    }
}

.about-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.about-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1.5rem;
    color: var(--color-brown);
}

.about-title em {
    font-family: var(--font-script);
    font-style: normal;
    display: block;
    color: var(--color-primary);
    font-size: 1.1em;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==========================================
   Features/USP Section
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(155, 107, 158, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(155, 107, 158, 0.12) 0%, rgba(196, 139, 159, 0.12) 100%);
    border-radius: 1rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--color-brown);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-payment {
    display: flex;
    gap: 0.5rem;
}

.footer-payment img {
    height: 24px;
}

/* ==========================================
   WooCommerce Specific Styles
   ========================================== */
.woocommerce-page .woocommerce {
    margin-top: 2rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 2rem;
}

.woocommerce .woocommerce-ordering select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
}

/* Single Product */
.woocommerce div.product {
    padding: 2rem 0;
}

.woocommerce div.product div.images {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.woocommerce div.product .product_title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.woocommerce div.product p.price {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.woocommerce div.product form.cart {
    margin-bottom: 2rem;
}

.woocommerce div.product form.cart .quantity input {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
    background: var(--color-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
    background: var(--color-primary-dark);
}

/* Cart */
.woocommerce-cart table.cart {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.woocommerce-cart table.cart td {
    border-color: var(--color-border);
}

.woocommerce .cart_totals {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-weight: 600;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--color-primary-dark);
}

/* Checkout */
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.woocommerce-checkout #payment {
    background: var(--color-background);
    border-radius: var(--radius-lg);
}

.woocommerce-checkout #place_order {
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-weight: 600;
    width: 100%;
}

.woocommerce-checkout #place_order:hover {
    background: var(--color-primary-dark);
}

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-family: var(--font-display);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--color-primary);
    background: var(--color-background);
    border-radius: var(--radius-md);
}

.woocommerce-error {
    border-top-color: var(--color-error);
    background: #fef2f2;
    border-radius: var(--radius-md);
}

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

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ==========================================
   Utilities
   ========================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

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

/* ==========================================
   Hero Background Animation
   ========================================== */
.hero-section-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Blob Animation */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-rose) 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    animation-duration: 30s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: var(--color-primary-light);
}

.particle:nth-child(3n) {
    background: var(--color-rose);
    width: 4px;
    height: 4px;
}

.particle:nth-child(5n) {
    background: rgba(255, 255, 255, 0.8);
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Hero content above animation */
.hero-section-wrapper .container {
    position: relative;
    z-index: 1;
}

/* Mobile: smaller blobs, fewer particles */
@media (max-width: 767px) {
    .blob-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    .blob-2 {
        width: 150px;
        height: 150px;
    }
    
    .blob-3 {
        width: 120px;
        height: 120px;
    }
    
    .blob {
        filter: blur(40px);
        opacity: 0.4;
    }
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 767px) {
    /* Mobile Header Fix */
    .site-header {
        margin: 0.5rem;
        top: 0.5rem;
        border-radius: 1rem;
    }
    
    .header-inner {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .site-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .header-actions {
        gap: 0.25rem;
    }
    
    .header-actions .action-btn {
        width: 36px;
        height: 36px;
    }
    
    #mobile-menu-toggle {
        display: flex !important;
        width: 36px;
        height: 36px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-quote {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1.5rem;
    }
}

/* ==========================================
   Page Template Styling
   ========================================== */
.page-main {
    padding-top: 6rem;
    padding-bottom: 4rem;
    min-height: 60vh;
}

.page-main .container {
    max-width: 1200px;
}

.page-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.page-content .entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.page-content .entry-content h1,
.page-content .entry-content h2,
.page-content .entry-content h3 {
    font-family: var(--font-serif);
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.page-content .entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.page-content .entry-content a:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 767px) {
    .page-main {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    
    .page-content {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }
}
