@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bree+Serif&family=EB+Garamond:ital,wght@0,500;1,800&display=swap');

#container {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 15px 30px 1px grey;
    background: #111;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    margin: 5em auto;
    height: 450px;
    width: 1200px;
}


.product-details {
    position: relative;
    text-align: left;
    overflow: hidden;
    padding: 30px;
    height: 100%;
    width: 55%; /* Ajuste a largura para cada div */
}



#container .product-details h5:before {
    position: absolute;
    content: '';
    right: 0%;
    top: 0%;
    transform: translate(25px, -15px);
    font-family: 'Bree Serif', serif;
    display: inline-block;
    background: #ffe6e6;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
    color: white;
    margin: 0;
    animation: chan-sh 6s ease infinite;
}

.hint-star {
    display: inline-block;
    margin-left: 0.5em;
    color: gold;
    width: 50%;
}

#container .product-details > p {
    font-family: 'EB Garamond', serif;
    text-align: center;
    font-size: 18px;
    color: #7d7d7d;
}

.control {
    position: absolute;
    bottom: 20%;
    left: 22.8%;
}

.btn {
    transform: translateY(0px);
    transition: 0.3s linear;
    background: #809fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    border: none;
    color: #eee;
    padding: 0;
    margin: 0;
}

.btn:hover {
    transform: translateY(-6px);
    background: #1a66ff;
}

.btn span {
    font-family: 'Farsan', cursive;
    transition: transform 0.3s;
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 0;
}

.btn .price, .shopping-cart {
    background: #333;
    border: 0;
    margin: 0;
}

.btn .price {
    transform: translateX(-10%);
    padding-right: 15px;
}

.btn .shopping-cart {
    transform: translateX(-100%);
    position: absolute;
    background: #333;
    z-index: 1;
    left: 0;
    top: 0;
}

.btn .buy {
    z-index: 3;
    font-weight: bolder;
}

.btn:hover .price {
    transform: translateX(-110%);
}

.btn:hover .shopping-cart {
    transform: translateX(0%);
}

.product-image {
    transition: all 0.3s ease-out;
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1000px;
    width: 45%; /* Ajuste a largura para cada div */
}

#container img {
    width: 100%;
    height: 100%;
}

.info {
    background: rgba(27, 26, 26, 0.9);
    font-family: 'Bree Serif', serif;
    transition: all 0.3s ease-out;
    transform: translateX(-100%);
    position: absolute;
    line-height: 1.8;
    text-align: left;
    font-size: 105%;
    cursor: no-drop;
    color: #FFF;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.info h2 {
    text-align: center;
}

.product-image:hover .info {
    transform: translateX(0);
}

.info ul li {
    transition: 0.3s ease;
}

.info ul li:hover {
    transform: translateX(50px) scale(1.3);
}

.product-image:hover img {
    transition: all 0.3s ease-out;
}

.product-image:hover img {
    transform: scale(1.2, 1.2);
}

#container .product-image:nth-child(odd) {
    float: left; /* Imagem à esquerda para elementos ímpares */
}

#container .product-image:nth-child(even) {
    float: right; /* Imagem à direita para elementos pares */
}


/* Responsividade */



.button-group a {
    display: inline-block;
    padding: 12px 24px;       /* Espaçamento interno para um botão maior */
    font-size: 16px;          /* Tamanho de fonte confortável */
    font-weight: bold;        /* Deixa a fonte em negrito */
    text-align: center;       /* Centraliza o texto */
    text-decoration: none;    /* Remove o sublinhado */
    border-radius: 30px;       /* Borda arredondada */
    background-color: transparent; /* Cor de fundo (azul) */
    color: white;             /* Cor do texto */
    border: 2px solid #fff; /* Borda invisível por padrão */
    transition: all 0.3s ease; /* Transição suave para efeitos */
    margin: 20px;              /* Margem entre os botões */
    padding: 10px 15px;
    gap: 50px;
}

.button-group a:hover {
    background-color: #0056b3; /* Cor de fundo ao passar o mouse */
    border-color: #0056b3;     /* Borda visível ao passar o mouse */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
    transform: translateY(-2px); /* Efeito de elevação */
    
}

.button-group a:active {
    background-color: #003f7f; /* Cor de fundo ao clicar */
    transform: translateY(0);   /* Desfaz o efeito de elevação */
}


.bg1{
    background-color: #7BB0FF;
}
.bg2{
    background-color: #1c1c1c;
}
.bg3{
    background-color: #FF8C00;
}
.bg4{
    background-color: #6B8E23;
}
h5{
    color: #fff;
}