/* Additional custom styles */
.package-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.package-item {
    flex: 0 0 auto;
    width: 260px;
    display: flex;
    align-items: stretch;
}

.package-card.compact {
    border-radius: 12px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Scrollbar styling */
.package-scroller::-webkit-scrollbar {
    height: 8px;
}

.package-scroller::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

/* Center scroller content when there are few items on large screens */
@media (min-width: 992px) {
    .package-scroller {
        justify-content: center;
        gap: 1.25rem;
    }
}

/* Responsive sizes */
@media (max-width: 576px) {
    .package-item {
        width: 85%;
    }
}