.cart-header {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#floating-cart {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #7a34ca;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none; /* mostrado via JS */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#floating-cart span#cart-count {
    font-size: 14px;
    margin-left: 4px;
}

/* Somente ícone se quiser mais compacto */
#floating-cart::before {
    content: "🛒";
}

/* Badge (estilo bolinha com quantidade) */
#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}


.ingresso-card {
    transition: 0.3s ease;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}

.ingresso-card:hover {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0,123,255,0.1);
}

.quantity-controls input {
    border-radius: 6px;
    font-weight: bold;
}

.descricao-evento {
    font-size: 14.5px;
    background-color: #ffffff;
    border-left: 5px solid #7a34ca;
    transition: all 0.3s ease;
}

.descricao-evento:hover {
    background-color: #fdfdfd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cart-header strong {
    font-weight: 600;
}

.cart-header .btn {
    padding: 3px 10px;
    font-size: 0.85rem;
}

.cart-total {
    margin: 10px 0 20px;
    font-size: 1.1rem;
}

.user-info-box {
    background: #f8f9fa;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
    line-height: 1.4;
}


::-webkit-scrollbar {
  width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}
.btn-danger {
    margin-bottom: 20px; /* Ajuste o valor conforme necessário */
}
.btn-success {
    margin-bottom: 20px; /* Ajuste o valor conforme necessário */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
} @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

body {
    padding: 5px;
    background-color: #7a34ca;
}

p {
    margin: 0%;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    overflow: hidden;
    background-color: #f8f9fa;
}

.container.d-lg-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.box-1 {
    flex: 1 50px;
    min-width: 300px;
}

.box-2 {
    flex-grow: 1;
    flex-basis: 0;
    padding: 10px 40px;
    min-width: 300px;
}



.box-1 div .fs-12 {
    font-size: 8px;
    color: white;
}

.box-1 div .fs-14 {
    font-size: 15px;
    color: white;
}

.box-1 img.pic {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.box-1 img.mobile-pic {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.box-1 .name {
    font-size: 11px;
    font-weight: 600;
}

.dis {
    font-size: 12px;
    font-weight: 500;
}

label.box {
    width: 100%;
    font-size: 12px;
    background: #ddd;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent;
}

#one:checked~label.first,
#two:checked~label.second,
#three:checked~label.third {
    border-color: #7700ff;
}

#one:checked~label.first .circle,
#two:checked~label.second .circle,
#three:checked~label.third .circle {
    border-color: #7a34ca;
    background-color: #fff;
}

label.box .course {
    width: 100%;
}

label.box .circle {
    height: 12px;
    width: 12px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 15px;
    border: 4px solid transparent;
    display: inline-block;
}

input[type="radio"] {
    display: none;
}



.box-2 .box-inner-2 input.form-control {
    font-size: 12px;
    font-weight: 600;
}

.box-2 .box-inner-2 .inputWithIcon {
    position: relative;
}

.box-2 .box-inner-2 .inputWithIcon span {
    position: absolute;
    left: 15px;
    top: 8px;
}

.box-2 .box-inner-2 .inputWithcheck {
    position: relative;
}

.box-2 .box-inner-2 .inputWithcheck span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: green;
    font-size: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    top: 6px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #7700ff;
}

.border:focus-within {
    border: 1px solid #7700ff !important;
}

.box-2 .card-atm .form-control {
    border: none;
    box-shadow: none;
}

.form-select {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.address .form-control.zip {
    border-radius: 0;
    border-bottom-left-radius: 10px;

}

.address .form-control.state {
    border-radius: 0;
    border-bottom-right-radius: 10px;

}

.box-2 .box-inner-2 .btn.btn-outline-primary {
    width: 120px;
    padding: 10px;
    font-size: 11px;
    padding: 0% !important;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    background-color: whitesmoke;
    color: black;
    font-weight: 600;
}

.box-2 .box-inner-2 .btn.btn-primary {
    background-color: #7700ff;
    color: whitesmoke;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    border: none;
    padding: 10px;
}

.box-2 .box-inner-2 .btn.btn-primary:hover {
    background-color: #7a34ca;
}

.box-2 .box-inner-2 .btn.btn-primary .fas {
    font-size: 13px !important;
    color: whitesmoke;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-inner {
    width: 100%;
    height: 550px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-control-prev {
    transform: translateX(-50%);
    opacity: 1;
}

.carousel-control-prev:hover .fas.fa-arrow-left {
    transform: translateX(-5px);
}

.carousel-control-next {
    transform: translateX(50%);
    opacity: 1;
}

.carousel-control-next:hover .fas.fa-arrow-right {
    transform: translateX(5px);
}

.fas.fa-arrow-left,
.fas.fa-arrow-right {
    font-size: 0.8rem;
    transition: all .2s ease;
}

.icon {
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform-origin: center;
    opacity: 1;
}

.fas,
.fab {
    color: #6d6c6d;
}

::placeholder {
    font-size: 12px;
}

@media (max-width:768px) {
    .container {
        max-width: 700px;
        margin: 10px auto;
    }

    .box-1,
    .box-2 {
        max-width: 600px;
        /* padding: 20px 90px; */
        margin: 20px auto;
    }

}

@media (max-width:30px) {

    .box-1,
    .box-2 {
        max-width: 400px;
        padding: 5px 2px;
    }

    ::placeholder {
        font-size: 9px;
    }
}
.quantity-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px 0 0 5px;
}

.quantity-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

input[type="number"] {
    width: 70px;
    padding: 10px;
    text-align: center;
    border: 2px solid #007bff;
    font-size: 18px;
    border-left: none;
    border-right: none;
}

.quantity-btn.plus {
    border-radius: 0 5px 5px 0;
}

.quantity-container input {
    border-radius: 0;
}