
.productContainer {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 120px 0;

}

.left {
    width: 60%;
}

.right {
    width: 35%;
    border: 1px solid #e05a3c;
    padding: 10px;
}

.join-fai {
    background-color: #e05a3c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: bold;
}

h2 {
    color: #cc4a2c;
}

.ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    gap: 10px;
}

.price {
    width: 36%;
    text-align: right;
    font-size: 26px;
}

.counter {
    width: 100%;
    max-width: 50%;
    display: flex;
    justify-content: space-around;
    border: 1px solid #e05a3c;
}

.counter button {
    background: none;
    border: none;
    padding: 5px 10px;
    color: #e05a3c;
    font-size: 38px;
    cursor: pointer;
}

.ticket-row span {
    font-size: 20px;
}

.counter input {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 26px;
}

.choose-btn {
    border: 1px solid #e05a3c;
    background: none;
    color: #e05a3c;
    padding: 5px 10px;
    cursor: pointer;
}

.info {
    font-style: normal;
    font-size: 0.8em;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 2px 6px;
    margin-left: 4px;
}

.ticket-card {
    display: flex;
    gap: 10px;
}

.ticket-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.ticket-details {
    font-size: 14px;
}

.ticket-details h3 {
    margin: 0;
    color: #333;
}

.ticket-details p {
    margin: 4px 0;
}

.ticket-price-right {
    width: 100%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}