.preview
{
    display: none;
}

.eit-slider-outer {
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.eit-header { text-align: center; margin-bottom: 25px; }
.eit-header h2 { font-size: 1.25rem; font-weight: 800; text-transform: uppercase; color: #1d3557; letter-spacing: 1px; }

/* Die Linie unter der Überschrift nutzt nun die Akzentfarbe */
.eit-hr { width: 45px; height: 3px; background: var(--eit-accent); margin: 10px auto; }

.eit-main-wrapper { position: relative; display: flex; align-items: center; }

.eit-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    justify-content: center;
}
.eit-slider-track::-webkit-scrollbar { display: none; }

.eit-slider-item {
    flex: 0 0 calc(100% / var(--c-small));
    max-width: calc(100% / var(--c-small));
    scroll-snap-align: center;
    padding: 10px;
}

@media (min-width: 768px) {
    .eit-slider-item { flex: 0 0 calc(100% / var(--c-med)); max-width: calc(100% / var(--c-med)); }
}

@media (min-width: 1200px) {
    .eit-slider-item { flex: 0 0 calc(100% / var(--c-large)); max-width: calc(100% / var(--c-large)); }
}

.eit-slider-outer.has-peek .eit-slider-track { padding: 0 8%; justify-content: flex-start; }
.eit-slider-outer.has-peek .eit-slider-item { flex: 0 0 84%; max-width: 84%; }

.eit-card-content {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    border: 1px solid #f2f2f2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}
.eit-card-content:hover { transform: translateY(-5px); }

.eit-image-box { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.eit-image-box img { max-width: 95%; max-height: 95%; object-fit: contain; }

.eit-card-name { font-size: 14px; font-weight: 700; color: #333; text-decoration: none; height: 2.8em; overflow: hidden; display: block; line-height: 1.4; }
.eit-card-cat { font-size: 10px; color: #bbb; text-transform: uppercase; margin-bottom: 5px; display: block; }

.eit-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 15px; }

/* Preis nutzt Akzentfarbe */
.eit-card-price { font-weight: 800; color: var(--eit-accent); font-size: 1.15rem; }

/* Warenkorb Button nutzt Akzentfarbe */
.eit-atc-btn {
    background-color: var(--eit-accent) !important;
    color: #ffffff !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.eit-atc-btn:hover { opacity: 0.85; transform: scale(1.1); }
.eit-atc-btn svg { width: 22px; height: 22px; fill: #fff; }

/* Badges nutzen Akzentfarbe */
.badge-tipp { background: var(--eit-accent); }
.badge-new { background: #333; }
.eit-badge { position: absolute; top: 15px; left: 15px; padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: bold; color: #fff; z-index: 5; text-transform: uppercase; }

/* Navigation & Dots nutzen Akzentfarbe */
.eit-nav-btn {
    position: absolute; z-index: 50; background: #fff; border: none; width: 40px; height: 40px; border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); color: var(--eit-accent); cursor: pointer; align-items: center; justify-content: center;
}
.eit-nav-btn.prev { left: 5px; }
.eit-nav-btn.next { right: 5px; }

.eit-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.eit-dot { width: 8px; height: 8px; background: #ddd; border-radius: 50%; transition: all 0.3s; cursor: pointer; }
.eit-dot.active { background: var(--eit-accent); width: 22px; border-radius: 4px; }