kannst ud hier den fehelr sehen: /* Produktgrid verbessern */
.custom-products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-gap: 35px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 1200px !important;
  list-style: none !important;
}

/* Produktbilder anpassen */
.product-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Produktkarten stylen */
.product-item {
  display: block !important;
  background: transparent !important;
  box-shadow: none !important;
  flex-direction: column !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  position: relative !important;
}

.product-inner {
  overflow: hidden !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.product-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Container für das Bild */
.product-image {
  height: 350px !important;
  overflow: hidden !important;
  font-size: 0 !important; /* Entfernt mögliche Textabstände */
  line-height: 0 !important;
  display: block !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 0.5s ease !important;
}

.product-item:hover .product-image img {
  transform: scale(1.07) !important;
}

/* Produktinhalt mit Pastellhintergrund je nach Produkt */
.product-content {
  margin: 0 !important;
  padding: 25px !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
  top: -1px !important;
}

/* Pastellfarben für die verschiedenen Produkte */
.product-item:nth-child(1) .product-content {
  background-color: #f4f4f4 !important; /* Leichtes Grau für das Platzhalterprodukt */
}

.product-item:nth-child(2) .product-content {
  background-color: #f9f2f2 !important; /* Leichtes Rosa für Crema Rigenerante */
}

.product-item:nth-child(3) .product-content {
  background-color: #f2f7f9 !important; /* Leichtes Blau für Spray Termico */
}

.product-item:nth-child(4) .product-content {
  background-color: #e9f2f7 !important; /* Hellblau für Spray Volume */
}

.product-item:nth-child(5) .product-content {
  background-color: #f5effa !important; /* Lavender für Elisir Spray */
}

.product-item:nth-child(6) .product-content {
  background-color: #f0f7f0 !important; /* Hellgrün für Gel Ondulante */
}

/* Produkttitel */
.product-content h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  margin-bottom: 15px !important;
  color: #333333 !important;
  margin-top: 0 !important;
  padding-top: 15px !important;
}

.product-content h3 a {
  color: #333333 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.product-content h3 a:hover {
  color: var(--color-gold, #d4af37) !important;
}

/* Preis */
.product-content .price {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--color-gold, #d4af37) !important;
  margin-bottom: 20px !important;
  display: block !important;
}

/* Button */
.product-content .btn {
  display: inline-block !important;
  padding: 12px 25px !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  background-color: transparent !important;
  color: var(--color-gold, #d4af37) !important;
  border: 1px solid var(--color-gold, #d4af37) !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.product-content .btn:hover {
  background-color: var(--color-gold, #d4af37) !important;
  color: white !important;
  transform: translateY(-3px) !important;
}

/* Grundlegende Styling-Fixes */
:root {
    --color-white: #ffffff;
    --color-cream: #f9f6f0;
    --color-beige: #efe8d8;
    --color-gold: #d4af37;
    --color-gold-light: #e9c767;
    --color-text-dark: #2a2a2a;
    --color-text-medium: #6c6c6c;
    --color-text-light: #9c9c9c;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    padding-top: 70px; /* Anpassen je nach Header-Höhe */
    margin-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Header komplett neu gestalten */
.header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border: none;
    box-shadow: none;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
}

.header a,
.header .logo-text h1 {
    color: #fff;
}

.header.scrolled a,
.header.scrolled .logo-text h1 {
    color: var(--color-text-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Feste Höhe für die Navigation */
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Nur das 3. .nav-action‑Element (der Warenkorb) anzeigen, alles andere ausblenden */
.header .nav-actions > .nav-action:nth-child(1),
.header .nav-actions > .nav-action:nth-child(2),
.header .nav-actions > .mobile-toggle {
  display: none !important;
}

/* Hero-Bereich verbessern */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0 !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    margin-top: 0 !important;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

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

.hero-content {
    max-width: 800px;
    padding: 30px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons verbessern */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d4af37;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background-color: transparent;
    color: #d4af37;
}

.btn-outline:hover {
    background-color: #d4af37;
    color: white;
}

/* About-Bereich */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
  /* gewünschte Breite des Containers – z.B. 300px */
  max-width: 300px;
  /* Höhe so wählen, dass es Hochformat wird – z.B. 450px (Verhältnis ca. 2:3) */
  height: 450px;
  overflow: hidden;
  margin: 0 auto 30px; /* zentriert und gibt unten etwas Abstand */
}

.about-image img {
  /* Höhe des Bildes auf 100% setzen, Breite automatisch,
     so wird in der Mitte beschnitten */
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Services-Bereich */
.section {
    padding: 80px 0;
}

.services {
    background-color: var(--color-cream);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.service-tab {
    padding: 10px 20px;
    cursor: pointer;
    color: var(--color-text-medium);
}

.service-tab.active {
    color: var(--color-gold);
}

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

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    text-align: center;
}

/* Footer verbessern */
.footer {
    background-color: #f2f7f9;
    padding: 70px 0 0;
    font-family: sans-serif;
    color: #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}

.footer p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-icon:hover {
    background-color: #d4af37;
    color: white;
}

.footer-about {
    padding-right: 20px;
}

/* Contact Section */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact i {
    color: #d4af37;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact p {
    margin-bottom: 5px;
}

/* Hours Section */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Instagram Feed */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.instagram-feed a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.instagram-feed img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-feed a:hover img {
    transform: scale(1.1);
}

/* Legal Info Section */
.legal-info {
    background-color: #f9f6f0;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

.legal-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.legal-col p {
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #f2f7f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* Responsives Design */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .custom-products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .custom-products {
        grid-template-columns: 1fr !important;
    }
    
    .product-image {
        height: 300px !important;
    }
    
    .product-content {
        padding: 20px !important;
    }
}

/* "Scopri tutti i prodotti" Button */
.shop-cta {
    text-align: center !important;
    margin-top: 50px !important;
}

.shop-cta .btn {
    display: inline-block !important;
    padding: 15px 30px !important;
    background-color: var(--color-gold, #d4af37) !important;
    color: white !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.shop-cta .btn:hover {
    background-color: #c49f2a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2) !important;
}

/* Spezifischere Selektoren für Produktkarten */
.custom-products .product-item {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    background-color: #ffffff !important;
    position: relative !important;
}

.custom-products .product-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Container für das Bild */
.custom-products .product-item .product-image {
    height: 350px !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.custom-products .product-item .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.custom-products .product-item:hover .product-image img {
    transform: scale(1.07) !important;
}

/* Produktinhalt mit Pastellhintergrund je nach Produkt */
.custom-products .product-item .product-content {
    padding: 25px !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
}

/* Pastellfarben für verschiedene Produkte */
.custom-products .product-item:nth-child(1) .product-content {
    background-color: #f4f4f4 !important; /* Leichtes Grau für das Platzhalterprodukt */
}

.custom-products .product-item:nth-child(2) .product-content {
    background-color: #f9f2f2 !important; /* Leichtes Rosa für Crema Rigenerante */
}

.custom-products .product-item:nth-child(3) .product-content {
    background-color: #f2f7f9 !important; /* Leichtes Blau für Spray Termico */
}

.custom-products .product-item:nth-child(4) .product-content {
    background-color: #e9f2f7 !important; /* Hellblau für Spray Volume */
}

.custom-products .product-item:nth-child(5) .product-content {
    background-color: #f5effa !important; /* Lavender für Elisir Spray */
}

.custom-products .product-item:nth-child(6) .product-content {
    background-color: #f0f7f0 !important; /* Hellgrün für Gel Ondulante */
}

/* Produkttitel */
.custom-products .product-item .product-content h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    color: #333333 !important;
}

.custom-products .product-item .product-content h3 a {
    color: #333333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.custom-products .product-item .product-content h3 a:hover {
    color: var(--color-gold, #d4af37) !important;
}

/* Preis */
.custom-products .product-item .product-content .price {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--color-gold, #d4af37) !important;
    margin-bottom: 20px !important;
    display: block !important;
}

/* Button */
.custom-products .product-item .product-content .btn {
    display: inline-block !important;
    padding: 12px 25px !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    background-color: transparent !important;
    color: var(--color-gold, #d4af37) !important;
    border: 1px solid var(--color-gold, #d4af37) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.custom-products .product-item .product-content .btn:hover {
    background-color: var(--color-gold, #d4af37) !important;
    color: white !important;
    transform: translateY(-3px) !important;
}

/* Produktgrid anpassen */
.custom-woo-grid .custom-products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 35px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
    list-style: none !important;
}

/* Spezifischer Container-Selektor */
#products .custom-woo-grid .custom-products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 35px !important;
}

/* Responsives Design */
@media (max-width: 991px) {
    .custom-woo-grid .custom-products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .custom-woo-grid .custom-products {
        grid-template-columns: 1fr !important;
    }
    
    .custom-products .product-item .product-image {
        height: 300px !important;
    }
    
    .custom-products .product-item .product-content {
        padding: 20px !important;
    }
}

/* "Scopri tutti i prodotti" Button */
#products .shop-cta {
    text-align: center !important;
    margin-top: 50px !important;
}

#products .shop-cta .btn {
    display: inline-block !important;
    padding: 15px 30px !important;
    background-color: var(--color-gold, #d4af37) !important;
    color: white !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

#products .shop-cta .btn:hover {
    background-color: #c49f2a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2) !important;
}

/* Fix für den weißen Balken in Produktkarten */

/* 1. Verbesserter Container-Fix */
.product-item {
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: column !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    position: relative !important;
}

.product-inner {
    overflow: hidden !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* 2. Entfernen von Lücken und Abständen zwischen Bild und Content */
.product-image {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border: none !important;
    line-height: 0 !important; /* Wichtig, um mögliche Textabstände zu entfernen */
}

/* 3. Beseitigen von inneren Weißräumen */
.product-item * {
    box-sizing: border-box !important;
}

.product-image img {
    display: block !important;
    margin: 0 !important;
    line-height: 0 !important;
}

/* 4. Zusätzlicher Fix für bestimmte Theme-Konflikte */
.product-inner::after,
.product-inner::before,
.product-image::after,
.product-image::before,
.product-content::after,
.product-content::before {
    display: none !important; /* Entfernt mögliche pseudo-Elemente */
}

/* 5. Korrektur für die Zwischenräume */
.product-image a {
    display: block !important;
    line-height: 0 !important;
}

/* Spezifische Korrektur für den Title und den weißen Balken unter dem Bild */
.product-content h3 {
    margin-top: 0 !important;
    padding-top: 15px !important;
}

/* Direkter Fix für weiße Ränder */
.product-item {
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
}

.product-inner {
    overflow: hidden !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Bildcontainer formatieren */
.product-image {
    height: 350px !important;
    overflow: hidden !important;
    font-size: 0 !important; /* Entfernt mögliche Textabstände */
    line-height: 0 !important;
    display: block !important;
}

/* Sicherstellen, dass das Bild den Container vollständig ausfüllt */
.product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Produktinhalt direkt ans Bild anschließen */
.product-content {
    margin: 0 !important;
    padding: 25px !important;
}

/* Für alle Elemente Box-Sizing anwenden */
.product-item *,
.product-item *::before,
.product-item *::after {
    box-sizing: border-box !important;
}

/* Service-Karten Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.07);
}

.service-content {
    padding: 25px;
    text-align: center;
    background-color: #ffffff;
}

/* Unterschiedliche Hintergrundfarben für jede Service-Karte */
.service-card:nth-child(1) .service-content {
    background-color: #f5effa; /* Leichtes Lila für Bande Magiche */
}

.service-card:nth-child(2) .service-content {
    background-color: #f2f7f9; /* Leichtes Blau für Taglio */
}

.service-card:nth-child(3) .service-content {
    background-color: #f9f2f2; /* Leichtes Rosa für Colorazione */
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333333;
}

.service-price {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #6c6c6c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-card .btn:hover {
    background-color: #d4af37;
    color: white;
    transform: translateY(-3px);
}

/* Service-Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.service-tab {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c6c6c;
    position: relative;
}

.service-tab.active {
    color: #d4af37;
}

.service-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #d4af37;
}

/* Responsives Design */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 200px;
    }
}

/* Add this at the end of the file */

/* Footer Styles */
.footer {
    background-color: #f2f7f9;
    padding-top: 70px;
    color: #333;
    font-family: sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

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

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

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

.social-icon:hover {
    background-color: #d4af37;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.footer-contact i {
    color: #d4af37;
    width: 16px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery-item {
    overflow: hidden;
    border-radius: 5px;
}

.footer-gallery-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-gallery-item:hover img {
    transform: scale(1.1);
}

.legal-info {
    background-color: #f9f6f0;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

.legal-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.legal-col p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.copyright {
    background-color: #f2f7f9;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #555;
}

/* Font Awesome richtig laden, falls es Probleme gibt */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Mehr Platz im Header */
.header {
    padding: 15px 0;
}

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

/* Abstand zwischen den Navigation-Aktionen */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Abstand zwischen Icons */
}

.nav-action {
    font-size: 18px;
    margin-left: 10px;
    position: relative;
}

/* Korrektur für die mobilen Menü-Toggle-Buttons */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* Korrektur für den Badge im Warenkorb */
.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #d4af37; /* Gold-Farbe */
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* Mehr Abstand auf der Produktseite */
.woocommerce-products-header,
.woocommerce-archive-header,
.archive-header {
    margin-top: 40px;    /* Erhöhe diesen Wert nach Bedarf */
    padding-top: 30px;   /* Fügt zusätzlichen Innenabstand hinzu */
}

/* Verbessert den Abstand zum Breadcrumb */
.woocommerce-breadcrumb {
    margin-bottom: 25px !important;
    padding-top: 20px !important;
}

/* Optimiert den Abstand zum Seitentitel */
.woocommerce-products-header__title,
.page-title,
.entry-title {
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Korrigiert den Abstand zwischen Titel und Produktliste */
.woocommerce .products {
    margin-top: 30px;
}

/* Verbessern des Abstands im Header und auf Produktseiten */
.header {
    padding: 15px 0;
    margin-bottom: 20px;
}

/* Mehr Platz für das Logo */
.logo {
    margin-right: 20px;
}

/* Logo verbessern */
.logo img, .custom-logo {
    max-height: 70px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.custom-logo {
    max-height: 50px; /* Reduzierte Höhe für bessere Proportionen */
    width: auto;      /* Breite automatisch anpassen */
    vertical-align: middle; /* Bessere vertikale Ausrichtung */
}

.logo, .logo-text {
    display: flex;
    align-items: center;
    height: 60px; /* Feste Höhe für den Logo-Bereich */
}

/* Abstand zwischen Header und Content-Bereich */
.woocommerce-products-header,
.woocommerce-archive-header,
.page-header,
.site-content {
    padding-top: 40px;
}

/* Speziell für Produktseiten */
.woocommerce-page .site-main,
.post-type-archive-product .site-main {
    margin-top: 30px;
}

/* Breadcrumb-Abstand */
.woocommerce .woocommerce-breadcrumb {
    margin: 20px 0 30px;
}

/* Abstand zum Seitentitel */
.woocommerce-products-header__title {
    margin: 20px 0 40px;
}

/* Warenkorb-Symbol in normaler Größe belassen */
.nav-action i.fas.fa-shopping-bag {
    font-size: 16px; /* Standard-Größe für Icons */
}

/* Einkaufswagen-Icon besser sichtbar machen */
.nav-action i {
    color: #d4af37;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.5));
}

/* Bessere Sichtbarkeit für Icons auf dem Hintergrundbild */
.nav-action i {
    color: #d4af37; /* Gold-Farbe für bessere Sichtbarkeit */
}

/* Header komplett transparent machen */
.header {
    background-color: transparent !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border: none !important;
}

/* Container anpassen */
.header .container {
    background: transparent !important;
    box-shadow: none !important;
}

/* Navigation-Container transparent machen */
.nav-container {
    background: transparent !important;
}

/* Logo-Styling verbessern für bessere Sichtbarkeit auf dem Hintergrundbild */
.logo img, .custom-logo {
    max-height: 60px;
    width: auto;
}

/* Icons in der Navigation besser sichtbar machen */
.nav-action i {
    color: #d4af37;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* Badge für Warenkorb anpassen */
.badge {
    background-color: #d4af37;
}

/* Hero-Bereich anpassen */
.hero {
    position: relative;
    min-height: 80vh; /* Volle Höhe des Viewports */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video-Hintergrund */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

/* Hero-Content transparent machen - kein Rahmen, kein Hintergrund */
.hero-content {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    text-align: center;
    color: white;
    padding: 0 !important;
    max-width: 900px;
    z-index: 2;
}

/* Überschrift verbessern */
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    font-weight: 600;
}

/* Text verbessern */
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

/* Buttons verbessern */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    border: 2px solid #d4af37;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn.btn-outline {
    background-color: transparent;
    color: #d4af37;
}

.btn.btn-outline:hover {
    background-color: #d4af37;
    color: white;
}

/* Overlay für besseren Kontrast (optional) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Header-Stil wiederherstellen */
.header {
    background-color: #000 !important;
    box-shadow: none;
}

/* Logo-Größe zurücksetzen */
.logo img, .custom-logo {
    max-height: 40px;
    width: auto;
}

/* Überschrift-Stil */
.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    text-shadow: none;
}

/* Text-Stil */
.hero-content p {
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: white;
}

/* Hero-Bereich ohne Hintergrund oder Rahmen */
.hero-content {
    background: transparent;
    box-shadow: none;
    border: none;
    text-align: center;
}

/* Button-Stil */
.btn {
    background-color: #d4af37;
    color: white;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: normal;
    padding: 10px 25px;
}

.btn.btn-outline {
    background-color: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
}

/* Header wirklich komplett transparent machen */
.header {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: absolute;
    width: 100%;
    z-index: 100;
}

/* Auch jeden möglichen Innen-Container transparent machen */
.header .container,
.nav-container,
.logo,
.logo-text {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mobile Anpassungen - Produkttitel ausblenden */
@media (max-width: 768px) {
    /* Verstecke alle Titel in Produktkarten */
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2,
    .woocommerce ul.products li.product h3,
    .products .product-title,
    .product .product-title,
    .product-title,
    .entry-title,
    .product h2,
    .product .woocommerce-loop-product__title {
        display: none !important;
    }

    /* Gezieltes Ausblenden der Produkttitel in den benutzerdefinierten Produktkarten */
    .new-product-card .card-content h3 {
        display: none !important;
    }
    
    /* Buttons vergrößern und anpassen */
    .new-product-card .card-content .btn {
        padding: 14px 25px !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
        width: 100% !important; /* Button über die gesamte Breite */
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    /* Produkttitel ausblenden */
    .new-product-card .card-content h3 {
        display: none !important;
    }
    
    /* Buttons vergrößern und anpassen */
    .custom-products .new-product-card .card-content .btn {
        padding: 15px 20px !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
        width: 80% !important; /* Button breiter machen, aber nicht 100% */
        min-width: 180px !important; /* Mindestbreite festlegen */
        letter-spacing: 2px !important; /* Bessere Lesbarkeit */
        font-weight: 600 !important; /* Etwas fetter */
        display: block !important; /* Als Block-Element darstellen */
        margin-left: auto !important; /* Horizontal zentrieren */
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    
    /* Preise größer machen */
    .custom-products .new-product-card .card-content .price {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 768px) {
    /* Produkttitel ausblenden */
    .new-product-card .card-content h3 {
        display: none !important;
    }
    
    /* Buttons vergrößern und anpassen */
    .custom-products .new-product-card .card-content .btn,
    .custom-products .product-item .btn,
    .btn {
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
        margin-top: 20px !important;
        width: 90% !important;
        min-width: 200px !important;
        letter-spacing: 1px !important;
        font-weight: 600 !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        border-width: 2px !important;
    }
    
    /* Sicherstellen, dass der Text vollständig angezeigt wird */
    .btn:after {
        content: "SCOPRI DI PIÙ" !important;
        display: block !important;
    }
    
    /* Sicherstellen, dass der ursprüngliche Button-Text ausgeblendet wird */
    .btn:empty {
        display: none !important;
    }
    
    /* Preise größer machen */
    .custom-products .new-product-card .card-content .price,
    .woocommerce-Price-amount {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
        font-weight: bold !important;
    }
}

@media (max-width: 768px) {
    /* Produkttitel ausblenden */
    .new-product-card .card-content h3 {
        display: none !important;
    }
    
    /* Kleinere, hochformatige Buttons */
    .custom-products .new-product-card .card-content .btn,
    .custom-products .product-item .btn,
    .btn {
        padding: 10px 8px !important;
        font-size: 0.75rem !important; /* Kleinere Schrift */
        margin-top: 15px !important;
        width: 80px !important; /* Schmaler */
        height: 90px !important; /* Höher */
        letter-spacing: 0.5px !important;
        font-weight: 500 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    /* Text in zwei Zeilen darstellen mit kleinerer Schrift */
    .btn:before {
        content: "SCOPRI" !important;
        display: block !important;
        margin-bottom: 3px !important;
        font-size: 0.75rem !important;
    }
    
    .btn:after {
        content: "DI PIÙ" !important;
        display: block !important;
        font-size: 0.75rem !important;
    }
    
    /* Ausblenden des ursprünglichen Textes */
    .btn {
        font-size: 0 !important;
    }
    
    /* Größere Preise */
    .custom-products .new-product-card .card-content .price,
    .woocommerce-Price-amount {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        font-weight: bold !important;
    }
}

@media (max-width: 768px) {
    /* Produkttitel ausblenden */
    .new-product-card .card-content h3 {
        display: none !important;
    }
    
    /* Buttons neu formatieren */
    .custom-products .new-product-card .card-content .btn,
    .custom-products .product-item .btn,
    .new-product-card .btn,
    a.btn {
        padding: 8px 6px !important;
        font-size: 0.7rem !important;
        margin-top: 10px !important;
        width: 70px !important; /* Noch schmaler */
        height: 70px !important; /* Quadratischer */
        letter-spacing: 0px !important;
        font-weight: 500 !important;
        display: inline-block !important; /* Auf inline-block ändern */
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
        line-height: 1.2 !important;
        position: relative !important; /* Für absolute Positionierung des Inhalts */
        text-align: center !important;
        overflow: visible !important;
    }
    
    /* Direktes Überschreiben von inline-styles */
    .btn[style*="display"] {
        display: inline-block !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    /* Text direkt in den Button schreiben, ohne Pseudoelemente */
    .custom-products .new-product-card .card-content .btn,
    .btn {
        font-size: 0.7rem !important;
        white-space: normal !important; /* Text kann umbrechen */
    }
}

@media only screen and (max-width: 480px) {
    /* Produkttitel ausblenden */
    .new-product-card .card-content h3 {
        display: none !important;
    }
    
    /* Buttons verschmälern - sehr spezifische Selektoren */
    .card-content .btn,
    .new-product-card .card-content .btn,
    .custom-products .product-item .btn,
    a.btn[style*="display:"],
    a.btn[style*="padding:"] {
        display: inline-block !important;
        width: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
        padding: 8px 5px !important;
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        box-sizing: border-box !important;
    }
}

/* Einfache Lösung für den grauen Balken */
body {
    margin-top: 0 !important;
}

#wpadminbar {
    display: none !important;
}

header.header {
    position: absolute !important;
    background: transparent !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

.hero, .hero-video {
    margin-top: 0 !important;
}

/* Fix für den oberen weißen Bereich */
header.header {
    position: absolute !important;
    background: transparent !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px 0 !important;
}

/* Container im Header kompakter machen */
header.header .container {
    padding: 0 20px !important;
    margin: 0 !important;
    background: transparent !important;
}

/* Hero/Video direkt am oberen Rand beginnen lassen */
.hero, .hero-video, section#home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-video video {
    margin-top: 0 !important;
    padding-top: 0 !important;
    object-position: center top !important;
}

/* Navigations-Container optimieren */
.nav-container {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
}

/* Logo kleiner machen, falls nötig */
.logo img, .custom-logo {
    max-height: 40px !important;
    width: auto !important;
}

/* Einfacher Fix für den weißen Balken - konservative Lösung */
header.header {
    background-color: transparent !important;
    position: absolute !important;
    width: 100% !important;
    z-index: 999 !important;
}

/* Abstand oben entfernen */
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hier keine weiteren Styling-Änderungen */

/* Vollständige Entfernung des weißen Balkens */
header.header {
    background-color: transparent !important;
    position: absolute !important;
    width: 100% !important;
    z-index: 999 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Container im Header anpassen */
header.header .container {
    background-color: transparent !important;
    padding: 10px 20px !important;
    margin: 0 !important;
}

/* Video/Hero-Bereich ganz nach oben */
.hero, .hero-video, section#home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Eventuell vorhandene versteckte Elemente entfernen */
body:before, 
header:before, 
.hero:before {
    display: none !important;
    height: 0 !important;
}

/* Body ohne oberen Abstand */
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Links und Icons in der Navigation besser sichtbar machen */
.nav-container a, 
.nav-container i {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}

.mobile-toggle span {
    background-color: white !important;
}

/* Weißer Balken mit definierter Höhe für bessere Sichtbarkeit */
header.header {
    background-color: white !important;  /* Weißer Hintergrund */
    position: relative !important;       /* Statt absolute, damit er Platz einnimmt */
    width: 100% !important;
    z-index: 999 !important;
    height: 50px !important;             /* Ca. 1cm Höhe (abhängig von Bildschirmauflösung) */
    min-height: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important; /* Leichter Schatten für Tiefe */
}

/* Container im Header zentrieren */
header.header .container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
}

/* Nav-Container optimieren */
.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
}

/* Icons in normaler Farbe (nicht weiß) */
.nav-actions .nav-action i {
    color: #333 !important;     /* Dunkle Farbe für besseren Kontrast auf weißem Hintergrund */
    text-shadow: none !important;
}

/* Hamburger-Menü anpassen */
.mobile-toggle span {
    background-color: #333 !important;  /* Dunkle Farbe für besseren Kontrast */
    box-shadow: none !important;
}

/* Hero-Bereich direkt unter dem Header beginnen */
.hero, .hero-video, section#home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Präziser Fix für den weißen Balken - aggressivere Version */
header.header {
    background-color: white !important;
    position: relative !important;
    width: 100% !important;
    z-index: 999 !important;
    height: 50px !important;  /* Exakte Höhe definieren */
    min-height: 50px !important;
    max-height: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

/* Container im Header präzise anpassen */
header.header .container {
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    padding: 0 20px !important;
    margin: 0 !important;
}

/* Navigation-Container präzise */
.nav-container {
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

/* Alle potenziellen Abstandsverursacher beseitigen */
body:before,
header:before,
.header:before,
.container:before,
.nav-container:before {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Body-Margin präzise */
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Alle versteckten Admin-Elemente */
#wpadminbar {
    display: none !important;
}

/* Alle oberen Abstände in Hero-Bereichen */
.hero,
.hero-video,
section#home,
.hero-video video,
.hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fix für alle Balken am oberen Rand */
/* Weißer Balken */
header.header {
    background-color: white !important;
    position: relative !important;
    width: 100% !important;
    z-index: 999 !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Oranger Balken und andere zusätzliche Elemente entfernen */
body:before,
html:before,

.dialog-widget,
.dialog-message,
div[data-elementor-type="header"],

.admin-bar #wpadminbar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Body ohne Abstände */
body, html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Alle WordPress Admin-Leisten entfernen */
#wpadminbar {
    display: none !important;
}

/* Video-Bereich direkt an den oberen Rand */
.hero, 
.hero-video, 
section#home,
.hero-video video {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Zentrierung für "I Nostri Prodotti" Titel und Beschreibung */
.shop-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.shop-header h2 {
    text-align: center !important;
    margin: 0 auto !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2.5rem !important;
    color: #333333 !important;
    margin-bottom: 20px !important;
}

.shop-header p {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 800px !important;
    color: #6c6c6c !important;
    line-height: 1.6 !important;
}