
/* =====================================================
   PRIORITY STYLES — überschreiben WordPress Block CSS
   ===================================================== */

/* Body: MUSS unsere Font und Farbe setzen */
body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    background: var(--lp-cream, #FFF8F0) !important;
    color: var(--lp-text, #2C1810) !important;
    line-height: 1.6 !important;
}

/* Navigation */
nav.lp-nav, .lp-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(44, 24, 16, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Hero: Logo-Background */
.lp-hero, section.lp-hero, .wp-block-group.lp-hero {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: #FFFFFF !important;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(/wp-content/uploads/2026/07/logo_full.jpeg) center/contain no-repeat, #1a1a1a !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Hero Content */
.lp-hero-content, .lp-hero .lp-hero-content {
    position: relative !important;
    z-index: 1 !important;
    padding: 2rem !important;
    max-width: 800px !important;
}

.lp-hero h1, .lp-hero .lp-hero-content h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

.lp-hero p, .lp-hero .lp-hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem) !important;
    opacity: 0.9 !important;
    margin-bottom: 2rem !important;
    font-style: italic !important;
    color: #FFFFFF !important;
}

/* Buttons */
.lp-btn {
    display: inline-block !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
    border: none !important;
}

.lp-btn-primary {
    background: #D4A017 !important;
    color: #2C1810 !important;
}

.lp-btn-outline {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid #D4A017 !important;
}

/* Category Navigation */
.lp-cat-nav, nav.lp-cat-nav {
    position: sticky !important;
    top: 60px !important;
    z-index: 999 !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    overflow-x: auto !important;
}

.lp-cat-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    background: #F5F0EB !important;
    text-decoration: none !important;
    color: #2C1810 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
    border: 2px solid transparent !important;
}

/* Category Cards */
.lp-cat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    text-decoration: none !important;
    color: #2C1810 !important;
    transition: transform 0.3s !important;
    padding: 1.5rem !important;
    text-align: center !important;
}

/* Sections */
.lp-section {
    padding: 5rem 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.lp-section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
    color: #8B1A1A !important;
}

/* Menu Cards */
.lp-menu-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s !important;
}

/* Contact */
.lp-contact {
    background: #F5F0EB !important;
}

/* Form */
.lp-order-form {
    background: #FFFFFF !important;
    padding: 2rem !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
}

/* Footer */
.lp-footer {
    background: #2C1810 !important;
    color: #FFF8F0 !important;
    text-align: center !important;
    padding: 2rem !important;
}

/* Footer Links */
.lp-footer a {
    color: #D4A017 !important;
    text-decoration: none !important;
}

/* Navigation Brand */
.lp-nav-brand {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #D4A017 !important;
    text-decoration: none !important;
}

/* Nav Links */
.lp-nav-links a {
    color: #FFF8F0 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-nav-links { display: none !important; }
    .lp-contact-grid { grid-template-columns: 1fr !important; }
    .lp-menu-grid { grid-template-columns: 1fr !important; }
    .lp-hero h1 { font-size: 2rem !important; }
    .lp-cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}


/*
Theme Name: La Familia Pizza
Theme URI: https://pizza-sonnenbühl.de
Author: Hermes Agent / GLM 5.2
Description: Professionelles Restaurant-Theme für La Familia Pizza Sonnenbühl. Hero-Bereich, Speisekarte, Kontakt, Bestellformular.
Version: 1.0.0
Text Domain: lafamilia
License: GNU General Public License v2
Tags: restaurant, food, menu, one-column, custom-menu, featured-images, theme-options
*/

:root {
    --lp-primary: #8B1A1A;
    --lp-primary-light: #A52A2A;
    --lp-primary-dark: #6B1010;
    --lp-gold: #D4A017;
    --lp-cream: #FFF8F0;
    --lp-white: #FFFFFF;
    --lp-gray: #F5F0EB;
    --lp-text: #2C1810;
    --lp-text-light: #6B5B50;
    --lp-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--lp-cream);
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === NAVIGATION === */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.3s;
}
.lp-nav.scrolled { background: rgba(44, 24, 16, 0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.lp-nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--lp-gold);
    text-decoration: none;
}
.lp-nav-links { display: flex; gap: 2rem; list-style: none; }
.lp-nav-links a {
    color: var(--lp-cream); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
    transition: color 0.3s;
}
.lp-nav-links a:hover { color: var(--lp-gold); }

/* === HERO === */
.lp-hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--lp-white);
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(/wp-content/uploads/2026/07/logo_full.jpeg) center/contain no-repeat, #1a1a1a;
    position: relative; overflow: hidden;
}
.lp-hero::before {
    content: ''; position: absolute; inset: 0;
    background: none;
    background-size: 200px;
}
.lp-hero-content { position: relative; z-index: 1; padding: 2rem; max-width: 800px; }
.lp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.lp-hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9; margin-bottom: 2rem;
    font-style: italic;
}
.lp-hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.lp-btn {
    display: inline-block; padding: 1rem 2rem; border-radius: 50px;
    font-weight: 600; text-decoration: none; text-transform: uppercase;
    letter-spacing: 0.05em; transition: all 0.3s; cursor: pointer; border: none;
}
.lp-btn-primary {
    background: var(--lp-gold); color: var(--lp-text);
}
.lp-btn-primary:hover { background: #e6b422; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212,160,23,0.4); }
.lp-btn-outline {
    background: transparent; color: var(--lp-white);
    border: 2px solid var(--lp-gold);
}
.lp-btn-outline:hover { background: var(--lp-gold); color: var(--lp-text); }

/* === SECTION === */
.lp-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.lp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; text-align: center; margin-bottom: 0.5rem;
    color: var(--lp-primary);
}
.lp-section-subtitle {
    text-align: center; color: var(--lp-text-light);
    margin-bottom: 3rem; font-size: 1.1rem;
}

/* === MENU GRID === */
.lp-menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.lp-menu-card {
    background: var(--lp-white); border-radius: 16px; overflow: hidden;
    box-shadow: var(--lp-shadow); transition: transform 0.3s;
}
.lp-menu-card:hover { transform: translateY(-4px); }
.lp-menu-card-img {
    width: 100%; height: 200px; object-fit: cover;
    background: linear-gradient(135deg, var(--lp-primary-light), var(--lp-primary));
}
.lp-menu-card-body { padding: 1.5rem; }
.lp-menu-card-category {
    display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    background: var(--lp-gray); color: var(--lp-text-light); margin-bottom: 0.5rem;
}
.lp-menu-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.lp-menu-card p { font-size: 0.9rem; color: var(--lp-text-light); margin-bottom: 1rem; }
.lp-menu-card-price {
    font-size: 1.4rem; font-weight: 700; color: var(--lp-primary);
}

/* === CONTACT === */
.lp-contact { background: var(--lp-gray); }
.lp-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    max-width: 1000px; margin: 0 auto;
}
.lp-contact-info h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--lp-primary); }
.lp-contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.lp-contact-icon { font-size: 1.5rem; min-width: 2rem; }
.lp-contact-item strong { display: block; margin-bottom: 0.25rem; }

/* === ORDER FORM === */
.lp-order-form { background: var(--lp-white); padding: 2rem; border-radius: 16px; box-shadow: var(--lp-shadow); }
.lp-order-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--lp-primary); }
.lp-form-group { margin-bottom: 1rem; }
.lp-form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; margin-bottom: 0.5rem; color: var(--lp-text-light);
}
.lp-form-group input, .lp-form-group select, .lp-form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--lp-gray);
    border-radius: 8px; font-size: 1rem; font-family: inherit;
    transition: border-color 0.3s;
}
.lp-form-group input:focus, .lp-form-group select:focus, .lp-form-group textarea:focus {
    outline: none; border-color: var(--lp-primary);
}

/* === FOOTER === */
.lp-footer {
    background: var(--lp-text); color: var(--lp-cream);
    text-align: center; padding: 2rem; font-size: 0.9rem;
}
.lp-footer a { color: var(--lp-gold); text-decoration: none; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .lp-nav-links { display: none; }
    .lp-contact-grid { grid-template-columns: 1fr; }
    .lp-menu-grid { grid-template-columns: 1fr; }
    .lp-hero h1 { font-size: 2rem; }
}


/* === CATEGORY NAVIGATION === */
.lp-cat-nav {
    position: sticky; top: 60px; z-index: 999;
    background: var(--lp-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.lp-cat-nav-inner {
    display: flex; gap: 0.5rem; padding: 0.75rem 1rem;
    max-width: 1200px; margin: 0 auto;
    justify-content: center; flex-wrap: nowrap;
}
.lp-cat-link {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 25px;
    background: var(--lp-gray); text-decoration: none;
    color: var(--lp-text); font-size: 0.85rem; font-weight: 600;
    white-space: nowrap; transition: all 0.3s;
    border: 2px solid transparent;
}
.lp-cat-link:hover {
    background: var(--lp-primary); color: var(--lp-white);
    border-color: var(--lp-primary);
}
.lp-cat-icon { font-size: 1.2rem; }
.lp-cat-count {
    background: var(--lp-primary); color: white;
    font-size: 0.7rem; padding: 0.15rem 0.5rem;
    border-radius: 10px; min-width: 1.5rem; text-align: center;
}

/* === CATEGORY CARDS === */
.lp-cat-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-items: center;
    gap: 1.5rem; margin-bottom: 2rem;
}
.lp-cat-card {
    display: flex; flex-direction: column; align-items: center;
    background: var(--lp-white); border-radius: 16px; overflow: hidden;
    box-shadow: var(--lp-shadow); text-decoration: none;
    color: var(--lp-text); transition: transform 0.3s;
    padding: 1.5rem; text-align: center;
}
.lp-cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.lp-cat-card-icon {
    font-size: 3.5rem; margin-bottom: 0.75rem;
    width: 100px; height: 100px; display: flex; align-items: center; justify-content: center;
    background: var(--lp-gray); border-radius: 50%;
}
.lp-cat-card-img {
    width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
    margin-bottom: 0.5rem;
}
.lp-cat-card-body h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.lp-cat-card-body p { font-size: 0.8rem; color: var(--lp-text-light); }

/* === RESPONSIVE === */
    .lp-cat-nav-inner { justify-content: flex-start; min-width: max-content; }
    .lp-cat-nav::-webkit-scrollbar { display: none; }
    .lp-cat-link { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
    .lp-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-contact-grid { grid-template-columns: 1fr; }
    .lp-menu-grid { grid-template-columns: 1fr; }
    .lp-hero h1 { font-size: 2rem; }
}

/* =====================================================
   WOOCOMMERCE KATEGORIE-SEITEN
   ===================================================== */

.lp-page-content {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.lp-page-content.lp-narrow {
    max-width: 900px;
}
.lp-page-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8B1A1A;
    text-align: center;
}
.lp-page-body {
    line-height: 1.8;
}
.lp-page-body p {
    text-align: center;
    color: #6B5B50;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* WooCommerce Category Grid */
.lp-page-body .product-categories {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.lp-page-body .product-categories li {
    background: #FFF !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.08) !important;
    text-align: center !important;
    transition: transform .3s !important;
}
.lp-page-body .product-categories li:hover {
    transform: translateY(-4px) !important;
}
.lp-page-body .product-categories a {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: #2C1810 !important;
    display: block !important;
}
.lp-page-body .product-categories .count {
    display: block !important;
    font-size: .85rem !important;
    color: #6B5B50 !important;
    margin-top: .5rem !important;
}

/* WooCommerce Product Grid */
.lp-page-body ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.lp-page-body ul.products li.product {
    background: #FFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.08) !important;
    transition: transform .3s !important;
    padding: 0 !important;
    border: none !important;
}
.lp-page-body ul.products li.product:hover {
    transform: translateY(-4px) !important;
}
.lp-page-body ul.products li.product a {
    text-decoration: none !important;
    color: inherit !important;
}
.lp-page-body ul.products li.product .woocommerce-loop-product__link {
    display: block !important;
    padding: 1.5rem !important;
}
.lp-page-body ul.products li.product h2 {
    font-size: 1.1rem !important;
    margin: 1rem 0 .5rem !important;
    color: #2C1810 !important;
    text-align: center !important;
}
.lp-page-body ul.products li.product .price {
    display: block !important;
    text-align: center !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #8B1A1A !important;
    margin-bottom: .75rem !important;
}
.lp-page-body ul.products li.product .button {
    display: block !important;
    width: 100% !important;
    padding: .75rem 1rem !important;
    background: #D4A017 !important;
    color: #2C1810 !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: .05em !important;
    font-size: .85rem !important;
}
.lp-page-body ul.products li.product .button:hover {
    background: #e6b422 !important;
}
.lp-page-body ul.products li.product .added_to_cart {
    display: none !important;
}

/* Placeholder for products without images */
.lp-page-body ul.products li.product .wp-post-image,
.lp-page-body ul.products li.product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 12px 12px 0 0 !important;
    background: linear-gradient(135deg, #A52A2A, #8B1A1A) !important;
}
.lp-page-body ul.products li.product img[src=""],
.lp-page-body ul.products li.product img:not([src]),
.lp-page-body ul.products li.product a img:not([src*="uploads"]) {
    background: linear-gradient(135deg, #A52A2A, #8B1A1A) !important;
    min-height: 200px !important;
    display: block !important;
}

/* WooCommerce Sort/Count Bar */
.woocommerce-result-count,
.woocommerce-ordering {
    color: #6B5B50 !important;
    font-size: .9rem !important;
    margin-bottom: 2rem !important;
}
.woocommerce-ordering select {
    padding: .5rem 1rem !important;
    border: 2px solid #F5F0EB !important;
    border-radius: 8px !important;
    background: #FFF !important;
    font-family: inherit !important;
}

/* WooCommerce Pagination */
.woocommerce-pagination {
    text-align: center !important;
    margin-top: 3rem !important;
}
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    gap: .5rem !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 0 !important;
}
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
    display: inline-block !important;
    padding: .5rem 1rem !important;
    background: #FFF !important;
    border-radius: 8px !important;
    color: #2C1810 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.06) !important;
}
.woocommerce-pagination ul.page-numbers li span.current {
    background: #8B1A1A !important;
    color: #FFF !important;
}
/* =====================================================
   WOOCOMMERCE BLOCKS — Styling für Kategorie-Seiten
   ===================================================== */

/* Grid Container */
.wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 2rem 0 !important;
}

/* Produktkarte */
.wc-block-grid__product {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
}

.wc-block-grid__product::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #8B1A1A, #D4A017) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.wc-block-grid__product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 40px rgba(139,26,26,0.12) !important;
    border-color: rgba(139,26,26,0.1) !important;
}

.wc-block-grid__product:hover::before {
    opacity: 1 !important;
}

/* Produktbild */
.wc-block-grid__product-image {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #F5F0EB, #EDE5DA, #E8DDD0) !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Placeholder-Bild ausblenden */
.wc-block-grid__product-image img.woocommerce-placeholder {
    opacity: 0.15 !important;
    filter: grayscale(100%) !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    mix-blend-mode: multiply !important;
}

/* Subtile Hintergrund-Kreise bei Placeholder */
.wc-block-grid__product-image:has(img.woocommerce-placeholder)::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 20% 30%, rgba(139,26,26,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212,160,23,0.06) 0%, transparent 50%) !important;
}

/* Food-Emoji als Icon über Placeholder */
.wc-block-grid__product-image:has(img.woocommerce-placeholder)::after {
    position: absolute !important;
    font-size: 3rem !important;
    opacity: 0.35 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Food-Emojis rotieren */
.wc-block-grid__product:nth-child(6n+1) .wc-block-grid__product-image:has(img.woocommerce-placeholder)::after { content: '🍕' !important; }
.wc-block-grid__product:nth-child(6n+2) .wc-block-grid__product-image:has(img.woocommerce-placeholder)::after { content: '🍔' !important; }
.wc-block-grid__product:nth-child(6n+3) .wc-block-grid__product-image:has(img.woocommerce-placeholder)::after { content: '🍟' !important; }
.wc-block-grid__product:nth-child(6n+4) .wc-block-grid__product-image:has(img.woocommerce-placeholder)::after { content: '🥗' !important; }
.wc-block-grid__product:nth-child(6n+5) .wc-block-grid__product-image:has(img.woocommerce-placeholder)::after { content: '🍝' !important; }
.wc-block-grid__product:nth-child(6n+6) .wc-block-grid__product-image:has(img.woocommerce-placeholder)::after { content: '🥤' !important; }

/* Produkt-Titel */
.wc-block-grid__product-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    text-align: center !important;
    padding: 1rem 1rem 0 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

.wc-block-grid__product:hover .wc-block-grid__product-title {
    color: #8B1A1A !important;
}

/* Preis */
.wc-block-grid__product-price {
    text-align: center !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #8B1A1A !important;
    padding: 0.5rem 1rem !important;
    margin-top: auto !important;
    position: relative !important;
}

.wc-block-grid__product-price::before {
    content: '' !important;
    display: block !important;
    width: 40px !important;
    height: 2px !important;
    background: #D4A017 !important;
    margin: 0.5rem auto !important;
    opacity: 0.5 !important;
}

/* Add to Cart Button (wenn vorhanden im Block) */
.wc-block-grid__product-add-to-cart {
    padding: 0 1rem 1rem !important;
    text-align: center !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link {
    background: #D4A017 !important;
    color: #2C1810 !important;
    border-radius: 50px !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s !important;
    border: none !important;
    width: 100% !important;
    display: inline-block !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
    background: #e6b422 !important;
    transform: translateY(-1px) !important;
}

/* Kategorie-Hero-Banner via CSS */
.lp-page-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.8rem !important;
    color: #FFFFFF !important;
    text-align: center !important;
    background: linear-gradient(135deg, #6B1010, #8B1A1A, #A52A2A) !important;
    padding: 5rem 2rem 3rem !important;
    margin: calc(-6rem - 1px) -2rem 2rem !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    position: relative !important;
}

.lp-page-title::after {
    content: '' !important;
    display: block !important;
    width: 80px !important;
    height: 3px !important;
    background: #D4A017 !important;
    margin: 0.75rem auto 0 !important;
    border-radius: 2px !important;
}

/* Beschreibung auf Kategorie-Seiten */
.lp-page-body p {
    max-width: 700px !important;
    margin: 1.5rem auto !important;
    text-align: center !important;
    color: #2C1810 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

/* Aktive Menü-Kategorie hervorheben */
.current-menu-item a,
.current_page_item a {
    color: #D4A017 !important;
    position: relative !important;
}

.current-menu-item a::after,
.current_page_item a::after {
    content: '' !important;
    display: block !important;
    height: 2px !important;
    background: #D4A017 !important;
    margin-top: 2px !important;
    border-radius: 1px !important;
}

/* Responsive */
@media (max-width: 900px) {
    .wc-block-grid__products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .wc-block-grid__products {
        grid-template-columns: 1fr !important;
    }
    .lp-page-title {
        font-size: 2rem !important;
        padding: 4rem 1.5rem 2rem !important;
    }
}/* =====================================================
   WOOCOMMERCE NATIVE ARCHIVE — Kategorie-Seiten
   ===================================================== */

/* Haupt-Container */
body.archive.tax-product_cat #primary,
body.archive.tax-product_cat main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem 4rem !important;
}

/* Breadcrumb */
body.archive.tax-product_cat .woocommerce-breadcrumb {
    text-align: center !important;
    color: #6B5B50 !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
}
body.archive.tax-product_cat .woocommerce-breadcrumb a {
    color: #8B1A1A !important;
}

/* Kategorie-Titel als Hero */
body.archive.tax-product_cat .woocommerce-products-header__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.8rem !important;
    color: #FFFFFF !important;
    text-align: center !important;
    background: linear-gradient(135deg, #6B1010, #8B1A1A, #A52A2A) !important;
    padding: 5rem 2rem 3rem !important;
    margin: calc(-6rem - 1px) -2rem 2rem !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    position: relative !important;
}
body.archive.tax-product_cat .woocommerce-products-header__title::after {
    content: '' !important;
    display: block !important;
    width: 80px !important;
    height: 3px !important;
    background: #D4A017 !important;
    margin: 0.75rem auto 0 !important;
    border-radius: 2px !important;
}

/* Result Count & Sorting */
body.archive.tax-product_cat .woocommerce-result-count,
body.archive.tax-product_cat .woocommerce-ordering {
    color: #6B5B50 !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
}
body.archive.tax-product_cat .woocommerce-ordering select {
    padding: 0.5rem 1rem !important;
    border: 2px solid #F5F0EB !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    font-family: inherit !important;
    color: #2C1810 !important;
}

/* Produkt-Grid */
body.archive.tax-product_cat ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 2rem 0 !important;
}

/* Produktkarte */
body.archive.tax-product_cat ul.products li.product {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

body.archive.tax-product_cat ul.products li.product::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #8B1A1A, #D4A017) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
}

body.archive.tax-product_cat ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 40px rgba(139,26,26,0.12) !important;
    border-color: rgba(139,26,26,0.1) !important;
}

body.archive.tax-product_cat ul.products li.product:hover::before {
    opacity: 1 !important;
}

/* Produktbild */
body.archive.tax-product_cat ul.products li.product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #F5F0EB, #EDE5DA, #E8DDD0) !important;
    margin: 0 !important;
    display: block !important;
}

/* Placeholder-Bild ausblenden */
body.archive.tax-product_cat ul.products li.product img.woocommerce-placeholder {
    opacity: 0.15 !important;
    filter: grayscale(100%) !important;
    mix-blend-mode: multiply !important;
    position: relative !important;
    z-index: 0 !important;
}

/* Produkt-Link */
body.archive.tax-product_cat ul.products li.product a {
    text-decoration: none !important;
    color: inherit !important;
}

body.archive.tax-product_cat ul.products li.product .woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

/* Produkt-Titel */
body.archive.tax-product_cat ul.products li.product h2.woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    text-align: center !important;
    padding: 1rem 1rem 0 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
}

body.archive.tax-product_cat ul.products li.product:hover h2 {
    color: #8B1A1A !important;
}

/* Preis */
body.archive.tax-product_cat ul.products li.product .price {
    text-align: center !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #8B1A1A !important;
    padding: 0.5rem 1rem !important;
    margin-top: auto !important;
    position: relative !important;
    display: block !important;
    background: none !important;
}

body.archive.tax-product_cat ul.products li.product .price::before {
    content: '' !important;
    display: block !important;
    width: 40px !important;
    height: 2px !important;
    background: #D4A017 !important;
    margin: 0.5rem auto !important;
    opacity: 0.5 !important;
}

body.archive.tax-product_cat ul.products li.product .price del {
    font-size: 0.9rem !important;
    opacity: 0.6 !important;
}

body.archive.tax-product_cat ul.products li.product .price ins {
    text-decoration: none !important;
}

/* Auswählen / Add to Cart Button */
body.archive.tax-product_cat ul.products li.product .button {
    display: block !important;
    width: calc(100% - 2rem) !important;
    margin: 0 1rem 1rem !important;
    padding: 0.7rem 1rem !important;
    background: #D4A017 !important;
    color: #2C1810 !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

body.archive.tax-product_cat ul.products li.product .button:hover {
    background: #e6b422 !important;
    transform: translateY(-2px) !important;
}

body.archive.tax-product_cat ul.products li.product .added_to_cart {
    display: none !important;
}

/* Stern-Rating ausblenden (keine Bewertungen) */
body.archive.tax-product_cat ul.products li.product .star-rating {
    display: none !important;
}

/* Pagination */
body.archive.tax-product_cat .woocommerce-pagination {
    text-align: center !important;
    margin-top: 3rem !important;
}

body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers {
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 0 !important;
    border: none !important;
}

body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers li {
    border: none !important;
    float: none !important;
}

body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers li a,
body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers li span {
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    background: #FFFFFF !important;
    border-radius: 8px !important;
    color: #2C1810 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers li span.current {
    background: #8B1A1A !important;
    color: #FFFFFF !important;
}

/* Sidebar ausblenden */
body.archive.tax-product_cat #sidebar,
body.archive.tax-product_cat .sidebar,
body.archive.tax-product_cat .widget-area {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    body.archive.tax-product_cat ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    body.archive.tax-product_cat ul.products {
        grid-template-columns: 1fr !important;
    }
    body.archive.tax-product_cat .woocommerce-products-header__title {
        font-size: 2rem !important;
        padding: 4rem 1.5rem 2rem !important;
    }
}
/* =====================================================
   PIZZA GRÖSSEN-ANZEIGE auf Kategorie-Übersicht
   Zeigt verfügbare Größen (28cm | 32cm | 36cm) als
   Badges unter dem Preis auf der Pizza-Kategorieseite.
   ===================================================== */

/* Size badges container - shown after price on pizza page */
.page-id-402 .wc-block-grid__product-price::after,
.page-id-402 .lp-page-body ul.products li.product .price::after {
    display: block !important;
    content: "28cm  ·  32cm  ·  36cm" !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #6B5B50 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-top: 0.35rem !important;
    opacity: 0.75 !important;
}

/* Button text hint - add arrow indicator */
.page-id-402 .wc-block-grid__product-add-to-cart .wp-block-button__link::after {
    content: " →" !important;
    font-weight: 700 !important;
}

/* Also target /produktkategorie/pizza/ archive page */
body.tax-product_cat.slug-pizza .woocommerce-loop-product__title + .price::after,
body.tax-product_cat.slug-pizza .wc-block-grid__product-price::after {
    display: block !important;
    content: "28cm  ·  32cm  ·  36cm" !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #6B5B50 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-top: 0.35rem !important;
    opacity: 0.75 !important;
}

/* ====================================================
   RESPONSIVE — TABLET & MOBILE OPTIMIERUNG
   ==================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .wc-block-grid__products,
    body.archive.tax-product_cat ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }
    .lp-page-title,
    body.archive.tax-product_cat .woocommerce-products-header__title {
        font-size: 2.2rem !important;
        padding: 4rem 1.5rem 2.5rem !important;
    }
    body.archive.tax-product_cat ul.products li.product img {
        height: 180px !important;
    }
    body.archive.tax-product_cat ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 1rem !important;
    }
    .lp-page-body p {
        font-size: 0.95rem !important;
        padding: 0 1rem !important;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
    .wc-block-grid__products,
    body.archive.tax-product_cat ul.products {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    .lp-page-title,
    body.archive.tax-product_cat .woocommerce-products-header__title {
        font-size: 1.6rem !important;
        padding: 3rem 1rem 2rem !important;
        margin: calc(-4rem - 1px) -1rem 1.5rem !important;
    }
    body.archive.tax-product_cat #primary,
body.archive.tax-product_cat main {
        padding: 4rem 0.75rem 2rem !important;
    }
    body.archive.tax-product_cat ul.products li.product img {
        height: 160px !important;
    }
    body.archive.tax-product_cat ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 0.95rem !important;
        padding: 0.75rem 0.75rem 0 !important;
    }
    body.archive.tax-product_cat ul.products li.product .price {
        font-size: 1.1rem !important;
    }
    body.archive.tax-product_cat ul.products li.product .button {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.8rem !important;
        width: calc(100% - 1.5rem) !important;
        margin: 0 0.75rem 0.75rem !important;
    }
    .lp-page-body p {
        font-size: 0.9rem !important;
        padding: 0 0.75rem !important;
        margin: 1rem auto !important;
    }
}

/* Kleine Handys (<480px) */
@media (max-width: 479px) {
    .lp-page-title,
    body.archive.tax-product_cat .woocommerce-products-header__title {
        font-size: 1.3rem !important;
        padding: 2.5rem 0.75rem 1.5rem !important;
    }
    body.archive.tax-product_cat ul.products li.product img {
        height: 140px !important;
    }
    body.archive.tax-product_cat ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 0.85rem !important;
    }
    body.archive.tax-product_cat ul.products li.product .price {
        font-size: 1rem !important;
    }
    body.archive.tax-product_cat ul.products li.product .button {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.6rem !important;
    }
}


/* PPOM Header Text Fix - verhindert abgeschnittenen Text */
.woocommerce-product-details__short-description,
.product_meta,
.woocommerce-breadcrumb {
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
    max-height: none !important;
}
.single-product .entry-summary p {
    overflow: visible !important;
    white-space: normal !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: #6B5B50 !important;
}

/* PPOM Sichtbarkeit verbessern - Label & Beschreibung */
.ppom-wrapper .ppom-label {
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    margin-bottom: 0.3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.ppom-wrapper .ppom-input-desc {
    display: block !important;
    font-size: 0.85rem !important;
    color: #6B5B50 !important;
    margin-bottom: 0.75rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.4 !important;
}
.ppom-wrapper .ppom-input-desc span.ppom-input-desc {
    display: inline !important;
}
/* Header-Bereich: PPOM-Doppeltext ausblenden */
.single-product .entry-summary p.ppom-description,
.single-product .woocommerce-product-details__short-description p.ppom-field-desc {
    display: none !important;
}

/* PPOM Doppeltext im Header ausblenden */
.single-product .entry-summary > .ppom-description,
.single-product .entry-summary > p:first-child.ppom-field-description,
.ppom-option-description {
    display: none !important;
}
/* PPOM Label und Beschreibung im PPOM-Bereich anzeigen */
.ppom-wrapper .ppom-label {
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    margin-bottom: 0.5rem !important;
}
.ppom-wrapper .ppom-input-desc {
    display: block !important;
    font-size: 0.85rem !important;
    color: #6B5B50 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

/* ====================================================
   PPOM FIX — Label + Description auf ALLEN Viewports sichtbar
   ==================================================== */
.ppom-wrapper .form-control-label {
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    margin-bottom: 0.3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    line-height: 1.4 !important;
}
.ppom-wrapper .show_description.ppom-input-desc {
    display: inline !important;
    font-size: 0.85rem !important;
    color: #6B5B50 !important;
    margin-left: 0.5rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.4 !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}
.ppom-wrapper span.show_required {
    display: inline !important;
    color: red !important;
    font-weight: 700 !important;
}
.ppom-wrapper .ppom-field-wrapper,
.ppom-wrapper .form-group {
    overflow: visible !important;
    max-height: none !important;
}
@media (max-width: 768px) {
    .ppom-wrapper .form-control-label {
        font-size: 0.95rem !important;
    }
    .ppom-wrapper .show_description.ppom-input-desc {
        font-size: 0.8rem !important;
        display: inline !important;
    }
}

/* ====================================================
   SINGLE PRODUCT PAGE — Container & Abstände
   ==================================================== */
body.single-product #primary,
body.single-product main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem 4rem !important;

}


@media (max-width: 768px) {    body.single-product #primary,    body.single-product main {        padding: 4.5rem 1rem 2rem !important;    }}

body.single-product .woocommerce-breadcrumb {
    text-align: left !important;
    color: #6B5B50 !important;
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
}
body.single-product .woocommerce-breadcrumb a {
    color: #8B1A1A !important;
}

body.single-product div.product {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2.5rem !important;
}

body.single-product div.product .woocommerce-product-gallery {
    width: calc(48% - 1.25rem) !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product div.product .summary {
    width: calc(52% - 1.25rem) !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product div.product .summary .product_title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem !important;
    color: #2C1810 !important;
    margin-bottom: 0.5rem !important;
}

body.single-product div.product .summary .price {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #8B1A1A !important;
    margin-bottom: 1rem !important;
}

body.single-product .woocommerce-product-details__short-description {
    font-size: 0.95rem !important;
    color: #6B5B50 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    overflow: visible !important;
    white-space: normal !important;
    max-height: none !important;
}

/* PPOM Bereich Abstände */
body.single-product .ppom-wrapper {
    margin-bottom: 1.5rem !important;
}

body.single-product .ppom-wrapper .form-control-label {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    margin-bottom: 0.5rem !important;
}

/* PPOM Checkboxen 2-Spalten */
.ppom-wrapper .form-check-inline {
    display: inline-flex !important;
    align-items: center !important;
    width: calc(50% - 0.5rem) !important;
    margin-right: 0 !important;
    margin-bottom: 0.35rem !important;
    padding: 0.25rem 0 !important;
}

.ppom-wrapper .form-check-inline .ppom-input {
    margin-right: 0.4rem !important;
    margin-top: 0 !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
}

.ppom-wrapper .form-check-inline .form-check-label {
    font-size: 0.9rem !important;
    color: #2C1810 !important;
    line-height: 1.3 !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Price Table */
body.single-product .cart .ppom-price-cloner-wrapper {
    display: none !important;
}

body.single-product table.shop_table {
    background: #F5F0EB !important;
    border-radius: 12px !important;
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
    border: none !important;
}

body.single-product table.shop_table td,
body.single-product table.shop_table th {
    padding: 0.75rem 1rem !important;
    border: none !important;
    background: transparent !important;
}

/* Menge & Warenkorb Button */
body.single-product div.product form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
}

body.single-product div.product form.cart .quantity {
    margin: 0 !important;
}

body.single-product div.product form.cart .quantity input {
    width: 60px !important;
    padding: 0.75rem 0.5rem !important;
    border: 2px solid #F5F0EB !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    text-align: center !important;
}

body.single-product .single_add_to_cart_button {
    background: #D4A017 !important;
    color: #2C1810 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

body.single-product .single_add_to_cart_button:hover {
    background: #e6b422 !important;
    transform: translateY(-2px) !important;
}

/* Kategorie-Link */
body.single-product .product_meta {
    font-size: 0.85rem !important;
    color: #6B5B50 !important;
    margin-top: 0.5rem !important;
}

body.single-product .product_meta a {
    color: #8B1A1A !important;
    font-weight: 600 !important;
}

/* Related Products */
body.single-product .related {
    width: 100% !important;
    clear: both !important;
    margin-top: 3rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid #F5F0EB !important;
}

body.single-product .related h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    color: #8B1A1A !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

body.single-product .related ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.single-product .related ul.products li.product {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    transition: all 0.3s !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product .related ul.products li.product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(139,26,26,0.12) !important;
}

body.single-product .related ul.products li.product img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    background: linear-gradient(135deg, #F5F0EB, #EDE5DA) !important;
    margin: 0 !important;
}

body.single-product .related ul.products li.product h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #2C1810 !important;
    text-align: center !important;
    padding: 0.75rem 0.75rem 0 !important;
    margin: 0 !important;
}

body.single-product .related ul.products li.product .price {
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #8B1A1A !important;
    padding: 0.5rem 0.75rem !important;
    display: block !important;
}

body.single-product .related ul.products li.product .button {
    display: block !important;
    width: calc(100% - 1.5rem) !important;
    margin: 0 0.75rem 0.75rem !important;
    padding: 0.6rem 1rem !important;
    background: #D4A017 !important;
    color: #2C1810 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-align: center !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    border: none !important;
}

@media (max-width: 768px) {    body.single-product div.product { flex-direction: column !important; }    body.single-product div.product .woocommerce-product-gallery { width: 100% !important; margin-bottom: 1rem !important; }    body.single-product div.product .summary { width: 100% !important; }    body.single-product .related ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }    body.single-product .related ul.products li.product img { height: 120px !important; }    body.single-product .related ul.products li.product h2 { font-size: 0.8rem !important; padding: 0.4rem 0.4rem 0 !important; }    body.single-product .related ul.products li.product .price { font-size: 0.9rem !important; padding: 0.25rem 0.4rem !important; }    body.single-product .related ul.products li.product .button { font-size: 0.65rem !important; padding: 0.35rem 0.5rem !important; width: calc(100% - 0.75rem) !important; margin: 0 0.375rem 0.375rem !important; }}
/* ====================================================
   SIDEBAR — Clean als Bottom-Bereich (strukturbedingt)
   ==================================================== */
body.single-product #sidebar {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 1.5rem 2rem !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    margin-top: 2rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    align-items: flex-start !important;
}

body.single-product #sidebar .search-form {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
}

body.single-product #sidebar .search-form input {
    width: calc(100% - 80px) !important;
    padding: 0.6rem 1rem !important;
    border: 2px solid #F5F0EB !important;
    border-radius: 8px 0 0 8px !important;
    font-size: 0.85rem !important;
}

body.single-product #sidebar .search-form button {
    padding: 0.6rem 1rem !important;
    background: #8B1A1A !important;
    color: #FFF !important;
    border: none !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
}

body.single-product #sidebar > h2:first-of-type {
    display: none !important;
}

body.single-product #sidebar h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    color: #8B1A1A !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
}

body.single-product #sidebar h2:has(+ ul:empty),
body.single-product #sidebar h2:has(+ select),
body.single-product #sidebar h2:has(+ :not(ul)) {
    display: none !important;
}

body.single-product #sidebar ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    columns: 3 !important;
    column-gap: 1.5rem !important;
    width: 100% !important;
}

body.single-product #sidebar ul li {
    margin-bottom: 0.25rem !important;
    break-inside: avoid !important;
}

body.single-product #sidebar ul li a {
    color: #2C1810 !important;
    font-size: 0.82rem !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

body.single-product #sidebar ul li a:hover {
    color: #8B1A1A !important;
}

/* Archiv & Kategorien Header ausblenden (leer) */
body.single-product #sidebar h2:nth-of-type(2),
body.single-product #sidebar h2:nth-of-type(3) {
    display: none !important;
}

@media (max-width: 768px) {
    body.single-product #sidebar ul {
        columns: 2 !important;
    }
}

@media (max-width: 480px) {
    body.single-product #sidebar ul {
        columns: 1 !important;
    }
}

/* Archiv & Kategorien ausblenden (leere Widgets) */
body.single-product #sidebar > li:nth-last-child(-n+2) {
    display: none !important;
}

/* Seiten-Liste als 3-Spalten */
body.single-product #sidebar li.pagenav ul {
    columns: 3 !important;
    column-gap: 1.5rem !important;
}

body.single-product #sidebar li.pagenav ul li {
    margin-bottom: 0.2rem !important;
    break-inside: avoid !important;
}

body.single-product #sidebar li.pagenav ul li a {
    color: #2C1810 !important;
    font-size: 0.82rem !important;
    text-decoration: none !important;
}

body.single-product #sidebar li.pagenav ul li a:hover {
    color: #8B1A1A !important;
}

/* Suchleiste im Sidebar */
body.single-product #sidebar .search-form {
    display: flex !important;
    gap: 0 !important;
}

body.single-product #sidebar .search-form label {
    flex: 1 !important;
}

body.single-product #sidebar .search-field {
    width: 100% !important;
    padding: 0.5rem 0.75rem !important;
    border: 2px solid #F5F0EB !important;
    border-radius: 8px 0 0 8px !important;
    font-size: 0.85rem !important;
}

body.single-product #sidebar .search-submit {
    padding: 0.5rem 0.75rem !important;
    background: #8B1A1A !important;
    color: #FFF !important;
    border: 2px solid #8B1A1A !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
}

@media (max-width: 768px) {
    body.single-product #sidebar li.pagenav ul {
        columns: 2 !important;
    }
}

@media (max-width: 480px) {
    body.single-product #sidebar li.pagenav ul {
        columns: 1 !important;
    }
}

/* ============================================
   FOOTER - Structured Menü
   ============================================ */

/* Default WordPress Widgets ausblenden (Seiten, Archiv, Kategorien) */
.widget,
.widget-area,
#secondary,
aside.widget,
li.widget,
.sidebar,
.wp-block-archives,
.wp-block-categories,
.wp-block-page-list,
.widget_pages,
.widget_archive,
.widget_categories,
ul.wp-block-page-list {
    display: none !important;
}

/* Footer Grid */
.lp-footer {
    background: #2C1810 !important;
    color: #FFF8F0 !important;
    padding: 0 !important;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.lp-footer-col {
    text-align: left;
}

.lp-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #D4A017;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 160, 23, 0.3);
}

.lp-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-footer-links li {
    margin-bottom: 0.5rem;
}

.lp-footer-links a {
    color: #FFF8F0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    opacity: 0.85;
}

.lp-footer-links a:hover {
    color: #D4A017;
    opacity: 1;
}

.lp-footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

.lp-footer-bottom a {
    color: #D4A017;
}

@media (max-width: 768px) {
    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .lp-footer-col {
        text-align: center;
    }
    .lp-footer-title {
        text-align: center;
    }
}

/* Sidebar komplett ausblenden (Seiten, Archiv, Kategorien) */
#sidebar,
li.pagenav,
li.categories,
li:has(> h2) {
    display: none !important;
}

/* ============================================
   PRODUKTSEITE - Mobile Fixes
   ============================================ */
@media (max-width: 768px) {
    /* Produktseite Container */
    .single-product main,
    .single-product .lp-page-content {
        padding: 1rem !important;
    }

    /* PPOM Felder */
    .ppom-field-wrapper,
    .nm-box,
    .nm-field,
    [class*="ppom"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Checkboxen */
    .ppom-input input[type="checkbox"],
    .ppom-input input[type="radio"],
    input[type="checkbox"][name*="ppom"],
    input[type="checkbox"][id*="ppom"] {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
    }

    /* Labels und Texte */
    .ppom-label,
    .ppom-label label,
    [class*="ppom"] label,
    .nm-box label {
        font-size: 0.9rem !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    /* Dropdown/Select */
    .ppom-input select,
    select.ppom-field,
    select.nm-field {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.6rem !important;
        font-size: 0.95rem !important;
    }

    /* Quantity Input */
    .quantity input[type="number"] {
        width: 60px !important;
        padding: 0.5rem !important;
    }

    /* Price Table */
    .ppom-pricing-table,
    .ppom-pricing-table table,
    table.ppom-table {
        width: 100% !important;
        font-size: 0.9rem !important;
    }

    .ppom-pricing-table td,
    .ppom-pricing-table th,
    table.ppom-table td,
    table.ppom-table th {
        padding: 0.4rem !important;
    }

    /* Add to Cart Button */
    .single_add_to_cart_button {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }

    /* Form Container */
    .cart,
    form.cart,
    .woocommerce-variation-add-to-cart {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    /* PPOM Options Container */
    .ppom-wrapper,
    .ppom-extra-options {
        margin-bottom: 1rem !important;
    }

    /* PPOM Checkbox + Dropdown inline fix */
    .ppom-checkbox,
    .ppom-radio,
    .nm-checkbox {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .ppom-checkbox label,
    .ppom-radio label {
        flex: 1 !important;
        line-height: 1.4 !important;
    }

    /* Section Abstände */
    .ppom-section,
    .ppom-field-wrapper {
        margin-bottom: 1rem !important;
    }
}

/* Mobile: Preistabelle auf Produktseite fixen */
@media (max-width: 768px) {
    .woocommerce-product-details__short-description,
    .woocommerce-variation-description,
    .product .summary {
        width: 100% !important;
        float: none !important;
    }

    /* PPOM Tabelle - Dropdown voll breit */
    select.ppom-field,
    select[id*="ppom"],
    select[id*="nm"],
    select.nm_field {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* PPOM Options Container */
    .ppom-option,
    .ppom-option-label,
    .ppom-option-value {
        display: block !important;
        width: 100% !important;
    }

    /* Preistabelle */
    .ppom-pricing-table table,
    table.ppom-table,
    .product .cart table {
        width: 100% !important;
        display: table !important;
    }

    .ppom-pricing-table td,
    .ppom-pricing-table th,
    table.ppom-table td,
    table.ppom-table th {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.85rem !important;
        white-space: normal !important;
    }

    /* Section Überschriften */
    .ppom-section-title,
    .ppom-label-text {
        font-size: 1rem !important;
        margin: 0.75rem 0 0.25rem !important;
    }

    /* PPOM Feld-Wrapper */
    .ppom-field-wrapper {
        padding: 0.5rem 0 !important;
    }

    /* Verhindern dass tabellarische Daten überlaufen */
    .product .summary .cart {
        overflow-x: visible !important;
    }

    /* Gesamte Produktseite auf mobil */
    .single-product .entry-summary,
    .single-product .summary {
        padding: 0 !important;
    }

    /* PPOM Checkbox - inline */
    .ppom-checkbox-inline,
    .ppom-radio-inline {
        display: block !important;
        width: 100% !important;
    }

    .ppom-checkbox-inline label,
    .ppom-radio-inline label {
        margin-left: 0.5rem !important;
    }
}
/* ============================================
   DESIGN IMPROVEMENTS - Animationen und Effekte
   ============================================ */

/* === NAVIGATION === */
.lp-nav-brand {
    animation: goldGlow 3s ease-in-out infinite;
}

@keyframes goldGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212,160,23,.3); }
    50% { text-shadow: 0 0 20px rgba(212,160,23,.6); }
}

.lp-nav-links a {
    position: relative;
    padding-bottom: 3px;
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #D4A017;
    transform: scaleX(0);
    transition: transform .3s ease;
}

.lp-nav-links a:hover::after {
    transform: scaleX(1);
}

/* === HERO === */
.lp-hero {
    position: relative;
    overflow: hidden;
}

.lp-hero::after {
    content: '🍕';
    position: absolute;
    font-size: 30vw;
    opacity: .04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
    50% { transform: translate(-50%, -50%) rotate(5deg); }
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212,160,23,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
}

.lp-hero h1 {
    animation: fadeInUp 1s ease;
}

.lp-hero p {
    animation: fadeInUp 1s ease .2s both;
}

.lp-hero-btns {
    animation: fadeInUp 1s ease .4s both;
}

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

/* === BUTTONS === */
.lp-btn-primary {
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(212,160,23,.4); }
    50% { box-shadow: 0 4px 30px rgba(212,160,23,.6); }
}

.lp-btn-primary:hover {
    animation: none;
}

/* === SECTION TITLES === */
.lp-section-title {
    position: relative;
    display: inline-block;
    width: 100%;
}

.lp-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B1A1A, #D4A017);
    margin: .5rem auto 0;
    border-radius: 2px;
}

/* === CATEGORY CARDS === */
.lp-cat-card {
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
}

.lp-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1A1A, #D4A017);
    animation: barSlide 1s ease .6s both;
}

@keyframes barSlide {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

.lp-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.lp-cat-card-icon {
    background: linear-gradient(135deg, #F5F0EB, #FFF);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: transform .4s ease;
}

.lp-cat-card:hover .lp-cat-card-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* === PRODUCT CARDS === */
.lp-menu-card {
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    animation: cardAppear 1s ease both;
}

.lp-menu-card:nth-child(2) { animation-delay: .1s; }
.lp-menu-card:nth-child(3) { animation-delay: .2s; }
.lp-menu-card:nth-child(4) { animation-delay: .3s; }
.lp-menu-card:nth-child(5) { animation-delay: .4s; }
.lp-menu-card:nth-child(6) { animation-delay: .5s; }

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.lp-menu-card-img {
    overflow: hidden;
}

.lp-menu-card-img img {
    transition: transform .6s ease;
}

.lp-menu-card:hover .lp-menu-card-img img {
    transform: scale(1.08);
}

.lp-menu-card-category {
    background: #F5F0EB;
    color: #8B1A1A;
    letter-spacing: .05em;
}

.lp-menu-card-price {
    font-size: 1.4rem;
    font-weight: 800;
}

/* === FLOATING CART === */
.lp-floating-cart {
    animation: cartBounce 2s ease-in-out infinite;
}

@keyframes cartBounce {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(139,26,26,.4); }
    50% { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(139,26,26,.6); }
}

.lp-floating-cart:hover {
    animation: none;
}

.cart-badge {
    animation: badgeWiggle 2s ease-in-out infinite;
}

@keyframes badgeWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* === FOOTER === */
.lp-footer-col h4 {
    position: relative;
}

.lp-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4A017;
}

.lp-footer-links a {
    transition: all .3s;
    display: inline-block;
}

.lp-footer-links a:hover {
    opacity: 1;
    color: #D4A017;
    padding-left: 5px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .lp-hero::after {
        font-size: 50vw;
    }

    .lp-cat-card {
        animation: none;
    }

    .lp-cat-card::before {
        animation: none;
    }

    .lp-menu-card {
        animation: none;
    }

    .lp-section-title::after {
        margin: .5rem auto 0;
    }
}/* ============================================
   DESIGN IMPROVEMENTS - Animationen und Effekte
   ============================================ */

/* === NAVIGATION === */
.lp-nav-brand {
    animation: goldGlow 3s ease-in-out infinite;
}

@keyframes goldGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212,160,23,.3); }
    50% { text-shadow: 0 0 20px rgba(212,160,23,.6); }
}

.lp-nav-links a {
    position: relative;
    padding-bottom: 3px;
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #D4A017;
    transform: scaleX(0);
    transition: transform .3s ease;
}

.lp-nav-links a:hover::after {
    transform: scaleX(1);
}

/* === HERO === */
.lp-hero {
    position: relative;
    overflow: hidden;
}

.lp-hero::after {
    content: '🍕';
    position: absolute;
    font-size: 30vw;
    opacity: .04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
    50% { transform: translate(-50%, -50%) rotate(5deg); }
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212,160,23,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
}

.lp-hero h1 {
    animation: fadeInUp 1s ease;
}

.lp-hero p {
    animation: fadeInUp 1s ease .2s both;
}

.lp-hero-btns {
    animation: fadeInUp 1s ease .4s both;
}

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

/* === BUTTONS === */
.lp-btn-primary {
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(212,160,23,.4); }
    50% { box-shadow: 0 4px 30px rgba(212,160,23,.6); }
}

.lp-btn-primary:hover {
    animation: none;
}

/* === SECTION TITLES === */
.lp-section-title {
    position: relative;
    display: inline-block;
    width: 100%;
}

.lp-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B1A1A, #D4A017);
    margin: .5rem auto 0;
    border-radius: 2px;
}

/* === CATEGORY CARDS === */
.lp-cat-card {
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
}

.lp-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1A1A, #D4A017);
    animation: barSlide 1s ease .6s both;
}

@keyframes barSlide {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

.lp-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.lp-cat-card-icon {
    background: linear-gradient(135deg, #F5F0EB, #FFF);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: transform .4s ease;
}

.lp-cat-card:hover .lp-cat-card-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* === PRODUCT CARDS === */
.lp-menu-card {
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    animation: cardAppear 1s ease both;
}

.lp-menu-card:nth-child(2) { animation-delay: .1s; }
.lp-menu-card:nth-child(3) { animation-delay: .2s; }
.lp-menu-card:nth-child(4) { animation-delay: .3s; }
.lp-menu-card:nth-child(5) { animation-delay: .4s; }
.lp-menu-card:nth-child(6) { animation-delay: .5s; }

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.lp-menu-card-img {
    overflow: hidden;
}

.lp-menu-card-img img {
    transition: transform .6s ease;
}

.lp-menu-card:hover .lp-menu-card-img img {
    transform: scale(1.08);
}

.lp-menu-card-category {
    background: #F5F0EB;
    color: #8B1A1A;
    letter-spacing: .05em;
}

.lp-menu-card-price {
    font-size: 1.4rem;
    font-weight: 800;
}

/* === FLOATING CART === */
.lp-floating-cart {
    animation: cartBounce 2s ease-in-out infinite;
}

@keyframes cartBounce {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(139,26,26,.4); }
    50% { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(139,26,26,.6); }
}

.lp-floating-cart:hover {
    animation: none;
}

.cart-badge {
    animation: badgeWiggle 2s ease-in-out infinite;
}

@keyframes badgeWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* === FOOTER === */
.lp-footer-col h4 {
    position: relative;
}

.lp-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4A017;
}

.lp-footer-links a {
    transition: all .3s;
    display: inline-block;
}

.lp-footer-links a:hover {
    opacity: 1;
    color: #D4A017;
    padding-left: 5px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .lp-hero::after {
        font-size: 50vw;
    }

    .lp-cat-card {
        animation: none;
    }

    .lp-cat-card::before {
        animation: none;
    }

    .lp-menu-card {
        animation: none;
    }

    .lp-section-title::after {
        margin: .5rem auto 0;
    }
}
/* Produktkarten als Link */
.lp-menu-card a,
a.lp-menu-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

