 @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

  #cart-count {
        position: absolute;
        top: -5px; /* Ajuste vertical */
        right: -10px; /* Ajuste horizontal */
        background-color: #c5a994; /* Cor do círculo */
        color: white; /* Cor do texto */
        font-size: 12px; /* Tamanho do texto */
        border-radius: 50%; /* Círculo perfeito */
        width: 20px; /* Largura do círculo */
        height: 20px; /* Altura do círculo */
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold; /* Negrito para o número */
        border: 1px solid white; /* Bordas (opcional) */
    }
    
    
.container_bott_carrinho {
   flex: 2;
   float:left;
}



.btt_voltar {
padding: 5px 10px;  
width: 40%; 
text-decoration:none; 
top:-10px;
margin:0 0 10px 0px;
font-size: 10px; 
font-weight:bold; 
background-color: #c5a994;
width: auto; 
color: #fff; 
border: none; 
position: relative; 
float:left;
border-radius: 5px; 
cursor: pointer;
}

.btt_finalizar {
padding: 5px 10px;
width: 40%;
text-decoration:none;
top:-10px;
margin:0 0 10px 10px; 
font-size: 10px; 
font-weight:bold;
background-color: #c5a994; 
width: auto; 
color: #fff;
border: none; 
position: relative; 
float:right; 
border-radius: 5px;
cursor: pointer;
}


@media (max-width: 768px) {
.container_bott_carrinho {
   flex: 2;
   float:left;
   
}

.btt_voltar a{
padding: 5px 10px;  
width: 40%; 
text-decoration:none; 
top:-10px;
margin:0 0 10px 0px;
font-size: 12px; 
font-weight:bold; 
background-color: #c5a994;
width: auto; 
color: #fff; 
border: none; 
position: relative; 
float:left;
border-radius: 5px; 
cursor: pointer;
display:block;
}

.btt_finalizar a{
padding: 5px 10px;
width: 40%;
text-decoration:none;
top:-10px;
margin:0 0 10px 15px; 
font-size: 11px; 
font-weight:bold;
background-color: #c5a994; 
width: auto; 
color: #fff;
border: none; 
position: relative; 
float:right; 
border-radius: 5px;
cursor: pointer;
display:block;
}

}
        .carousel-container {
            padding: 20px;
            background-color: #f9f9f9;
        }
        .carousel-item {
            text-align: center;
            padding: 10px;
        }
        .carousel-item img {
            width: 100%;
            height: auto;
            max-width: 200px;
            margin: 0 auto;
        }
        .carousel-item h3, .carousel-item p {
            margin: 10px 0;
        }
        
       
        .category-title {
         font-family: 'Pristina', cursive;    
        text-align: center;
        font-size: 2.3rem;
        font-weight: bold;
        color: #A58186;
        margin: 50px 0;
        position: relative;
    }
    .category-title::before,
    .category-title::after {
        content: " ";
        display: block;
        height: 3px;
        border-top: 2px dashed #CFA2A8; /* Linha tracejada */
        width: 70px;
        position: absolute;
        top: 50%;
    }
    .category-title::before {
        left: 0;
        margin-left: calc(50% - 150px);
    }
    .category-title::after {
        right: 0;
        margin-right: calc(50% - 150px);
    }


/* Modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    overflow: auto;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.custom-modal-content {
    background: white;
    border-radius: 10px;
    margin: 20% auto 10% auto;
    top:-2%;
    width: 50%;
    max-width: 450px;
    padding: 20px;
    position: relative;
}


.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.custom-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.custom-modal-body {
    margin-top: 20px;
}

/* Carousel */
.custom-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
     align-items: center;
}

.custom-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-carousel-inner img {
    margin-left:10%;
    width: 80%;
    height: 450px;
}

.custom-carousel-control-prev,
.custom-carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

.custom-carousel-control-prev {
    left: 10px;
}

.custom-carousel-control-next {
    right: 10px;
}

/* Form */
.form-group {
    margin:10px 0 15px 0;
    flex:2;
    width: 100%;
}

.form-group label{
    margin:4px 0 1px 0;
    font-size:15px;
   font-weight:bold;
}

.form-group input {
            width: 14%;
            display: inline-block;
            position:relative;
            margin: 0px 0px 10px 10px;
            border: 1px solid #d3bfae;
            font-size:15px;
            font-weight:bold;
             padding: 7px 10px;
        }
        
.custom-btn {
    background-color: #d3bfae;
    color: white;
    border: none;
     padding: 7px 10px;
    cursor: pointer;
    width: 65%;
    border-radius: 5px;
    font-size:14px;
}

/* modalPublic Content/Box */
@media (max-width: 768px) {
/* Modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    overflow: auto;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}    
    
    
.custom-modal-content {
  background-color: #fefefe;
  margin: 8% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  top:0%;
  border: 1px solid #888;
  width: 95%; /* Could be more or less, depending on screen size */
  border-radius: 10px;
  display: block;
}



.custom-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 390px;
    display: block;
}

.custom-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    display: block;
}

.custom-carousel-inner img {
    width: 100%;
    height: 380px;
    display: block;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.custom-close-btn {
    margin-top: 18%;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: block;
}

.custom-modal-body {
    margin-top: 20px;
}
/* Form */
.form-group {
    margin:10px 0 15px 0;
    flex:2;
    width: 100%;
}

.form-group label{
    margin:10px 0 15px 0;
     font-size:14px;
     font-weight:bold;
}

.form-group input {
            width: 18%;
            display: inline-block;
            position:relative;
            margin: 0px 0px 10px 10px;
            border: 1px solid #d3bfae;
            font-size:12px;
            font-weight:bold;
             padding: 7px 10px;
        }
        
.custom-btn {
    background-color: #d3bfae;
    color: white;
    border: none;
     padding: 7px 10px;
    cursor: pointer;
    width: 52%;
    border-radius: 5px;
    font-size:12px;
}

}

.product-details {
            width: 100%;
            margin-top: 10px;
               flex: 2;
              
            }
            
 .buy-section input {
            width: 10%;
            display: inline-block;
            position:relative;
            margin: 0px 0px 10px 10px;
            border: 1px solid #d3bfae;
            font-size:16px;
            font-weight:bold;
             padding: 7px 10px;
        }

        
        
 .buy-section button {
            float:right;
            left:-11px;
            position:relative;
            width: 70%;
            margin: 0px 0px 10px 2px;
            padding: 7px 10px;
            background-color: #d3bfae;
            border: none;
            border-radius: 5px;
            color: #333;
            font-weight: bold;
            cursor: pointer;
        }

        .buy-section button:hover {
            background-color: #c5a994;
        }

@media (max-width: 768px) {
 .buy-section input {
            width: 20%;
            display: inline-block;
            position:relative;
            margin: 0px 0px 10px 10px;
            border: 1px solid #d3bfae;
             font-size:16px;
            font-weight:bold;
        }

        
        
 .buy-section button {
            float:right;
            left:-11px;
            position:relative;
            width: 70%;
            margin: 0px 0px 10px 2px;
            padding: 7px 10px;
            background-color: #d3bfae;
            border: none;
            border-radius: 5px;
            color: #333;
            font-weight: bold;
            cursor: pointer;
        }
}  