/* Premium Event Registration Styles */

.card-shadow {
    box-shadow: 0px 0px 10px #00000014;
}

.event-hero {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.event-content {
    padding: 24px;
}

.event-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.share-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Date Selector */
.date-selector {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.date-selector::-webkit-scrollbar {
    display: none;
}

.date-item {
    min-width: 60px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f1f3f5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.date-item.active {
    background: var(--accent-color);
    color: #fff;
}

.date-item .month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.date-item .day {
    font-size: 18px;
    font-weight: 700;
}

/* Slot Selector */
.slot-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.slot-item {
    padding: 10px 20px;
    background: #f1f3f5;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-item.active {
    background: var(--accent-color);
    color: #fff;
}

/* Ticket Section */
.ticket-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.ticket-name {
    font-size: 16px;
    font-weight: 600;
}

.ticket-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-price {
    font-size: 18px;
    font-weight: 700;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #f1f3f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.add-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    box-sizing: border-box;
}

.amount-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.amount-value {
    font-size: 20px;
    font-weight: 700;
}

.proceed-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.powered-by {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: var(--text-muted);
}


#ticketList p {
    font-size: 15px;
    color: #737373;
}

.iti__flag-container {
    max-height: 56px;
}

.iti__selected-flag {
    background-color: transparent !important;
    border-right: 1px solid #DCE2E6;
}

main.min-h-screen.pb-28 {
    padding-bottom: 20px;
}

main.min-h-screen.pb-28.pb-set {
    padding-bottom: 120px;
}

@media(max-width:575px) {
    main.min-h-screen.pb-28.pb-set {
        padding-bottom: 170px;
    }

    #slotList button {
        font-size: 12px;
        padding: 10px 5px;
    }
}