/*
Theme Name:         G5Plus Lustria Child Theme
Theme URI:          https://lustria.g5plus.net/
Description:        G5Plus Lustria Child Theme
Version:            1.0
Author:             g5plus
Author URI:         http://g5plus.net/
Template:     		g5plus-lustria

License:            GNU General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html

Tags: 				two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: 		g5plus-lustria
*/
/************************************************************************************
Put your custom CSS below this block :)
*************************************************************************************/

.woocommerce-product-gallery__wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.woocommerce-product-gallery__image {
    flex: 0 0 auto;
    max-width: 100%;
}

.ship_to_different_address {
    display: none !important;
}

.wfacp_shipping_radio input[type="radio"] {
  display: none !important;
}

.wfacp_shipping_calculator .border {
  border: none !important;
  box-shadow: none !important;
}
.fa-solid::before {
  font-family: "Font Awesome 6 Free";
  content: "\f732";
}
.wfacp-order-place-btn-wrap .button:hover {
  background-color: #05662e !important; /* dunkleres Grün */
  color: white !important; /* Schrift weiß lassen */
}

.wfacp-order-place-btn-wrap .button {
  transition: background-color 0.3s ease;
}

* {
  font-family: 'Roboto', sans-serif !important;
}

.bwfan_user_consent {
  text-transform: none !important;
}

.bwfan_user_consent label {
  text-transform: none !important;
}

/* Cannabis Cards Styling - Isolated with unique class names */
.thc-strain-cards * {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.thc-strain-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.thc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.thc-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.thc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* 1:1 Bildcontainer */
.thc-card-image-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #f5f5f5;
}

.thc-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.thc-card:hover .thc-card-image {
    transform: scale(1.05);
}

.thc-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    z-index: 1;
}

.thc-card-thc {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.thc-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.thc-card-title {
    font-size: 22px;
    color: #2a6e01;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.thc-card-description {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    height: 68px; /* Feste Höhe für alle Beschreibungen */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Verbesserte Statistikboxen mit einheitlicher Höhe */
.thc-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    height: 85px; /* Feste Höhe für alle Statistikboxen */
}

.thc-stat {
    background-color: #f1f8e9;
    border-radius: 8px;
    padding: 8px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikale Zentrierung */
    align-items: center; /* Horizontale Zentrierung */
    height: 100%;
}

.thc-stat-label {
    font-size: 13px;
    color: #4b830d;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.2;
    width: 100%; /* Volle Breite innerhalb der Box */
    text-align: center;
}

.thc-stat-value {
    font-size: 16px;
    color: #2a6e01;
    font-weight: 700;
    line-height: 1.2;
    width: 100%; /* Volle Breite innerhalb der Box */
    text-align: center;
}

/* Verbesserte Detail-Bereiche mit einheitlicher Höhe */
.thc-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    column-gap: 10px;
    margin-bottom: 20px; /* Erhöhter Abstand zum Tag-Bereich */
    min-height: 110px; /* Erhöhte Mindesthöhe für Details-Bereich */
}

.thc-detail {
    display: flex;
    flex-direction: column;
}

.thc-detail-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.thc-detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Verbesserte Tags-Bereiche mit fester Höhe */
.thc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    min-height: 70px; /* Erhöhte Mindesthöhe für den Tags-Bereich */
    align-content: flex-start; /* Tags beginnen oben */
}

.thc-tag {
    background-color: #e8f5e9;
    color: #2a6e01;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
    white-space: nowrap; /* Verhindert Umbruch in Tags */
    margin-bottom: 5px; /* Konsistenter Abstand bei mehreren Zeilen */
}

.thc-card-button {
    background-color: #2a6e01;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    border: none;
    font-size: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: auto; /* Button ans Ende der Karte schieben */
    text-decoration: none; /* Entfernt Unterstreichung bei Links */
}

.thc-card-button:hover {
    background-color: #1b5e20;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white; /* Behält die weiße Textfarbe beim Hover */
    text-decoration: none; /* Stellt sicher, dass keine Unterstreichung beim Hover erscheint */
}

.thc-leaf-icon {
    width: 16px;
    height: 16px;
    fill: #f9a825;
}

@media (max-width: 767px) {
    /* Korrektur für den gestapelten Layout */
    .thc-strain-cards {
        padding: 10px;
    }
    
    /* Besserer Abstand zwischen den Karten */
    .thc-cards-grid {
        gap: 40px;
        grid-template-columns: 1fr; /* Eine Karte pro Zeile auf Mobilgeräten */
    }
    
    /* Verbesserte Statistikboxen für Mobilgeräte */
    .thc-card-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* 3 Spalten beibehalten */
        gap: 5px;
        margin-bottom: 15px;
        height: auto; /* Adaptive Höhe statt fester Höhe */
        min-height: unset; /* Feste Höhe entfernen */
    }
    
    .thc-stat {
        padding: 8px 5px;
        min-height: 60px; /* Mindesthöhe für einheitliches Aussehen */
    }
    
    .thc-stat-label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .thc-stat-value {
        font-size: 14px;
    }
    
    /* Verbesserte Detail-Bereiche für Mobilgeräte */
    .thc-card-details {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 15px;
        min-height: unset; /* Keine feste Mindesthöhe */
    }
    
    .thc-detail-label {
        font-size: 11px;
    }
    
    .thc-detail-value {
        font-size: 13px;
    }
    
    /* Verbesserte Tags-Bereiche für Mobilgeräte */
    .thc-card-tags {
        min-height: unset; /* Keine feste Mindesthöhe */
        margin-bottom: 15px;
    }
    
    .thc-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    /* Verbesserte Button-Darstellung für Mobilgeräte */
    .thc-card-button {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Bildhöhe für Mobilgeräte anpassen */
    .thc-card-image-wrap {
        height: 200px;
        padding-bottom: 0; /* Aspect Ratio-Ansatz entfernen */
    }
    
    .thc-card-image {
        height: 100%;
    }
    
    /* Titel für Mobilgeräte anpassen */
    .thc-card-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .thc-card-description {
        font-size: 14px;
        height: auto; /* Keine feste Höhe */
        max-height: 63px; /* Ungefähr 3 Zeilen */
        margin-bottom: 12px;
    }
}

/* Fixes für Extra-kleine Bildschirme */
@media (max-width: 380px) {
    .thc-card-stats {
        grid-template-columns: 1fr 1fr; /* 2 Spalten für sehr kleine Geräte */
    }
    
    .thc-stat {
        min-height: 50px;
    }
    
    .thc-card-image-wrap {
        height: 180px;
    }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.thc-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* Testimonial Karussell  */
        .thc-testimonials * {
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        .thc-testimonials {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
        }
        
        .thc-testimonials-title {
            text-align: center;
            color: #2a6e01;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
        }
        
        .thc-testimonials-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #4CAF50;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .thc-testimonials-carousel {
            position: relative;
            overflow: hidden;
            padding: 40px 0;
        }
        
        .thc-testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .thc-testimonial {
            min-width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
        
        .thc-testimonial-inner {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            padding: 30px;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .thc-testimonial-inner:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 60px;
            color: rgba(42, 110, 1, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .thc-testimonial-content {
            padding-left: 10px;
            margin-bottom: 25px;
            color: #444;
            font-size: 16px;
            line-height: 1.6;
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }
        
        .thc-testimonial-rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .thc-rating-stars {
            display: flex;
            margin-right: 10px;
        }
        
        .thc-star {
            color: #f9a825; /* Gold color for stars */
            width: 20px;
            height: 20px;
            margin-right: 2px;
        }
        
        .thc-rating-value {
            color: #444;
            font-weight: 700;
            font-size: 15px;
        }
        
        .thc-testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .thc-author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
            background: #f1f8e9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #2a6e01;
            border: 2px solid #e8f5e9;
        }
        
        .thc-author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thc-author-details {
            display: flex;
            flex-direction: column;
        }
        
        .thc-author-name {
            font-weight: 700;
            color: #2a6e01;
            font-size: 16px;
            margin-bottom: 2px;
        }
        
        .thc-verified-buyer {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #666;
        }
        
        .thc-verified-icon {
            width: 14px;
            height: 14px;
            fill: #4CAF50;
            margin-right: 4px;
        }
        
        .thc-strain-tag {
            font-size: 12px;
            background-color: #e8f5e9;
            color: #2a6e01;
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 5px;
        }
        
        .thc-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .thc-nav-button:hover {
            background-color: #f1f8e9;
            transform: translateY(-50%) scale(1.1);
        }
        
        .thc-nav-button svg {
            width: 20px;
            height: 20px;
            fill: #2a6e01;
        }
        
        .thc-prev {
            left: 10px;
        }
        
        .thc-next {
            right: 10px;
        }
        
        .thc-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .thc-dot {
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .thc-dot.active {
            background-color: #2a6e01;
            transform: scale(1.2);
        }
        
        /* Responsive Styles */
        @media (min-width: 768px) {
            .thc-testimonial {
                min-width: 50%; /* Show 2 testimonials on tablets */
            }
        }
        
        @media (min-width: 1024px) {
            .thc-testimonial {
                min-width: 33.333%; /* Show 3 testimonials on desktop */
            }
        }
        
        @media (max-width: 767px) {
            .thc-testimonials-title {
                font-size: 26px;
            }
            
            .thc-testimonial-inner {
                padding: 25px 20px;
            }
            
            .thc-nav-button {
                width: 35px;
                height: 35px;
            }
        }

/* Premium Partner Showcase */
        .thc-partners * {
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        .thc-partners {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .thc-partners-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .thc-partners-title {
            color: #2a6e01;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .thc-partners-subtitle {
            color: #555;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .thc-partners-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #4CAF50;
            margin: 15px auto 0;
        }
        
        .thc-partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        
        .thc-partner-card {
            position: relative;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 180px;
        }
        
        .thc-partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .thc-partner-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2a6e01, #4CAF50);
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .thc-partner-card:hover::before {
            opacity: 1;
        }
        
        .thc-partner-logo-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .thc-partner-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(20%);
            opacity: 0.9;
            transition: all 0.3s ease;
        }
        
        .thc-partner-card:hover .thc-partner-logo {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Decorative Elements */
        .thc-partners-decoration {
            position: absolute;
            opacity: 0.04;
            z-index: -1;
        }
        
        .thc-leaf-1 {
            top: 30px;
            left: -80px;
            width: 200px;
            height: 200px;
            transform: rotate(-15deg);
        }
        
        .thc-leaf-2 {
            bottom: 40px;
            right: -70px;
            width: 180px;
            height: 180px;
            transform: rotate(20deg);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .thc-partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 20px;
            }
            
            .thc-partner-card {
                height: 150px;
                padding: 20px;
            }
            
            .thc-partners-title {
                font-size: 28px;
            }
            
            .thc-partners {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .thc-partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 15px;
            }
            
            .thc-partner-card {
                height: 120px;
                padding: 15px;
            }
            
            .thc-partners-title {
                font-size: 24px;
            }
        }

.custom-woo-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
  margin-top: 30px;
}

.woo-cat-box {
  flex: 0 0 auto;
  text-align: center;
}

.woo-cat-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cat-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto 15px;
}

.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-image:hover img {
  transform: scale(1.1);
}

.hover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2a6e01;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.cat-image:hover .hover-btn {
  opacity: 1;
}

.cat-title {
  font-size: 18px;
  font-weight: 700;
  color: #2a6e01;
}

.cat-title .count {
  background-color: #4CAF50;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 6px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cat-image {
    width: 160px;
    height: 160px;
  }

  .cat-title {
    font-size: 14px;
  }

  .cat-title .count {
    font-size: 11px;
    padding: 2px 6px;
  }

  .hover-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}


/* Cannabis Produktseite - Isoliertes Styling */
        .thc-premium * {
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        .thc-premium {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            color: #333;
        }
        
        .thc-premium-hero {
            position: relative;
            margin-bottom: 50px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .thc-hero-image {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }
        
        .thc-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 50px;
        }
        
        .thc-hero-title {
            color: white;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            max-width: 60%;
        }
        
        .thc-hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            line-height: 1.6;
            max-width: 60%;
            margin-bottom: 30px;
        }
        
        .thc-hero-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #2a6e01;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(42, 110, 1, 0.3);
            border: none;
            font-size: 16px;
            cursor: pointer;
        }
        
        .thc-hero-button:hover {
            background-color: #1b5e20;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(42, 110, 1, 0.4);
        }
        
        .thc-premium-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        .thc-main-content {
            padding-right: 20px;
        }
        
        .thc-sidebar {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            height: fit-content;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .thc-section-title {
            color: #2a6e01;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .thc-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #2a6e01;
        }
        
        .thc-features {
            margin-bottom: 40px;
        }
        
        .thc-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }
        
        .thc-feature-item {
            padding: 15px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .thc-feature-icon {
            margin-right: 15px;
            fill: #2a6e01;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        
        .thc-feature-text {
            font-size: 16px;
            line-height: 1.5;
            color: #444;
        }
        
        .thc-text-content {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
            margin-bottom: 30px;
        }
        
        .thc-text-content p {
            margin-bottom: 20px;
        }
        
        .thc-text-content strong {
            color: #2a6e01;
            font-weight: 700;
        }
        
        .thc-sidebar-title {
            font-size: 20px;
            color: #2a6e01;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e6e6e6;
        }
        
        .thc-sidebar-content {
            font-size: 15px;
            line-height: 1.6;
            color: #444;
        }
        
        .thc-sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        .thc-sidebar-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .thc-sidebar-icon {
            width: 18px;
            height: 18px;
            fill: #2a6e01;
            margin-right: 10px;
        }
        
        .thc-cta {
            background: linear-gradient(to right, #2a6e01, #4CAF50);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            text-align: center;
        }
        
        .thc-cta-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .thc-cta-text {
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .thc-cta-button {
            background-color: white;
            color: #2a6e01;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            display: inline-block;
            text-decoration: none;
        }
        
        .thc-cta-button:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .thc-divider {
            height: 1px;
            background-color: #e6e6e6;
            margin: 40px 0;
        }
        
        .thc-shipping-info {
            background-color: #f1f8e9;
            border-radius: 10px;
            padding: 25px;
            margin-top: 40px;
            border: 1px solid #e0e0e0;
        }
        
        .thc-shipping-title {
            font-size: 20px;
            color: #2a6e01;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .thc-shipping-content {
            font-size: 15px;
            line-height: 1.6;
            color: #444;
        }
        
        .thc-important-notice {
            background-color: #fffde7;
            border-left: 4px solid #fbc02d;
            padding: 15px;
            margin-top: 20px;
            border-radius: 0 4px 4px 0;
        }
        
        .thc-important-title {
            font-weight: 700;
            color: #f57c00;
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .thc-important-text {
            font-size: 14px;
            color: #444;
        }
        
        .thc-cooperation {
            margin-top: 40px;
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .thc-cooperation-title {
            font-size: 24px;
            color: #2a6e01;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .thc-cooperation-content {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .thc-research-content {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .thc-research-title {
            font-size: 20px;
            color: #2a6e01;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .thc-research-text {
            font-size: 15px;
            line-height: 1.6;
            color: #444;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .thc-premium-content {
                grid-template-columns: 1fr;
            }
            
            .thc-sidebar {
                margin-top: 30px;
            }
            
            .thc-hero-title, .thc-hero-subtitle {
                max-width: 80%;
            }
        }
        
        @media (max-width: 768px) {
            .thc-hero-overlay {
                padding: 30px;
            }
            
            .thc-hero-title {
                font-size: 32px;
                max-width: 100%;
            }
            
            .thc-hero-subtitle {
                font-size: 16px;
                max-width: 100%;
            }
            
            .thc-section-title {
                font-size: 24px;
            }
            
            .thc-hero-image {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .thc-hero-overlay {
                padding: 20px;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.3) 100%);
            }
            
            .thc-hero-title {
                font-size: 28px;
            }
            
            .thc-hero-image {
                height: 250px;
            }
            
            .thc-feature-item {
                padding: 12px 0;
            }
            
            .thc-cooperation {
                padding: 20px;
            }
        }

/* Cannabis Footer Styling */
.thc-footer * {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.thc-footer {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    color: #333;
}

.thc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.thc-footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.thc-footer-column {
    display: flex;
    flex-direction: column;
}

.thc-footer-title {
    color: #2a6e01;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.thc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #4CAF50;
}

.thc-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.thc-footer-logo img {
    max-height: 50px;
    margin-right: 15px;
}

.thc-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #2a6e01;
}

.thc-footer-about {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thc-social-icons {
    display: flex;
    gap: 15px;
}

.thc-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f8e9;
    color: #2a6e01;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.thc-social-icon:hover {
    background-color: #2a6e01;
    color: white;
    transform: translateY(-3px);
}

.thc-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.thc-footer-link {
    margin-bottom: 12px;
}

.thc-footer-link a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.thc-footer-link a:hover {
    color: #2a6e01;
    transform: translateX(3px);
}

.thc-footer-link-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: #4CAF50;
}

.thc-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thc-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.thc-contact-icon {
    width: 18px;
    height: 18px;
    fill: #4CAF50;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.thc-contact-text {
    line-height: 1.5;
}

.thc-contact-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.thc-contact-text a:hover {
    color: #2a6e01;
}

.thc-footer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.thc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.thc-copyright {
    font-size: 13px;
    color: #777;
}

.thc-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.thc-legal-link {
    font-size: 13px;
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.thc-legal-link:hover {
    color: #2a6e01;
}

.thc-payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.thc-payment-icon {
    width: 40px;
    height: 25px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thc-payment-icon img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Hintergrundbild positionieren */
.thc-footer-decoration {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 180px;
    height: 180px;
    opacity: 0.05;
    z-index: 0;
    transform: rotate(15deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .thc-footer {
        padding: 40px 0 20px;
    }
    
    .thc-footer-main {
        gap: 30px;
    }
    
    .thc-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .thc-footer-legal {
        justify-content: center;
    }
    
    .thc-payment-methods {
        justify-content: center;
    }
    
    .thc-footer-decoration {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .thc-footer-title {
        font-size: 16px;
    }
    
    .thc-footer-link a, 
    .thc-contact-text, 
    .thc-footer-about {
        font-size: 13px;
    }
    
    .thc-footer-column {
        padding-bottom: 15px;
    }
}

.custom-customer-loves {
        align-items: center;
        background-color: #f7f5e8; 
        border-radius: 30px; 
        padding: 10px 20px;
        width: fit-content; 
        display: flex; 
        box-sizing: border-box; 
        position: relative;
        flex-wrap: wrap;
        margin-top: 0px;
        margin-bottom: 15px; 
    }
    
    .custom-customer-images {
        margin-right: 14px; 
        display: flex; 
        align-items: center;
        position: relative;
    }
    
    .custom-customer-img {
        width: 40px; 
        height: 40px; 
        border-radius: 50%; 
        border: 2px solid #ffffff; 
        margin-left: -10px; 
        box-shadow: 0 0 0 2px #42a5f5;
    }
    .custom-verified-icon {
        top: -5px;
        left: 75%;
        width: 20px;
        height: 20px;
        position: absolute;
        z-index: 1;
    }
    .custom-verified-icon .custom-svg-icon-bg {
        fill: #42a5f5;
    }
    .custom-verified-icon .custom-svg-icon-check {
        fill: #ffffff;
    }
    
    .custom-customer-text {
        font-size: 14px; 
        color: #000000;
        flex: 1;
        line-height: 16px;
        min-width: 0;
    }
    
    .custom-customer-text b {
        font-weight: bold;
        color: #000000;
    }

/* Badge Customer Productpage */


.thc2025_trust_wrapper {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    width: 100%;
    margin: 10px 0;
  }
  
  .thc2025_trust_wrapper *,
  .thc2025_trust_wrapper *:before,
  .thc2025_trust_wrapper *:after {
    box-sizing: inherit;
  }

  .thc2025_customer_badge {
    background-color: #f7f5e8;
    border-radius: 30px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 6px rgba(3, 51, 40, 0.06);
    width: 100%;
    overflow: hidden;
  }
  
  .thc2025_customer_container {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
  }

  .thc2025_customer_profile1 {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid white !important;
    box-shadow: 0 0 0 1px #033328;
    position: relative;
    z-index: 2;
  }
  
  .thc2025_customer_profile2 {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid white !important;
    box-shadow: 0 0 0 1px #033328;
    position: relative;
    margin-left: -12px;
    z-index: 1;
  }

  .thc2025_verified_badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    z-index: 3;
  }

  .thc2025_svg_bg {
    fill: #033328;
  }

  .thc2025_svg_check {
    fill: #ffffff;
  }

  .thc2025_customer_message {
    font-size: 14px;
    line-height: 1.2;
    color: #333;
    flex: 1;
    white-space: normal;
  }
  
  .thc2025_names {
    display: inline;
  }

  .thc2025_customer_count {
    background-color: #033328;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin: 0 2px;
    white-space: nowrap;
  }

  .thc2025_product_highlight {
    color: #033328;
    font-weight: 600;
    white-space: nowrap;
  }

  .thc2025_leaf_icon {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: -6px;
    right: -6px;
    opacity: 0.08;
    z-index: 1;
  }
  
  /* Sehr kleine Bildschirme */
  @media (max-width: 359px) {
    .thc2025_customer_badge {
      padding: 8px 12px;
    }
    
    .thc2025_customer_profile1,
    .thc2025_customer_profile2 {
      width: 30px;
      height: 30px;
    }
    
    .thc2025_customer_message {
      font-size: 12px;
    }
    
    .thc2025_customer_count {
      font-size: 12px;
      padding: 2px 6px;
    }
    
    .thc2025_names {
      display: none;
    }
  }