/* Tollhaus Events Widget Styles */
.tollhaus-events-container {
    max-width: 1800px;
    margin: 0 auto;
}

.tollhaus-events-header {
    text-align: center;
    margin-bottom: 40px;
}

.tollhaus-events-title {
 font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tollhaus-events-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tickettoaster-new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}


/* Slider Section Styles */
.tollhaus-slider-section {
    margin-bottom: 50px;
}

.tollhaus-slider-header {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 1rem;
    font-size: var(--fs-heading-3);
}

/* Splide Slider Styles */
.tollhaus-widget .splide {
    padding: 0;
}

.tollhaus-widget .splide__slide {
    display: flex;
    justify-content: center;
}

/* Event Card Styles - Flexible width to fill container */
.tollhaus-event-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tollhaus-event-card:hover {
    transform: translateY(-5px);
}

.tollhaus-event-image {
    position: relative;
    height: 422px;
    overflow: hidden;
    flex-shrink: 0;
}

.tollhaus-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 23px;
    transition: transform 0.3s ease;
    z-index: 1 !important;
}

.tollhaus-event-card:hover .tollhaus-event-image img {
    transform: scale(1.05);
}

.tollhaus-event-datetime {
    position: absolute;
    top: 4px;
    left: 15px;
    padding: 6px 16px 3px 16px;
    background: rgba(0, 0, 0, 1.0);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.tollhaus-event-tipp-tag {
    position: absolute;
    top: 3px;
    right: 15px;
    padding: 6px 16px;
    background: #e74c3c;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
}

.tollhaus-event-category-bottom {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 12px 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tollhaus-event-card[data-category="TOLLHAUS"] .tollhaus-event-category-bottom {
    background: #fff;
    color: #000;
}

.tollhaus-event-card[data-category="ZELTIVAL"] .tollhaus-event-category-bottom {
    background: #fff;
    color: #000;
}

.tollhaus-event-card[data-category="ATOLL"] .tollhaus-event-category-bottom {
    background: #fff;
    color: #000;
}

.tollhaus-event-status-bottom {
    position: absolute;
    bottom: 15px;
    left: 115px;
    padding: 5px 12px 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tollhaus-event-status-bottom.available {
    background: #d4edda;
    color: #155724;
    display: none;
}

.tollhaus-event-status-bottom.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.tollhaus-event-message {
    position: absolute;
    bottom: 50px;
    left: 15px;
    padding: 5px 12px 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8d7da;
    color: #721c24;
}

.tollhaus-event-status-info {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 12px 3px 12px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.tollhaus-event-content {
    padding: 15px 0;
}
.tollhaus-event-content .txt-container {
    margin-top: 4px;
}
.tollhaus-event-content p {
    margin-bottom: inherit;
}

.tollhaus-event-supertitle {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.tollhaus-event-title {
    font-size: 1.49rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.tollhaus-event-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.tollhaus-event-description {
    width: 101%;
}

.tollhaus-total-price {
	font-size: 0.9rem;
	color: #333;
	margin-top: 4px;
	padding: 0;
	font-weight: 600;
}
.tollhaus-seated-info {
	font-size: 0.9rem;
	color: #666;
	margin-top: 0; 
	padding: 0;
	border-top: inherit;
}

/* Loading, Error, and No Events Styles */
.tollhaus-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 1.1rem;
    color: #666;
}

.tollhaus-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.tollhaus-no-events {
    text-align: center;
    padding: 60px 20px;
    color: #777;
}

.tollhaus-no-events-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}


.tollhaus-widget .splide__arrow {
   background: #fff;
   opacity: 1 !important;
   top: 35%;
}
