* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.6;
}

.shop-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.shop-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.shop-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.step-indicator {
    font-size: 24px;
    color: #888;
    font-weight: 400;
}

.event-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.event-header {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.event-date-box {
    background: #000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.event-day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.event-info h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.event-datetime {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.event-location {
    font-size: 14px;
    color: #888;
}

.ticket-section {
    border-bottom: 1px solid #e5e5e5;
}

.ticket-section:last-child {
    border-bottom: none;
}

.section-toggle {
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.2s;
}

.section-toggle:hover {
    background: #f9f9f9;
}

.toggle-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

.section-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.ticket-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ticket-list.open {
    max-height: 2000px;
    padding: 20px 30px 30px;
}

.section-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}

.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ticket-item:last-child {
    border-bottom: none;
}

.ticket-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #ddd;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #666;
    margin-left: 5px;
}

.ticket-price {
    font-size: 14px;
    color: #666;
}

.ticket-status {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.ticket-status.sold-out {
    background: #e5e5e5;
    color: #666;
    cursor: not-allowed;
}

.ticket-status.available {
    background: #000;
    color: #fff;
}

.ticket-status.available:hover {
    background: #333;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-content h3 {
    margin-bottom: 30px;
    color: #1a1a1a;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #1a1a1a;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

.total {
    margin: 30px 0;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 6px;
    text-align: center;
    font-size: 20px;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #333;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    margin-top: 60px;
    border-top: 1px solid #e5e5e5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
}

footer p {
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .shop-container {
        padding: 10px;
    }

    .shop-header h1 {
        font-size: 24px;
    }

    .step-indicator {
        font-size: 18px;
    }

    .event-header {
        flex-direction: column;
        padding: 20px;
    }

    .event-date-box {
        width: fit-content;
    }

    .event-info h2 {
        font-size: 18px;
    }

    .section-toggle {
        padding: 15px 20px;
        font-size: 16px;
    }

    .ticket-list.open {
        padding: 15px 20px 20px;
    }

    .ticket-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ticket-status {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
}
