/* ============================================
   PROMO-STATION GMBH - Custom CSS für Helix Ultimate
   ============================================
   
   INSTALLATION:
   1. Joomla Backend → Extensions → Templates → Helix Ultimate
   2. Options → Custom Code → Custom CSS
   3. Diesen gesamten Code einfügen und speichern
   
   ALTERNATIV als Datei:
   /templates/flavor flavor flavor/css/custom.css
   ============================================ */

/* ============================================
   1. CSS VARIABLEN (Farbschema)
   ============================================ */
:root {
    /* Primärfarben */
    --ps-orange: #FF6B35;
    --ps-orange-hover: #e65a2b;
    --ps-green: #00B2A9;
    --ps-green-hover: #00968e;
    
    /* Hintergrundfarben */
    --ps-dark-bg: #0a1e1e;
    --ps-darker-bg: #051212;
    
    /* Textfarben */
    --ps-light-text: #ffffff;
    --ps-gray-text: #a0a0a0;
    
    /* Transparenzen */
    --ps-border-green: rgba(0, 178, 169, 0.2);
    --ps-border-orange: rgba(255, 107, 53, 0.2);
    --ps-glow-green: rgba(0, 178, 169, 0.3);
    --ps-glow-orange: rgba(255, 107, 53, 0.3);
    
    /* Abstände */
    --ps-section-padding: 100px;
    --ps-container-max: 1400px;
    
    /* Schriften */
    --ps-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Border Radius */
    --ps-radius-sm: 6px;
    --ps-radius-md: 12px;
    --ps-radius-lg: 16px;
}
.bg-transparent { 
    background: transparent !important; 
}

/* ============================================
   2. GLOBALE RESETS & BASICS
   ============================================ */
body {
    font-family: var(--ps-font-family) !important;
    line-height: 1.6;
    color: var(--ps-light-text);
    background: var(--ps-darker-bg) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container,
.sp-page-builder .page-content,
#sp-main-body .container {
    max-width: var(--ps-container-max);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Links */
a {
    color: var(--ps-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ps-green);
    text-decoration: none;
}

/* Überschriften */
h1, h2, h3, h4, h5, h6,
.sppb-addon-title,
.sppb-section-title {
    color: var(--ps-light-text);
    font-weight: 700;
    line-height: 1.2;
}

h1, .sppb-addon-title.h1 { font-size: 56px; }
h2, .sppb-addon-title.h2 { font-size: 42px; }
h3, .sppb-addon-title.h3 { font-size: 28px; }
h4, .sppb-addon-title.h4 { font-size: 22px; }
h5, .sppb-addon-title.h5 { font-size: 20px; }

/* Paragraphen */
p, .sppb-addon-text {
    color: var(--ps-gray-text);
    font-size: 16px;
    line-height: 1.7;
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */
#sp-header {
    background: rgba(10, 30, 30, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ps-border-green);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
#sp-top-bar {
    background: var(--ps-dark-bg) !important;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--ps-border-orange);
}

#sp-top-bar a {
    color: var(--ps-orange);
}

#sp-top-bar a:hover {
    color: var(--ps-green);
}

/* Logo */

.logo-image {
    max-height: none !important;
    height: 78px !important;
}

.logo a,
#sp-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text .logo-promo,
.sp-logo-text-promo {
    font-size: 26px;
    font-weight: 700;
    color: var(--ps-orange);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text .logo-station,
.sp-logo-text-station {
    font-size: 26px;
    font-weight: 700;
    color: var(--ps-green);
    line-height: 1;
    letter-spacing: -0.5px;
}

/* Navigation */
#sp-menu,
.sp-megamenu-parent {
    background: transparent !important;
}

#sp-menu > ul > li > a,
.sp-megamenu-parent > li > a {
    color: var(--ps-light-text) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 0px 18px;
    position: relative;
    transition: color 0.3s;
}

#sp-menu > ul > li > a::after,
.sp-megamenu-parent > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--ps-orange), var(--ps-green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

#sp-menu > ul > li > a:hover,
.sp-megamenu-parent > li > a:hover,
#sp-menu > ul > li.active > a,
.sp-megamenu-parent > li.active > a {
    color: var(--ps-orange) !important;
    background: transparent !important;
}

#sp-menu > ul > li > a:hover::after,
.sp-megamenu-parent > li > a:hover::after,
#sp-menu > ul > li.active > a::after,
.sp-megamenu-parent > li.active > a::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.sp-dropdown,
#sp-menu .sp-dropdown {
    background: var(--ps-dark-bg) !important;
    border: 1px solid var(--ps-border-green);
    border-radius: var(--ps-radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sp-dropdown li a {
    color: var(--ps-light-text) !important;
    padding: 12px 20px;
}

.sp-dropdown li a:hover {
    background: rgba(0, 178, 169, 0.1) !important;
    color: var(--ps-green) !important;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn,
.sppb-btn,
a.btn,
a.sppb-btn,
button.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--ps-radius-sm);
    transition: all 0.3s ease;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
}

/* Primary Button (Grün) */
.btn-primary,
.sppb-btn-primary {
    background: var(--ps-green) !important;
    color: white !important;
    border-color: var(--ps-green) !important;
}

.btn-primary:hover,
.sppb-btn-primary:hover {
    background: var(--ps-green-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--ps-glow-green);
}

/* Secondary Button (Orange) */
.btn-secondary,
.sppb-btn-secondary,
.sppb-btn-warning {
    background: var(--ps-orange) !important;
    color: white !important;
    border-color: var(--ps-orange) !important;
}

.btn-secondary:hover,
.sppb-btn-secondary:hover,
.sppb-btn-warning:hover {
    background: var(--ps-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--ps-glow-orange);
}

/* Outline Button */
.btn-outline,
.sppb-btn-default,
.sppb-btn-outline {
    background: transparent !important;
    border: 2px solid var(--ps-green) !important;
    color: var(--ps-green) !important;
}

.btn-outline:hover,
.sppb-btn-default:hover,
.sppb-btn-outline:hover {
    background: var(--ps-green) !important;
    color: white !important;
}

/* White Button */
.btn-white,
.sppb-btn-light {
    background: white !important;
    color: var(--ps-orange) !important;
    border-color: white !important;
}

.btn-white:hover,
.sppb-btn-light:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
}

/* ============================================
   5. SEKTIONEN & HINTERGRÜNDE
   ============================================ */
/* SP Page Builder Sektionen */
.sppb-section {
    padding: var(--ps-section-padding) 40px;
}

/* Dunkler Hintergrund (Standard) */
.sppb-section,
.ps-section-dark {
    background: var(--ps-darker-bg);
}

/* Etwas hellerer dunkler Hintergrund */
.ps-section-dark-alt,
.sppb-section.bg-dark-alt {
    background: var(--ps-dark-bg);
}

/* Heller Hintergrund */
.ps-section-light .shop-text-logo {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 178, 169, 0.08) 100%);
    border: 1px solid rgba(0, 178, 169, 0.25);
}

.ps-section-light .shop-text-logo .logo-tagline {
    color: #666;
}

.ps-section-light.white,
.section-light.white {
    background: #ffffff;
}

.ps-section-light.white h1,
.ps-section-light.white h2,
.ps-section-light.white h3,
.ps-section-light.white h4,
.section-light.white h1,
.section-light.white h2,
.section-light.white h3,
.section-light.white h4 {
    color: #1a1a1a;
}

.ps-section-light p,
.section-light p {
    color: #555;
}

.ps-section-light .section-subtitle,
.section-light .section-subtitle {
    color: var(--ps-orange);
}

/* Section Header */
.ps-section-header,
.sppb-section-title {
    text-align: center;
    margin-bottom: 70px;
}

.ps-section-subtitle,
.sppb-addon-text-subtitle,
.section-subtitle {
    color: var(--ps-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ps-section-title,
.sppb-section-title .sppb-title-heading,
.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--ps-light-text);
}

.ps-section-description,
.section-description {
    font-size: 18px;
    color: var(--ps-gray-text);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.ps-hero,
.sppb-section.hero-section {
    background: linear-gradient(135deg, rgba(10, 30, 30, 0.95) 0%, rgba(5, 18, 18, 0.95) 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.ps-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ps-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 178, 169, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ps-hero-subtitle {
    color: var(--ps-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ps-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 800px;
}

.ps-hero p {
    font-size: 19px;
    max-width: 700px;
    margin-bottom: 40px;
    color: var(--ps-gray-text);
    line-height: 1.7;
}

/* Farbige Texte */
.highlight-orange,
.text-orange {
    color: var(--ps-orange) !important;
}

.highlight-green,
.text-green {
    color: var(--ps-green) !important;
}

/* ============================================
   7. SHOP CARDS
   ============================================ */

/* Shop Logo als Text (in Cards) */
.shop-text-logo {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 178, 169, 0.05) 100%);
    border: 1px solid rgba(0, 178, 169, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
    text-align: center;
}

.shop-text-logo .logo-text {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.shop-text-logo .logo-tagline {
    font-size: 13px;
    color: var(--gray-text);
}

/* Für hellen Hintergrund */
.ps-section-light .shop-text-logo {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 178, 169, 0.08) 100%);
    border: 1px solid rgba(0, 178, 169, 0.25);
}

.ps-section-light .shop-text-logo .logo-tagline {
    color: #666;
}

.ps-shop-card,
.sppb-addon-feature-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 178, 169, 0.05) 100%);
    border-radius: var(--ps-radius-lg);
    padding: 50px;
    border: 1px solid var(--ps-border-green);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ps-shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ps-orange), var(--ps-green));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.ps-shop-card:hover {
    transform: translateY(-8px);
    border-color: var(--ps-green);
    box-shadow: 0 20px 60px rgba(0, 178, 169, 0.2);
}

.ps-shop-card:hover::before {
    transform: scaleX(1);
}

.ps-shop-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--ps-light-text);
}

.ps-shop-card .shop-subtitle {
    color: var(--ps-orange);
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ps-shop-card p {
    color: var(--ps-gray-text);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

/* ============================================
   8. FEATURE ITEMS (Vorteile)
   ============================================ */
.ps-feature-item {
    background: var(--ps-dark-bg);
    padding: 40px;
    border-radius: var(--ps-radius-md);
    border: 1px solid rgba(0, 178, 169, 0.1);
    transition: all 0.3s ease;
}

.ps-feature-item:hover {
    border-color: var(--ps-orange);
    transform: translateY(-5px);
}

.ps-feature-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

/* Feature Icons mit Gradient */
.ps-feature-icon i,
.benefit-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--ps-orange) 0%, var(--ps-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ps-feature-item:hover .ps-feature-icon i,
.benefit-item:hover .benefit-icon i {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.ps-feature-item h3,
.ps-feature-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--ps-green);
}

.ps-feature-item p {
    color: var(--ps-gray-text);
    line-height: 1.7;
}

/* ============================================
   9. PRODUCT ITEMS (Sortiment)
   ============================================ */
.ps-product-item {
    background: var(--ps-darker-bg);
    border-radius: var(--ps-radius-md);
    padding: 35px;
    border: 1px solid rgba(0, 178, 169, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ps-product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--ps-orange), var(--ps-green));
    transition: height 0.3s;
}

.ps-product-item:hover {
    border-color: var(--ps-green);
    transform: translateY(-5px);
}

.ps-product-item:hover::before {
    height: 100%;
}

.ps-product-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--ps-light-text);
}

.ps-product-item p {
    color: var(--ps-gray-text);
    font-size: 15px;
}

/* ============================================
   10. PACKAGE ITEMS (Branchenpakete)
   ============================================ */
.ps-package-item {
    background: var(--ps-dark-bg);
    padding: 35px;
    border-radius: var(--ps-radius-md);
    border-left: 4px solid var(--ps-orange);
    transition: all 0.3s ease;
}

.ps-package-item:hover {
    transform: translateX(8px);
    border-left-color: var(--ps-green);
    box-shadow: 0 10px 40px rgba(0, 178, 169, 0.2);
}

.ps-package-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--ps-orange);
}

.ps-package-item p {
    color: var(--ps-gray-text);
}

/* ============================================
   11. B2B SECTION (Orange Hintergrund)
   ============================================ */
.ps-b2b-section,
.sppb-section.bg-orange {
    background: linear-gradient(135deg, var(--ps-orange) 0%, #e65a2b 100%) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ps-b2b-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ps-b2b-section h2,
.ps-b2b-section .sppb-addon-title {
    color: white !important;
}

.ps-b2b-section p,
.ps-b2b-section .sppb-addon-text {
    color: rgba(255, 255, 255, 0.95) !important;
}

.ps-b2b-section .ps-section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================
   12. ABOUT SECTION (Statistiken)
   ============================================ */
.ps-stat-item {
    text-align: center;
    padding: 25px;
    background: var(--ps-darker-bg);
    border-radius: var(--ps-radius-md);
    border: 1px solid var(--ps-border-green);
}

.ps-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--ps-orange);
    margin-bottom: 8px;
    line-height: 1;
}

.ps-stat-label {
    color: var(--ps-gray-text);
    font-size: 14px;
}

/* ============================================
   13. CONTACT SECTION
   ============================================ */
.ps-contact-box {
    background: var(--ps-dark-bg);
    padding: 50px;
    border-radius: var(--ps-radius-lg);
    border: 1px solid var(--ps-border-green);
    text-align: center;
}

.ps-contact-box h3 {
    color: var(--ps-orange);
    font-size: 28px;
    margin-bottom: 30px;
}

.ps-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--ps-light-text);
}

.ps-contact-item span {
    color: var(--ps-green);
}

/* Kontaktformular */
.ps-contact-form input,
.ps-contact-form textarea,
#sp-contact input,
#sp-contact textarea {
    background: var(--ps-darker-bg) !important;
    border: 1px solid var(--ps-border-green) !important;
    color: var(--ps-light-text) !important;
    padding: 15px 20px;
    border-radius: var(--ps-radius-sm);
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
}

.ps-contact-form input:focus,
.ps-contact-form textarea:focus {
    border-color: var(--ps-green) !important;
    outline: none;
    box-shadow: 0 0 0 3px var(--ps-glow-green);
}

.ps-contact-form input::placeholder,
.ps-contact-form textarea::placeholder {
    color: var(--ps-gray-text);
}

/* ============================================
   14. FOOTER
   ============================================ */
#sp-footer,
footer {
    background: var(--ps-darker-bg) !important;
    color: var(--ps-gray-text);
    padding: 80px 40px 30px;
    border-top: 1px solid var(--ps-border-green);
}

#sp-footer h3,
.footer-section h3 {
    margin-bottom: 25px;
    color: var(--ps-orange) !important;
    font-size: 20px;
}

#sp-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sp-footer a {
    color: var(--ps-gray-text);
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

#sp-footer a:hover {
    color: var(--ps-green);
}

.footer-bottom,
#sp-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 178, 169, 0.1);
    font-size: 14px;
    margin-top: 50px;
}

/* ============================================
   15. SP PAGE BUILDER SPEZIFISCHE STYLES
   ============================================ */
/* Rows & Columns */
.sppb-row {
    margin-left: -15px;
    margin-right: -15px;
}

.sppb-col-md-6,
.sppb-col-md-4,
.sppb-col-md-3 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Addon Spacing */
.sppb-addon {
    margin-bottom: 30px;
}

/* Image */
.sppb-addon-single-image img {
    border-radius: var(--ps-radius-md);
}

/* Icon */
.sppb-addon-icon .sppb-icon {
    color: var(--ps-orange);
}

/* Carousel / Slider */
.sppb-carousel-inner {
    background: var(--ps-dark-bg);
    border-radius: var(--ps-radius-md);
}

/* Accordion */
.sppb-addon-accordion .sppb-accordion-container {
    background: var(--ps-dark-bg);
    border: 1px solid var(--ps-border-green);
    border-radius: var(--ps-radius-sm);
    margin-bottom: 10px;
}

.sppb-addon-accordion .sppb-accordion-container .sppb-accordion-title {
    background: transparent;
    color: var(--ps-light-text);
    padding: 20px;
}

.sppb-addon-accordion .sppb-accordion-container.active .sppb-accordion-title {
    color: var(--ps-orange);
}

/* Tabs */
.sppb-addon-tab .sppb-nav-tabs {
    border-bottom: 1px solid var(--ps-border-green);
}

.sppb-addon-tab .sppb-nav-tabs li a {
    color: var(--ps-gray-text);
    background: transparent;
}

.sppb-addon-tab .sppb-nav-tabs li.active a,
.sppb-addon-tab .sppb-nav-tabs li a:hover {
    color: var(--ps-orange);
    border-bottom-color: var(--ps-orange);
}

.sppb-addon-tab .sppb-tab-content {
    background: var(--ps-dark-bg);
    padding: 30px;
}

/* ============================================
   16. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --ps-section-padding: 80px;
    }
    
    h1, .ps-hero h1 {
        font-size: 42px;
    }
    
    h2, .ps-section-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    :root {
        --ps-section-padding: 60px;
    }
    
    .container,
    .sppb-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    h1, .ps-hero h1 {
        font-size: 38px;
    }
    
    h2, .ps-section-title {
        font-size: 32px;
    }
    
    .ps-hero {
        padding: 80px 20px;
    }
    
    /* Mobile Menu */
    #sp-menu {
        background: var(--ps-dark-bg) !important;
    }
    
    .offcanvas-menu {
        background: var(--ps-dark-bg) !important;
    }
    
    .offcanvas-menu a {
        color: var(--ps-light-text) !important;
        border-bottom: 1px solid var(--ps-border-green);
    }
}

@media (max-width: 768px) {
    h1, .ps-hero h1 {
        font-size: 32px;
    }
    
    h2, .ps-section-title {
        font-size: 28px;
    }
    
    .ps-shop-card {
        padding: 30px;
    }
    
    .ps-feature-item {
        padding: 30px;
    }
    
    .ps-stat-number {
        font-size: 32px;
    }
    
    .btn, .sppb-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    h1, .ps-hero h1 {
        font-size: 28px;
    }
    
    .ps-hero p {
        font-size: 16px;
    }
    
    .ps-section-description {
        font-size: 16px;
    }
}

/* ============================================
   17. UTILITY CLASSES
   ============================================ */
/* Backgrounds */
.bg-dark { background: var(--ps-dark-bg) !important; }
.bg-darker { background: var(--ps-darker-bg) !important; }
.bg-orange { background: var(--ps-orange) !important; }
.bg-green { background: var(--ps-green) !important; }
.bg-white { background: #ffffff !important; }
.bg-light { background: #f8f9fa !important; }

/* Text Colors */
.text-white { color: var(--ps-light-text) !important; }
.text-gray { color: var(--ps-gray-text) !important; }
.text-orange { color: var(--ps-orange) !important; }
.text-green { color: var(--ps-green) !important; }
.text-dark { color: #1a1a1a !important; }

/* Borders */
.border-green { border-color: var(--ps-border-green) !important; }
.border-orange { border-color: var(--ps-border-orange) !important; }

/* Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }

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

/* ============================================
   18. PAGE HERO (Unterseiten)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, rgba(10, 30, 30, 0.95) 0%, rgba(5, 18, 18, 0.95) 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 178, 169, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-text {
    max-width: 600px;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--ps-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.page-hero-badge.green {
    background: rgba(0, 178, 169, 0.15);
    color: var(--ps-green);
    border-color: rgba(0, 178, 169, 0.3);
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    color: var(--ps-gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
    color: var(--ps-gray-text);
    font-size: 14px;
    margin-bottom: 20px;
    background: none;
    padding-left: 0 !important;
}

.breadcrumb a {
    color: var(--ps-gray-text);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--ps-orange);
}

.breadcrumb span {
    color: var(--ps-green);
}

/* ============================================
   19. USP BANNER
   ============================================ */
.usp-banner {
    background: linear-gradient(90deg, var(--ps-orange) 0%, var(--ps-green) 100%);
    padding: 30px 40px;
}

.usp-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.usp-item .icon {
    font-size: 24px;
}

/* ============================================
   20. FACTS GRID
   ============================================ */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fact-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--ps-dark-bg);
    border-radius: var(--ps-radius-lg);
    border: 1px solid rgba(0, 178, 169, 0.15);
    transition: all 0.3s;
}

.fact-item:hover {
    border-color: var(--ps-orange);
    transform: translateY(-5px);
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--ps-orange);
    margin-bottom: 10px;
    line-height: 1;
}

.fact-label {
    color: var(--ps-gray-text);
    font-size: 15px;
}

/* ============================================
   21. CATEGORY CARDS (Wholesale)
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #ffffff;
    border-radius: var(--ps-radius-lg);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--ps-green);
}

.category-card-image {
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 178, 169, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.category-card-content {
    padding: 25px;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.category-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.category-card ul li {
    color: #555;
    font-size: 13px;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.category-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ps-green);
    font-weight: 700;
    font-size: 12px;
}

/* ============================================
   22. BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--ps-dark-bg);
    padding: 40px;
    border-radius: var(--ps-radius-lg);
    border: 1px solid rgba(0, 178, 169, 0.15);
    transition: all 0.3s;
    text-align: center;
}

.benefit-item:hover {
    border-color: var(--ps-orange);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 178, 169, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--ps-orange) 0%, var(--ps-green) 100%);
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--ps-green);
}

.benefit-item p {
    color: var(--ps-gray-text);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   23. SHIPPING SECTION
   ============================================ */
.shipping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.shipping-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--ps-light-text);
}

.shipping-text p {
    color: var(--ps-gray-text);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.shipping-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.country-tag {
    background: rgba(0, 178, 169, 0.1);
    color: var(--ps-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0, 178, 169, 0.2);
}

.shipping-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--ps-light-text);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shipping-features li:last-child {
    border-bottom: none;
}

.shipping-features li .icon {
    color: var(--ps-green);
    font-size: 20px;
}

.shipping-visual {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 178, 169, 0.08) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(0, 178, 169, 0.2);
}

.shipping-visual .map-icon {
    font-size: 120px;
    margin-bottom: 20px;
}

.shipping-visual p {
    color: var(--ps-gray-text);
    font-size: 16px;
}

/* ============================================
   24. STEPS CONTAINER (How It Works)
   ============================================ */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--ps-orange), var(--ps-green));
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--ps-orange) 0%, var(--ps-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--ps-light-text);
}

.step-item p {
    color: var(--ps-gray-text);
    font-size: 15px;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================
   25. TERMS GRID (Wholesale Conditions)
   ============================================ */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.term-card {
    background: #ffffff;
    padding: 35px;
    border-radius: var(--ps-radius-lg);
    border-left: 4px solid var(--ps-orange);
    transition: all 0.3s;
}

.term-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.term-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.term-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.term-card ul li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.term-card ul li:last-child {
    border-bottom: none;
}

.term-card ul li strong {
    color: #1a1a1a;
}

/* ============================================
   26. SAMPLE SECTION (Wholesale)
   ============================================ */
.sample-section {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-top: 1px solid rgba(0, 178, 169, 0.2);
    border-bottom: 1px solid rgba(0, 178, 169, 0.2);
}

.sample-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.sample-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--ps-light-text);
}

.sample-text p {
    color: var(--ps-gray-text);
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.sample-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.sample-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ps-light-text);
    font-size: 15px;
}

.sample-feature .icon {
    color: var(--ps-green);
    font-size: 20px;
}

.sample-box {
    background: var(--ps-dark-bg);
    border: 2px dashed rgba(0, 178, 169, 0.4);
    border-radius: var(--ps-radius-lg);
    padding: 50px;
    text-align: center;
}

.sample-box .icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.sample-box p {
    color: var(--ps-gray-text);
    font-size: 14px;
}

/* ============================================
   27. CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--ps-orange) 0%, #e65a2b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section.green {
    background: linear-gradient(135deg, var(--ps-green) 0%, #00968e 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-section h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================
   28. CONTACT GRID (Kontakt-Seite)
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: var(--ps-dark-bg);
    border-radius: var(--ps-radius-lg);
    padding: 50px;
    border: 1px solid rgba(0, 178, 169, 0.2);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info .subtitle {
    color: var(--ps-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 178, 169, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item .label {
    font-size: 13px;
    color: var(--ps-gray-text);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-item .text {
    color: var(--ps-light-text);
    font-size: 17px;
    line-height: 1.6;
}

.contact-item .text a {
    color: var(--ps-green);
    text-decoration: none;
}

/* Contact Form Box */
.contact-form-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 178, 169, 0.05) 100%);
    border-radius: var(--ps-radius-lg);
    padding: 50px;
    border: 1px solid rgba(0, 178, 169, 0.2);
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-box .subtitle {
    color: var(--ps-gray-text);
    font-size: 15px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--ps-light-text);
}

.form-group label .required {
    color: var(--ps-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--ps-darker-bg);
    border: 1px solid rgba(0, 178, 169, 0.2);
    border-radius: 8px;
    color: var(--ps-light-text);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ps-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   29. QUICK CONTACT BAR
   ============================================ */
.quick-contact {
    background: linear-gradient(90deg, var(--ps-orange) 0%, var(--ps-green) 100%);
    padding: 40px;
}

.quick-contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.quick-item .icon {
    font-size: 28px;
}

.quick-item .text {
    font-size: 18px;
    font-weight: 600;
}

.quick-item a {
    color: white;
    text-decoration: none;
}

/* ============================================
   30. MAP SECTION
   ============================================ */
.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.map-text p {
    color: var(--ps-gray-text);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.map-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.map-features li .icon {
    color: var(--ps-green);
    font-size: 18px;
    width: 25px;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 178, 169, 0.08) 100%);
    border: 2px dashed rgba(0, 178, 169, 0.3);
    border-radius: var(--ps-radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder .icon {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.map-placeholder .label {
    color: var(--ps-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder .hint {
    color: var(--ps-gray-text);
    font-size: 13px;
}

/* ============================================
   31. FAQ SECTION
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--ps-dark-bg);
    padding: 30px;
    border-radius: var(--ps-radius-md);
    border: 1px solid rgba(0, 178, 169, 0.15);
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--ps-green);
}

.faq-item p {
    color: var(--ps-gray-text);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   32. TIMELINE (Über uns)
   ============================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--ps-orange), var(--ps-green));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--ps-dark-bg);
    padding: 30px;
    border-radius: var(--ps-radius-md);
    border: 1px solid rgba(0, 178, 169, 0.15);
    max-width: 400px;
    margin-right: 30px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
    background: linear-gradient(135deg, var(--ps-orange), var(--ps-green));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -80px;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--ps-light-text);
}

.timeline-content p {
    color: var(--ps-gray-text);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   33. TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: #ffffff;
    border-radius: var(--ps-radius-lg);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-photo {
    height: 300px;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-info .role {
    color: var(--ps-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   34. LOCATION SECTION
   ============================================ */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--ps-light-text);
}

.location-text p {
    color: var(--ps-gray-text);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.location-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--ps-light-text);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-features li:last-child {
    border-bottom: none;
}

.location-features li .icon {
    color: var(--ps-green);
    font-size: 20px;
    width: 30px;
}

.location-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-photo {
    height: 200px;
    border-radius: var(--ps-radius-md);
}

.location-photo.large {
    grid-column: span 2;
    height: 250px;
}

/* ============================================
   35. VALUES SECTION
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--ps-radius-lg);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ps-green);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 178, 169, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   36. PHOTO PLACEHOLDER
   ============================================ */
.photo-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 178, 169, 0.1) 100%);
    border: 2px dashed rgba(0, 178, 169, 0.4);
    border-radius: var(--ps-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ps-gray-text);
    text-align: center;
    padding: 40px;
}

.photo-placeholder .icon {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.photo-placeholder .label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--ps-green);
}

.photo-placeholder .hint {
    font-size: 12px;
    color: var(--ps-gray-text);
}

.hero-photo {
    height: 400px;
}

.story-photo {
    height: 450px;
    border-radius: var(--ps-radius-lg);
}

/* ============================================
   37. BRANDS SECTION (Wholesale)
   ============================================ */
.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 35px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ps-gray-text);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.brand-item:hover {
    background: rgba(0, 178, 169, 0.1);
    border-color: var(--ps-green);
    color: var(--ps-light-text);
}

/* ============================================
   38. EU BADGE
   ============================================ */
.eu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 178, 169, 0.15);
    color: var(--ps-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 178, 169, 0.3);
}

.consumables-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--ps-orange);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* ============================================
   39. TRUST SECTION
   ============================================ */
.trust-section {
    background: var(--ps-dark-bg);
    padding: 60px 40px;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ps-gray-text);
    font-size: 14px;
}

.trust-item .icon {
    font-size: 28px;
}

/* ============================================
   40. LEGAL PAGES (Impressum, Datenschutz)
   ============================================ */
.legal-content {
    padding: 80px 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 22px;
    color: var(--ps-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 178, 169, 0.2);
}

.legal-section h3 {
    font-size: 18px;
    color: var(--ps-light-text);
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: var(--ps-gray-text);
    font-size: 16px;
    margin-bottom: 15px;
}

.legal-section a {
    color: var(--ps-green);
    text-decoration: none;
}

.legal-section a:hover {
    color: var(--ps-orange);
}

.legal-section ul {
    color: var(--ps-gray-text);
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
}

.info-box {
    background: var(--ps-dark-bg);
    border-radius: var(--ps-radius-md);
    padding: 30px;
    border-left: 4px solid var(--ps-orange);
    margin: 20px 0;
}

.info-box p {
    color: var(--ps-light-text);
    margin-bottom: 5px;
}

.info-box strong {
    color: var(--ps-orange);
}

.placeholder {
    background: rgba(255, 107, 53, 0.1);
    color: var(--ps-orange);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Table of Contents (Datenschutz) */
.toc {
    background: var(--ps-dark-bg);
    border-radius: var(--ps-radius-md);
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 178, 169, 0.2);
}

.toc h3 {
    font-size: 18px;
    color: var(--ps-green);
    margin-bottom: 20px;
}

.toc ol {
    margin-left: 20px;
    color: var(--ps-gray-text);
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--ps-gray-text);
    text-decoration: none;
}

.toc a:hover {
    color: var(--ps-green);
}

/* ============================================
   41. RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .terms-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .shipping-content,
    .sample-content,
    .location-content,
    .map-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .usp-banner-content,
    .quick-contact-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .sample-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 0;
        right: auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .categories-grid,
    .facts-grid,
    .benefits-grid,
    .terms-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .location-photos {
        grid-template-columns: 1fr;
    }
    
    .location-photo.large {
        grid-column: span 1;
    }
    
    .hero-photo {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 40px 20px;
    }
    
    .brands-grid {
        gap: 20px;
    }
    
    .brand-item {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* ============================================
   END OF PROMO-STATION CUSTOM CSS
   ============================================ */