/**
 * Portugal Day Trip Banner Styles - Premium Tour Promotion Design
 */
.pdt-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: transparent;
}

.pdt-banner-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 0 20px 20px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pdt-banner-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.pdt-banner-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pdt-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(255,173,51,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.pdt-banner-card:hover::before {
    opacity: 1;
}

.pdt-banner-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pdt-banner-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.pdt-banner-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio for compact display */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.pdt-banner-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pdt-banner-card:hover .pdt-banner-card-image img {
    transform: scale(1.1) rotate(2deg);
}

.pdt-banner-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.4);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pdt-banner-card-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.pdt-banner-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 15px;
    margin-bottom: 8px;
    align-self: flex-start;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.pdt-banner-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: #2c3e50;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdt-banner-location {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pdt-banner-location::before {
    content: '📍';
    font-size: 14px;
}

.pdt-banner-cta {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
}

.pdt-banner-card:hover .pdt-banner-cta {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pdt-banner-card {
        flex: 0 0 200px;
    }
    
    .pdt-banner-container {
        padding: 15px 0;
    }
}
