:root {
	--purple-primary: #5b2c87;
	--yellow-primary: #ffd700;
	--orange-star: #e53e3e;
	--light-gray: #f5f5f5;
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .brand-text {
        margin-top: 2px;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 900;
        font-size: 2.28rem;
        /*color: var(--purple-primary);*/
        color: #000;
        /*letter-spacing: 2px;*/
    }
    .main-title {
        font-size: 35px;
        font-weight: 600;
        line-height: 1.1;
        height: 79px;
    }
    .price-label {
        color: var(--yellow-primary);
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .main-price {
        /*color: var(--yellow-primary);*/
        color: #FFF;
        font-size: 70px;
        font-weight: 600;
        line-height: 0.8;
        margin: 10px 0;
    }

    .original-price {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .quantity-selector {
        background-color: var(--light-gray);
        border-radius: 10px;
        padding: 8px;
        display: inline-flex;
        align-items: center;
        margin-right: 15px;
    }

    .quantity-number {
        /*color: var(--purple-primary);*/
        color: #000;
        font-size: 28px;
        font-weight: 700;
        margin: 0 15px;
    }
    .btn-buy-now {
        font-size: 0.7rem;
    }
}

/*`lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .brand-text {
        margin-top: 2px;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 700;
        font-size: 2.3rem;
        /*color: var(--purple-primary);*/
        color: #000;
        /*letter-spacing: 2px;*/
    }
    .main-title {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.1;
    }
    .price-label {
        color: var(--yellow-primary);
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .main-price {
        /*color: var(--yellow-primary);*/
        color: #FFF;
        font-size: 60px;
        font-weight: 600;
        line-height: 0.8;
        margin: 10px 0;
    }

    .original-price {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    .quantity-selector {
        background-color: var(--light-gray);
        border-radius: 10px;
        padding: 10px;
        display: inline-flex;
        align-items: center;
        margin-right: 15px;
    }

    .quantity-number {
        /*color: var(--purple-primary);*/
        color: #000;
        font-size: 28px;
        font-weight: 700;
        margin: 0 15px;
    }
}

.inter-font {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

body {
	/*font-family: 'Roboto', sans-serif;*/
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
}

.text-red {
	color: var(--orange-star);
}

.title-ticket {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.ticket-card {
	/*background-color: var(--purple-primary);*/
	border: none;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 auto;
	color: white;
}

.header-banner {
	background-color: var(--yellow-primary);
	/*padding: 15px;*/
	border: none;
	border-radius: 20px 20px 0 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}



.ticket-icon {
	width: 60px;
	height: 40px;
	background-color: white;
	border-radius: 5px;
	position: relative;
	margin-right: 15px;
}

.ticket-icon::before,
.ticket-icon::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	background-color: var(--purple-primary);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
}

.ticket-icon::before {
	left: -6px;
}

.ticket-icon::after {
	right: -6px;
}



.price-section {
	margin: 30px 0;
}



.savings {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.info-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 40px;
    height: 70px;
}

.quantity-btn {
	background: none;
	border: none;
	color: #666;
	font-size: 24px;
	padding: 5px 10px;
	cursor: pointer;
}

.buy-btn {
	background-color: var(--yellow-primary);
	color: var(--purple-primary);
	font-size: 1.25rem;
	font-weight: 900;
	border: none;
	/*padding: 15px 40px;*/
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.buy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.footer-question {
	font-weight: 400;
	text-align: center;
}









@media (min-width: 992px) and (max-width: 1199.98px) {
    .controls-section {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .quantity-selector {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
    .buy-btn {
        width: 100%;
        font-size: 1.25rem;
    }
}

@media (min-width: 568px) and (max-width: 1023.98px) {
    .ticket-card {
        max-width: 400px;
    }
}

@media (max-width: 415px) {
    .controls-section {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .quantity-selector {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
    .buy-btn {
        width: 100%;
        font-size: 1.1rem;
    }
}